Cyleux commited on
Commit
60173f3
·
verified ·
1 Parent(s): b2b3f90

Update spaces.py

Browse files
Files changed (1) hide show
  1. spaces.py +6 -1
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(label="Enter conversation description"),
 
 
 
 
 
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."