AbenzaFran commited on
Commit
f7e68f3
verified
1 Parent(s): 66a672c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -34,10 +34,10 @@ def predict(message, history):
34
  """
35
  global THREAD_ID
36
 
37
- # Imprimir el historial en la consola para depuraci贸n
38
- print("Historial actual:", history)
39
 
40
- # Si la historia est谩 vac铆a, resetear THREAD_ID para iniciar un nuevo hilo
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)