Documentation Index
Fetch the complete documentation index at: https://docs.praison.ai/llms.txt
Use this file to discover all available pages before exploring further.
How to Run an Existing Recipe
Get Recipe Info
praisonai recipe info ai-video-editor
Run Recipe with Variables
praisonai recipe run ai-video-editor --var input=video.mp4 --var output=edited.mp4
View Output
Check the generated output in your working directory or specified output path.
How to Run Recipes from GitHub
Run Directly from GitHub
praisonai recipe run github:MervinPraison/Agent-Recipes/ai-video-editor
Run with Custom Branch
praisonai recipe run github:MervinPraison/Agent-Recipes/ai-video-editor@main
Run with Variables
praisonai recipe run github:MervinPraison/Agent-Recipes/ai-video-editor --var input=video.mp4
How to Run Recipes with Python
Import and Run
from praisonaiagents import Agent, AgentTeam
import yaml
# Load recipe
with open("agents.yaml") as f:
config = yaml.safe_load(f)
# Run agents based on config
Common Recipe Variables
| Recipe | Variables | Example |
|---|
ai-video-editor | --var input, --var output | --var input=video.mp4 |
research-agent | --var topic, --var depth | --var topic="AI trends" |
code-reviewer | --var repo, --var branch | --var repo=./myproject |
CLI Options
praisonai recipe run <recipe> [OPTIONS]
Options:
--var KEY=VALUE Set variable value
--verbose Enable verbose output