Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -90,17 +90,18 @@ with gr.Blocks() as iface:
|
|
90 |
|
91 |
for i in range(3): # Assuming maximum of 3 speakers
|
92 |
with gr.Tab(f"Speaker {i+1}"):
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
|
|
104 |
|
105 |
# Add execution info component
|
106 |
transcript_output = gr.Textbox(label="Transcript", lines=10, visible=False)
|
|
|
90 |
|
91 |
for i in range(3): # Assuming maximum of 3 speakers
|
92 |
with gr.Tab(f"Speaker {i+1}"):
|
93 |
+
with gr.Row():
|
94 |
+
output_components.extend([
|
95 |
+
gr.Markdown(visible=False),
|
96 |
+
gr.Textbox(label="General Impression", visible=False),
|
97 |
+
gr.Plot(visible=False),
|
98 |
+
gr.Plot(visible=False),
|
99 |
+
gr.Textbox(label="Attachment Styles Explanation", visible=False),
|
100 |
+
gr.Plot(visible=False),
|
101 |
+
gr.Textbox(label="Big Five Traits Explanation", visible=False),
|
102 |
+
gr.Plot(visible=False),
|
103 |
+
gr.Textbox(label="Personality Disorders Explanation", visible=False),
|
104 |
+
])
|
105 |
|
106 |
# Add execution info component
|
107 |
transcript_output = gr.Textbox(label="Transcript", lines=10, visible=False)
|