Update app.py
Browse files
app.py
CHANGED
@@ -72,10 +72,7 @@ with gr.Blocks() as app:
|
|
72 |
# Output Section
|
73 |
with gr.Column():
|
74 |
gr.Markdown("### Generated Content")
|
75 |
-
output_stream = gr.Markdown(
|
76 |
-
placeholder="Generated content will appear here, with support for LaTeX math equations...",
|
77 |
-
interactive=False,
|
78 |
-
)
|
79 |
|
80 |
# Link the generate button to the streaming function
|
81 |
generate_button.click(
|
|
|
72 |
# Output Section
|
73 |
with gr.Column():
|
74 |
gr.Markdown("### Generated Content")
|
75 |
+
output_stream = gr.Markdown() # Removed placeholder argument
|
|
|
|
|
|
|
76 |
|
77 |
# Link the generate button to the streaming function
|
78 |
generate_button.click(
|