Spaces:
Running
on
Zero
Running
on
Zero
fix: Clarify compose_video function documentation to specify it generates FFmpeg commands, not AI-generated videos
Browse files
app.py
CHANGED
@@ -375,10 +375,11 @@ def compose_video(
|
|
375 |
model_choice: str = "deepseek-ai/DeepSeek-V3",
|
376 |
) -> str:
|
377 |
"""
|
378 |
-
Compose
|
379 |
|
380 |
-
This tool
|
381 |
-
|
|
|
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")
|