Davit6174 commited on
Commit
920e7a1
·
verified ·
1 Parent(s): 302c347

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -254,7 +254,7 @@ with gr.Blocks() as demo:
254
 
255
  def test_agent_response(question: str) -> str:
256
  # agent = BasicAgent()
257
- agent = ZephyrAPI()
258
  return agent(question)
259
 
260
  test_button.click(fn=test_agent_response, inputs=question_input, outputs=answer_output)
 
254
 
255
  def test_agent_response(question: str) -> str:
256
  # agent = BasicAgent()
257
+ agent = LangGraphAgent()
258
  return agent(question)
259
 
260
  test_button.click(fn=test_agent_response, inputs=question_input, outputs=answer_output)