> ## 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.

# Recipe Integration Guide

> Complete guide to integrating PraisonAI recipes into your applications

# Recipe Integration Guide

This comprehensive guide covers everything you need to know about integrating PraisonAI recipes into your applications, including personas, integration models, and real-world use cases.

## Quick Navigation

<CardGroup cols={2}>
  <Card title="Integration Models" icon="diagram-project" href="/docs/guides/recipes/integration-models">
    6 ways to integrate recipes into your stack
  </Card>

  <Card title="Use Cases" icon="lightbulb" href="/docs/guides/recipes/use-cases">
    12 real-world implementation patterns
  </Card>

  <Card title="Personas" icon="users" href="/docs/guides/recipes/personas">
    Who uses recipes and how
  </Card>

  <Card title="Decision Guide" icon="compass" href="/docs/guides/recipes/decision-guide">
    When to use which integration model
  </Card>
</CardGroup>

## What Are Recipes?

Recipes are pre-packaged, reusable AI workflows that encapsulate:

* Agent configurations
* Tool assignments
* Workflow logic
* Input/output schemas
* Security policies

## Key Benefits

* **Reusability**: Package once, deploy anywhere
* **Consistency**: Same behavior across environments
* **Security**: Built-in policy enforcement
* **Observability**: Structured logging and tracing
* **Versioning**: Track and rollback changes

## Getting Started

```bash theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
# List available recipes
praisonai recipe list

# Run a recipe
praisonai recipe run my-recipe --input '{"query": "Hello"}'

# Start the recipe server
praisonai serve recipe --port 8765
```

## Next Steps

1. Review the [Integration Models](/docs/guides/recipes/integration-models) to choose your approach
2. Explore [Use Cases](/docs/guides/recipes/use-cases) for implementation patterns
3. Follow the step-by-step tutorials for your chosen model
