Skip to main content

Agent Recipes

Agent Recipes are pre-built AI automation templates that solve common tasks with minimal configuration. Each recipe combines tools, prompts, and workflows into a single runnable unit.

Overview

Agent Recipes provide:
  • 85+ ready-to-use templates across 7 categories
  • CLI and Python API for flexible integration
  • Modular tools with lazy-loaded dependencies
  • Safety gates for sensitive operations
  • Dry-run mode for testing without side effects

Quick Start

Installation

pip install praisonai agent-recipes

List Available Recipes

praison recipes list

Run a Recipe

# Generate a blog post
praison recipes run ai-blog-generator --input "AI in Healthcare"

# Generate subtitles from video
praison recipes run ai-subtitle-generator video.mp4

# Analyze sentiment in data
praison recipes run ai-sentiment-analyzer reviews.csv

Check Dependencies

praison recipes doctor ai-subtitle-generator

Recipe Categories

Supported Models

Agent Recipes work with multiple LLM providers. Configure via environment variables:
ProviderEnvironment VariableModels
OpenAIOPENAI_API_KEYgpt-4o, gpt-4o-mini, gpt-4-turbo
AnthropicANTHROPIC_API_KEYclaude-3-opus, claude-3-sonnet, claude-3-haiku
GoogleGOOGLE_API_KEYgemini-1.5-pro, gemini-1.5-flash
OllamaOLLAMA_HOSTllama3, mistral, codellama
See LLM Configuration for detailed provider setup.

Next Steps