Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -56,6 +56,7 @@ if st.button("Submit"):
|
|
56 |
top_p=1,
|
57 |
stream=True,
|
58 |
)
|
|
|
59 |
response = ""
|
60 |
for chunk in chat_streaming:
|
61 |
response += chunk.choices[0].delta.content
|
|
|
56 |
top_p=1,
|
57 |
stream=True,
|
58 |
)
|
59 |
+
st.write('Passed model')
|
60 |
response = ""
|
61 |
for chunk in chat_streaming:
|
62 |
response += chunk.choices[0].delta.content
|