Maheen001 commited on
Commit
5c77b23
·
verified ·
1 Parent(s): e035f6a

Update ui/voice_agent_ui.py

Browse files
Files changed (1) hide show
  1. ui/voice_agent_ui.py +3 -5
ui/voice_agent_ui.py CHANGED
@@ -79,18 +79,16 @@ def create_voice_agent_ui(agent):
79
  with gr.Column(scale=2):
80
  gr.Markdown("### 🤖 Agent Execution & Results")
81
 
82
- # Agent Reasoning Trace (Simple Chatbot without type parameter)
83
  thought_trace = gr.Chatbot(
84
  label="🧠 Agent Reasoning Steps",
85
- height=400,
86
- show_copy_button=True
87
  )
88
 
89
  # Final Response
90
  final_response = gr.Textbox(
91
  label="✅ Final Answer",
92
- lines=6,
93
- show_copy_button=True
94
  )
95
 
96
  # Voice Output
 
79
  with gr.Column(scale=2):
80
  gr.Markdown("### 🤖 Agent Execution & Results")
81
 
82
+ # Agent Reasoning Trace (Simple Chatbot - minimal parameters for compatibility)
83
  thought_trace = gr.Chatbot(
84
  label="🧠 Agent Reasoning Steps",
85
+ height=400
 
86
  )
87
 
88
  # Final Response
89
  final_response = gr.Textbox(
90
  label="✅ Final Answer",
91
+ lines=6
 
92
  )
93
 
94
  # Voice Output