SungBeom commited on
Commit
3f4279f
1 Parent(s): 24dbe35

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -280,6 +280,7 @@ with gr.Blocks(css='#chatbot .overflow-y-auto{height:750px}') as demo:
280
  response = agent_executor.run({'input':user_response, 'conversation_history': pre_conversation_history, 'stage_number': stage_number})
281
  conversation_history += "이우선: " + response + "\n"
282
  response = response.split('<END_OF_TURN>')[0]
 
283
  print(conversation_history)
284
  chat_history.append((user_response, response))
285
 
 
280
  response = agent_executor.run({'input':user_response, 'conversation_history': pre_conversation_history, 'stage_number': stage_number})
281
  conversation_history += "이우선: " + response + "\n"
282
  response = response.split('<END_OF_TURN>')[0]
283
+ print(stage_history)
284
  print(conversation_history)
285
  chat_history.append((user_response, response))
286