Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
|