Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -78,7 +78,7 @@ with gr.Blocks(css=custom_css) as iface:
|
|
| 78 |
with gr.Row():
|
| 79 |
input_text = gr.Textbox(label="Input Text", placeholder="Enter your text here...", container=False)
|
| 80 |
output_text = gr.Textbox(label="Output", placeholder="Output will appear here...", container=False)
|
| 81 |
-
generate_button = gr.Button("Generate"
|
| 82 |
generate_button.click(fn=generate_all, inputs=input_text, outputs=output_text)
|
| 83 |
|
| 84 |
with gr.Tab("Logs"):
|
|
|
|
| 78 |
with gr.Row():
|
| 79 |
input_text = gr.Textbox(label="Input Text", placeholder="Enter your text here...", container=False)
|
| 80 |
output_text = gr.Textbox(label="Output", placeholder="Output will appear here...", container=False)
|
| 81 |
+
generate_button = gr.Button("Generate")
|
| 82 |
generate_button.click(fn=generate_all, inputs=input_text, outputs=output_text)
|
| 83 |
|
| 84 |
with gr.Tab("Logs"):
|