kuma-rtin commited on
Commit
ae6abab
·
verified ·
1 Parent(s): b078e4e

Change layout

Browse files
Files changed (1) hide show
  1. app.py +8 -2
app.py CHANGED
@@ -169,11 +169,17 @@ with gr.Blocks() as demo:
169
  )
170
 
171
  # Input field to test agent
 
 
 
 
 
 
172
  with gr.Row():
173
- agent_input = gr.Textbox(label="Manual Agent Input", placeholder="Type your query here...")
174
  agent_submit = gr.Button("Run")
175
 
176
- agent_output = gr.Textbox(label="Agent Response", interactive=False)
177
 
178
  agent_submit.click(
179
  fn=handle_agent_input,
 
169
  )
170
 
171
  # Input field to test agent
172
+ gr.Markdown("""
173
+ # Basic Agent Evaluation Runner
174
+
175
+ Test the agent by submitting custom tasks and questions.
176
+ """
177
+ )
178
  with gr.Row():
179
+ agent_input = gr.Textbox(label="Manual Agent Input", placeholder="Type your query here...", lines=5)
180
  agent_submit = gr.Button("Run")
181
 
182
+ agent_output = gr.Textbox(label="Agent Response", interactive=False, scale=1)
183
 
184
  agent_submit.click(
185
  fn=handle_agent_input,