Skip to main content
# Run template with strict tools mode (fail-fast on missing deps)
praisonai templates run my-template --strict-tools

# Combine with offline mode
praisonai templates run my-template --strict-tools --offline

# With tool overrides
praisonai templates run my-template --strict-tools --tools ./custom_tools.py

# Example output when dependencies are missing:
# ✗ Strict mode check failed:
# Missing tools: youtube_tool, whisper_tool
# Missing packages: opencv-python
# Missing environment variables: YOUTUBE_API_KEY
#
# To fix:
#   - Tool 'youtube_tool': pip install praisonai-tools[video]
#   - Tool 'whisper_tool': pip install praisonai-tools[audio]
#   - Package 'opencv-python': pip install opencv-python
#   - Environment variable 'YOUTUBE_API_KEY': export YOUTUBE_API_KEY=<value>

# Example output when all dependencies satisfied:
# ✓ All dependencies satisfied (strict mode)
# Running template...