Skip to content

Commit 1bf2088

Browse files
committed
removed truelens eval
1 parent 135bab9 commit 1bf2088

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed
-20 Bytes
Binary file not shown.

default.sqlite

0 Bytes
Binary file not shown.

main.py

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,8 @@
4747
else:
4848
(true_lens_result, graph_result) = task(key, link_to_scrape, prompt, model)
4949

50-
left_res, rigth_res = st.columns([1, 1])
51-
52-
with left_res:
53-
st.write("# Answer")
54-
st.write(graph_result[0])
55-
with rigth_res:
56-
st.write("# TruLens evaluation")
57-
print(true_lens_result["app_json"])
58-
st.dataframe(true_lens_result)
50+
st.write("# Answer")
51+
st.write(graph_result[0])
5952

6053
if graph_result[0]:
6154
json_str = json.dumps(graph_result[0], indent=4)

0 commit comments

Comments
 (0)