Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -162,4 +162,11 @@ with gr.Blocks(title="🧬 Codette Terminal – Streamed AI Chat") as demo:
|
|
| 162 |
video_steps_slider = gr.Slider(label="Video Inference Steps", minimum=10, maximum=100, step=10, value=50)
|
| 163 |
fps_slider = gr.Slider(label="Video FPS", minimum=4, maximum=24, step=2, value=8)
|
| 164 |
|
| 165 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 162 |
video_steps_slider = gr.Slider(label="Video Inference Steps", minimum=10, maximum=100, step=10, value=50)
|
| 163 |
fps_slider = gr.Slider(label="Video FPS", minimum=4, maximum=24, step=2, value=8)
|
| 164 |
|
| 165 |
+
user_input = gr.Textbox(
|
| 166 |
+
label="Your Prompt",
|
| 167 |
+
placeholder="e.g. A robot dreaming on Mars",
|
| 168 |
+
lines=1
|
| 169 |
+
)
|
| 170 |
+
output_text = gr.Textbox(label="Codette Output", lines=15, interactive=False)
|
| 171 |
+
output_image = gr.Gallery(label="Generated Image(s)", columns=2)
|
| 172 |
+
output_video = gr.Video(label="Generated Video")
|