Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -356,6 +356,7 @@ def main():
|
|
356 |
"I will ask you a series of questions. Please answer honestly and thoughtfully. "
|
357 |
"When you are ready, click **Start Interview** to begin."
|
358 |
)
|
|
|
359 |
|
360 |
chatbot = gr.Chatbot( # Moved up here
|
361 |
label="Interview Chat",
|
@@ -375,7 +376,7 @@ def main():
|
|
375 |
audio_output = gr.Audio(label="Response Audio", autoplay=True) # Moved up here
|
376 |
|
377 |
|
378 |
-
|
379 |
|
380 |
|
381 |
with gr.Row():
|
|
|
356 |
"I will ask you a series of questions. Please answer honestly and thoughtfully. "
|
357 |
"When you are ready, click **Start Interview** to begin."
|
358 |
)
|
359 |
+
start_btn = gr.Button("Start Interview", variant="primary")
|
360 |
|
361 |
chatbot = gr.Chatbot( # Moved up here
|
362 |
label="Interview Chat",
|
|
|
376 |
audio_output = gr.Audio(label="Response Audio", autoplay=True) # Moved up here
|
377 |
|
378 |
|
379 |
+
|
380 |
|
381 |
|
382 |
with gr.Row():
|