Update app.py
Browse files
app.py
CHANGED
@@ -34,10 +34,10 @@ def predict(message, history):
|
|
34 |
"""
|
35 |
global THREAD_ID
|
36 |
|
37 |
-
#
|
38 |
-
print("
|
39 |
|
40 |
-
#
|
41 |
if not history:
|
42 |
THREAD_ID = None
|
43 |
|
@@ -61,6 +61,6 @@ def predict(message, history):
|
|
61 |
chat = gr.ChatInterface(
|
62 |
fn=predict,
|
63 |
title="Solution Specifier A",
|
64 |
-
description="Testing threaded conversation"
|
65 |
)
|
66 |
chat.launch(share=True)
|
|
|
34 |
"""
|
35 |
global THREAD_ID
|
36 |
|
37 |
+
# debug print
|
38 |
+
print("current history:", history)
|
39 |
|
40 |
+
# If history is empty, this means that it is probably a new conversation and therefore the thread shall be reset
|
41 |
if not history:
|
42 |
THREAD_ID = None
|
43 |
|
|
|
61 |
chat = gr.ChatInterface(
|
62 |
fn=predict,
|
63 |
title="Solution Specifier A",
|
64 |
+
#description="Testing threaded conversation"
|
65 |
)
|
66 |
chat.launch(share=True)
|