Spaces:
Runtime error
Runtime error
lionelgarnier
commited on
Commit
·
eb0919b
1
Parent(s):
eb81bfd
add output buffer state to interface for improved state management
Browse files
app.py
CHANGED
@@ -479,6 +479,7 @@ def create_interface():
|
|
479 |
mesh_simplify = gr.Slider(0.9, 0.98, label="Simplify", value=0.95, step=0.01)
|
480 |
texture_size = gr.Slider(512, 2048, label="Texture Size", value=1024, step=512)
|
481 |
|
|
|
482 |
|
483 |
# Examples section - simplified version that only updates the prompt fields
|
484 |
gr.Examples(
|
|
|
479 |
mesh_simplify = gr.Slider(0.9, 0.98, label="Simplify", value=0.95, step=0.01)
|
480 |
texture_size = gr.Slider(512, 2048, label="Texture Size", value=1024, step=512)
|
481 |
|
482 |
+
output_buf = gr.State()
|
483 |
|
484 |
# Examples section - simplified version that only updates the prompt fields
|
485 |
gr.Examples(
|