Skip to main content

praisonai.recipe

Wrapper 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)

Overview

This module provides components for recipe.