ShynBui commited on
Commit
be7af1b
1 Parent(s): 5935bc1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -30,6 +30,8 @@ def greet3(quote, history):
30
 
31
  chat_history = summarize_messages(demo_ephemeral_chat_history=demo_ephemeral_chat_history, llm=llm).messages
32
 
 
 
33
  #Get the new question
34
  new_question = get_question_from_summarize(chat_history[0].content, quote, llm)
35
 
 
30
 
31
  chat_history = summarize_messages(demo_ephemeral_chat_history=demo_ephemeral_chat_history, llm=llm).messages
32
 
33
+ print(chat_history)
34
+
35
  #Get the new question
36
  new_question = get_question_from_summarize(chat_history[0].content, quote, llm)
37