victor HF Staff commited on
Commit
dc096a8
·
1 Parent(s): 3953008

fix: Clarify compose_video function documentation to specify it generates FFmpeg commands, not AI-generated videos

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -375,10 +375,11 @@ def compose_video(
375
  model_choice: str = "deepseek-ai/DeepSeek-V3",
376
  ) -> str:
377
  """
378
- Compose a video from media assets using natural language instructions.
379
 
380
- This tool generates FFmpeg commands using AI and executes them to create videos
381
- from uploaded images, videos, and audio files based on natural language descriptions.
 
382
 
383
  Args:
384
  prompt (str): Natural language instructions for video composition (e.g., "Create a slideshow with background music")
 
375
  model_choice: str = "deepseek-ai/DeepSeek-V3",
376
  ) -> str:
377
  """
378
+ Compose videos from existing media assets using natural language instructions.
379
 
380
+ This tool is NOT for AI video generation. Instead, it uses AI to generate FFmpeg
381
+ commands that combine, edit, and transform your uploaded images, videos, and audio
382
+ files based on natural language descriptions.
383
 
384
  Args:
385
  prompt (str): Natural language instructions for video composition (e.g., "Create a slideshow with background music")