Koomemartin commited on
Commit
b2692e3
·
verified ·
1 Parent(s): c2af847

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -10
app.py CHANGED
@@ -57,13 +57,13 @@ if st.button("Submit"):
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}")
 
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}")