Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -57,13 +57,13 @@ if st.button("Submit"):
|
|
57 |
stream=True,
|
58 |
)
|
59 |
st.write('Passed model')
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
|
|
57 |
stream=True,
|
58 |
)
|
59 |
st.write('Passed model')
|
60 |
+
response = ""
|
61 |
+
try:
|
62 |
+
for chunk in chat_streaming:
|
63 |
+
content = chunk.choices[0].delta.content
|
64 |
+
if content: # Ensure content is not None
|
65 |
+
response += content
|
66 |
+
st.write("### Response:")
|
67 |
+
st.write(response)
|
68 |
+
except Exception as e:
|
69 |
+
st.error(f"Failed to process query: {e}")
|