Spaces:
Sleeping
Sleeping
thanhtung09t2
commited on
Commit
•
1d29742
1
Parent(s):
eb7fd33
Update
Browse files
app.py
CHANGED
@@ -43,7 +43,7 @@ if user_input := st.chat_input("Bạn muốn hỏi điều gì?"):
|
|
43 |
print(f"Query time calculated: {round(query_end-start,4)}")
|
44 |
for chunk in streaming_response.response_gen:
|
45 |
response_content += chunk
|
46 |
-
message_placeholder.markdown(f"{response_content}
|
47 |
end = time()
|
48 |
print(f"Response time calculated: {round(end-start,4)}")
|
49 |
message_placeholder.markdown(response_content)
|
|
|
43 |
print(f"Query time calculated: {round(query_end-start,4)}")
|
44 |
for chunk in streaming_response.response_gen:
|
45 |
response_content += chunk
|
46 |
+
message_placeholder.markdown(f"{response_content}")
|
47 |
end = time()
|
48 |
print(f"Response time calculated: {round(end-start,4)}")
|
49 |
message_placeholder.markdown(response_content)
|