Remove thread.join()
Browse files
app.py
CHANGED
@@ -205,8 +205,6 @@ def chat_with_model(messages, pid):
|
|
205 |
|
206 |
patient_conversations[current_id] = updated_messages
|
207 |
yield updated_messages
|
208 |
-
|
209 |
-
thread.join()
|
210 |
|
211 |
if in_think:
|
212 |
output_text += "*"
|
|
|
205 |
|
206 |
patient_conversations[current_id] = updated_messages
|
207 |
yield updated_messages
|
|
|
|
|
208 |
|
209 |
if in_think:
|
210 |
output_text += "*"
|