Spaces:
Sleeping
Sleeping
Commit ·
16c2851
1
Parent(s): 05121e0
Add loading indicator.
Browse files
app.py
CHANGED
|
@@ -78,7 +78,8 @@ chat_interface = ChatInterface(
|
|
| 78 |
text_input,
|
| 79 |
file_input
|
| 80 |
],
|
| 81 |
-
show_undo=False
|
|
|
|
| 82 |
)
|
| 83 |
|
| 84 |
llm = ChatOpenAI(model_name="gpt-3.5-turbo-1106", temperature=0, streaming=True, callbacks=[StreamingStdOutCallbackHandler()])
|
|
|
|
| 78 |
text_input,
|
| 79 |
file_input
|
| 80 |
],
|
| 81 |
+
show_undo=False,
|
| 82 |
+
loading_indicator=True
|
| 83 |
)
|
| 84 |
|
| 85 |
llm = ChatOpenAI(model_name="gpt-3.5-turbo-1106", temperature=0, streaming=True, callbacks=[StreamingStdOutCallbackHandler()])
|