kevinwang676 commited on
Commit
2e15304
·
verified ·
1 Parent(s): 30f134b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -1110,8 +1110,6 @@ with gr.Blocks(title="Movie Analysis Multi-Agent System", css="""
1110
 
1111
  with gr.Column(scale=3):
1112
  with gr.Tabs():
1113
- with gr.TabItem("Analysis Result"):
1114
- result_output = gr.Markdown(label="Analysis")
1115
  with gr.TabItem("Agent Conversation Log"):
1116
  conversation_output = gr.Textbox(
1117
  label="Conversation Log",
@@ -1123,7 +1121,9 @@ with gr.Blocks(title="Movie Analysis Multi-Agent System", css="""
1123
  autoscroll=False,
1124
  elem_classes="monospace-text"
1125
  )
1126
-
 
 
1127
  submit_btn.click(
1128
  fn=process_query,
1129
  inputs=[description_input, analysis_type],
 
1110
 
1111
  with gr.Column(scale=3):
1112
  with gr.Tabs():
 
 
1113
  with gr.TabItem("Agent Conversation Log"):
1114
  conversation_output = gr.Textbox(
1115
  label="Conversation Log",
 
1121
  autoscroll=False,
1122
  elem_classes="monospace-text"
1123
  )
1124
+ with gr.TabItem("Analysis Result"):
1125
+ result_output = gr.Markdown(label="Analysis")
1126
+
1127
  submit_btn.click(
1128
  fn=process_query,
1129
  inputs=[description_input, analysis_type],