Skip to main content
# Run template with custom tools from a file
praisonai templates run my-template --tools ./custom_tools.py

# Run template with tools from a directory
praisonai templates run my-template --tools-dir ~/.praison/tools

# Multiple tool sources
praisonai templates run my-template --tools ./tools1.py --tools ./tools2.py --tools-dir ./more_tools

# Combine with strict mode
praisonai templates run my-template --tools ./custom_tools.py --strict-tools

# Run workflow with custom tools
praisonai workflow run workflow.yaml --tools ./custom_tools.py

# Run workflow with tools directory
praisonai workflow run workflow.yaml --tools-dir ~/.praison/tools