Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -337,12 +337,11 @@ with gr.Blocks() as demo:
|
|
337 |
gr.Markdown("# Asynchronous AI Conversation System")
|
338 |
gr.Markdown("Upload an audio file and provide a system prompt to get a response.")
|
339 |
|
340 |
-
with gr.Row():
|
341 |
-
audio_input = gr.Audio(label="Upload Audio File", type="filepath")
|
342 |
-
|
343 |
with gr.Column():
|
|
|
344 |
process_button = gr.Button("Process Conversation")
|
345 |
-
|
|
|
346 |
|
347 |
with gr.Column():
|
348 |
status_output = gr.Textbox(label="Status/Transcription/Thinking", interactive=False)
|
|
|
337 |
gr.Markdown("# Asynchronous AI Conversation System")
|
338 |
gr.Markdown("Upload an audio file and provide a system prompt to get a response.")
|
339 |
|
|
|
|
|
|
|
340 |
with gr.Column():
|
341 |
+
audio_input = gr.Audio(label="Upload Audio File", type="filepath")
|
342 |
process_button = gr.Button("Process Conversation")
|
343 |
+
|
344 |
+
system_prompt_input = gr.Textbox(label="System Prompt", value=system_prompt_0)
|
345 |
|
346 |
with gr.Column():
|
347 |
status_output = gr.Textbox(label="Status/Transcription/Thinking", interactive=False)
|