Update app.py
Browse files
app.py
CHANGED
|
@@ -323,7 +323,7 @@ with gr.Blocks(theme=theme, title="Image Extrapolation with LLMs") as demo:
|
|
| 323 |
)
|
| 324 |
im_preview = gr.Image(height=512, label="Preview (scaled)")
|
| 325 |
|
| 326 |
-
preview_text = gr.
|
| 327 |
label="Preview as CSV (rows end with ';')",
|
| 328 |
lines=12,
|
| 329 |
interactive=False,
|
|
@@ -340,7 +340,7 @@ with gr.Blocks(theme=theme, title="Image Extrapolation with LLMs") as demo:
|
|
| 340 |
variant="primary"
|
| 341 |
)
|
| 342 |
|
| 343 |
-
llm_text = gr.
|
| 344 |
label="LLM output (single-line CSV)",
|
| 345 |
lines=6,
|
| 346 |
interactive=False,
|
|
|
|
| 323 |
)
|
| 324 |
im_preview = gr.Image(height=512, label="Preview (scaled)")
|
| 325 |
|
| 326 |
+
preview_text = gr.Textbox(
|
| 327 |
label="Preview as CSV (rows end with ';')",
|
| 328 |
lines=12,
|
| 329 |
interactive=False,
|
|
|
|
| 340 |
variant="primary"
|
| 341 |
)
|
| 342 |
|
| 343 |
+
llm_text = gr.Textbox(
|
| 344 |
label="LLM output (single-line CSV)",
|
| 345 |
lines=6,
|
| 346 |
interactive=False,
|