> ## Documentation Index
> Fetch the complete documentation index at: https://praison.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# recipe • AI Agents Framework

> PraisonAI Recipe Module

# recipe

<Badge color="purple">AI Agents Framework</Badge>

PraisonAI Recipe Module

Provides a minimal, client-friendly API for running Agent Recipes.
All imports are lazy to ensure zero performance impact on Core SDK.

Usage:
from praisonai import recipe
result = recipe.run("support-reply-drafter", input=\{"ticket": "T-123"})

# Or with streaming

for event in recipe.run\_stream("transcript-generator", input="audio.mp3"):
print(event)

## Import

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
from praisonai import recipe
```

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="Recipes Concept" icon="book-open" href="/docs/concepts/recipes" />

  <Card title="Recipes Guide" icon="utensils" href="/docs/guides/recipes/index" />

  <Card title="Modular Recipes" icon="puzzle-piece" href="/docs/features/modular-recipes" />
</CardGroup>
