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

# app • AI Agents Framework

> AgentOS module for production deployment of AI agents.

# app

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

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

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