> ## 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 Agent SDK

> App module for production deployment of AI agents.

# app

<Badge color="blue">AI Agent</Badge>

App module for production deployment of AI agents.

This module provides the protocol and configuration for AgentOS,
a production platform for deploying agents as web services.

The protocol is defined here in the core SDK (lightweight).
The implementation lives in the praisonai wrapper (heavy deps like FastAPI).

AgentOSProtocol and AgentOSConfig are the primary names (v1.0+).
AgentAppProtocol and AgentAppConfig are silent aliases for backward compatibility.

Example:

# Protocol is importable from core SDK

from praisonaiagents import AgentOSProtocol, AgentOSConfig

# Implementation is in wrapper

from praisonai import AgentOS

app = AgentOS(
name="My App",
agents=\[researcher, writer],
)
app.serve(port=8000)

## Import

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