Spaces:
Running
Running
Most Basic Verion
Browse files
app.py
CHANGED
@@ -1,4 +1,81 @@
|
|
1 |
import streamlit as st
|
|
|
|
|
2 |
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
+
import random
|
3 |
+
import time
|
4 |
|
5 |
+
st.header(" VERIFYING SCIENTIFIC CLAIMS ")
|
6 |
+
|
7 |
+
st.caption("Version 0.1")
|
8 |
+
|
9 |
+
# Initialize chat history
|
10 |
+
if "messages" not in st.session_state:
|
11 |
+
st.session_state.messages = [{"role": "assistant", "content": "Let's start verifying the claims here! π"}]
|
12 |
+
|
13 |
+
# Display chat messages from history on app rerun
|
14 |
+
for message in st.session_state.messages:
|
15 |
+
with st.chat_message(message["role"]):
|
16 |
+
st.markdown(message["content"])
|
17 |
+
|
18 |
+
def retriever(query: str):
|
19 |
+
"""Simulate a 'retriever' step, searching for relevant information."""
|
20 |
+
with st.chat_message("assistant"):
|
21 |
+
placeholder = st.empty()
|
22 |
+
text=""
|
23 |
+
message = "Retriving the documents related to the claim..."
|
24 |
+
for chunk in message.split():
|
25 |
+
text += chunk + " "
|
26 |
+
time.sleep(0.05)
|
27 |
+
# Add a blinking cursor to simulate typing
|
28 |
+
placeholder.markdown(text + "β")
|
29 |
+
placeholder.markdown(text)
|
30 |
+
# You could return retrieved info here.
|
31 |
+
return message
|
32 |
+
|
33 |
+
def reasoner(info: str):
|
34 |
+
"""Simulate a 'reasoner' step, thinking about how to answer."""
|
35 |
+
with st.chat_message("assistant"):
|
36 |
+
placeholder = st.empty()
|
37 |
+
text=""
|
38 |
+
message = "Reasoning and verifying the claim..."
|
39 |
+
for chunk in message.split():
|
40 |
+
text += chunk + " "
|
41 |
+
time.sleep(0.05)
|
42 |
+
# Add a blinking cursor to simulate typing
|
43 |
+
placeholder.markdown(text + "β")
|
44 |
+
placeholder.markdown(text)
|
45 |
+
# You could return reasoning info here.
|
46 |
+
return message
|
47 |
+
|
48 |
+
# Accept user input
|
49 |
+
if prompt := st.chat_input("40mg/day dosage of folic acid and 2mg/day dosage of vitamin B12 does not affect chronic kidney disease (CKD) progression."):
|
50 |
+
# Add user message to chat history
|
51 |
+
st.session_state.messages.append({"role": "user", "content": prompt})
|
52 |
+
# Display user message in chat message container
|
53 |
+
with st.chat_message("user"):
|
54 |
+
st.markdown(prompt)
|
55 |
+
|
56 |
+
#Calling retriever
|
57 |
+
retriever(prompt)
|
58 |
+
|
59 |
+
#Calling reasoner
|
60 |
+
reasoner(prompt)
|
61 |
+
|
62 |
+
# Display assistant response in chat message container
|
63 |
+
with st.chat_message("assistant"):
|
64 |
+
message_placeholder = st.empty()
|
65 |
+
full_response = ""
|
66 |
+
assistant_response = random.choice(
|
67 |
+
[
|
68 |
+
"The claim is correct.",
|
69 |
+
"The claim is incorrect.",
|
70 |
+
]
|
71 |
+
)
|
72 |
+
|
73 |
+
# Simulate stream of response with milliseconds delay
|
74 |
+
for chunk in assistant_response.split():
|
75 |
+
full_response += chunk + " "
|
76 |
+
time.sleep(0.05)
|
77 |
+
# Add a blinking cursor to simulate typing
|
78 |
+
message_placeholder.markdown(full_response + "β")
|
79 |
+
message_placeholder.markdown(full_response)
|
80 |
+
# Add assistant response to chat history
|
81 |
+
st.session_state.messages.append({"role": "assistant", "content": full_response})
|