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.

app

AI Agents Framework AgentOS module for production deployment of AI agents. This module provides the AgentOS class which implements the AgentOSProtocol from the core SDK. It wraps agents, teams, and flows into a unified FastAPI-based web service. Example: from praisonai import AgentOS from praisonaiagents import Agent assistant = Agent(name=“assistant”, instructions=“Be helpful”) app = AgentOS( name=“My AI App”, agents=[assistant], ) app.serve(port=8000)

Import

from praisonai import app