Skip to main content

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

AI Agents Framework 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

from praisonai import recipe

Recipes Concept

Recipes Guide

Modular Recipes