Spaces:
Runtime error
Runtime error
Update spaces.py
Browse files
spaces.py
CHANGED
@@ -274,7 +274,12 @@ def generate_video(description):
|
|
274 |
# Create Gradio interface
|
275 |
iface = gr.Interface(
|
276 |
fn=generate_video,
|
277 |
-
inputs=gr.Textbox(
|
|
|
|
|
|
|
|
|
|
|
278 |
outputs=gr.Video(label="Generated Video"),
|
279 |
title="AI Conversation Video Generator",
|
280 |
description="Generate a video conversation between two speakers based on your description."
|
|
|
274 |
# Create Gradio interface
|
275 |
iface = gr.Interface(
|
276 |
fn=generate_video,
|
277 |
+
inputs=gr.Textbox(
|
278 |
+
label="Enter conversation description",
|
279 |
+
lines=5,
|
280 |
+
placeholder="Describe the conversation you want to generate...",
|
281 |
+
info="You can be specific about the number of turns, tone, and content of the conversation"
|
282 |
+
),
|
283 |
outputs=gr.Video(label="Generated Video"),
|
284 |
title="AI Conversation Video Generator",
|
285 |
description="Generate a video conversation between two speakers based on your description."
|