pratikshahp commited on
Commit
e79bd2e
·
verified ·
1 Parent(s): 3b247e6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -26,10 +26,10 @@ strategies = agent.available_strategies()
26
  iface = gr.Interface(
27
  fn=execute_task,
28
  inputs=[
29
- gr.inputs.Textbox(lines=5, label="Task"),
30
- gr.inputs.Dropdown(choices=strategies, label="Strategy")
31
  ],
32
- outputs=gr.outputs.Textbox(label="Response"),
33
  title="Problem Solver Agent",
34
  description="Provide a task and select a strategy to see how the agent responds."
35
  )
 
26
  iface = gr.Interface(
27
  fn=execute_task,
28
  inputs=[
29
+ gr.Textbox(lines=5, label="Task"),
30
+ gr.Dropdown(choices=strategies, label="Strategy")
31
  ],
32
+ outputs=gr.Textbox(label="Response"),
33
  title="Problem Solver Agent",
34
  description="Provide a task and select a strategy to see how the agent responds."
35
  )