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

# OS • TypeScript AI Agent SDK

> * App Module for Production Deployment of AI Agents

# os

<Badge color="green">TypeScript AI Agent</Badge>

* App Module for Production Deployment of AI Agents
* This module provides AgentOS, a production platform for deploying
  agents as web services with REST endpoints.
* AgentOS, AgentOSConfig, AgentOSProtocol are the primary names (v1.0+).
  AgentApp, AgentAppConfig, AgentAppProtocol are silent aliases for backward compatibility.
*

```typescript theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
import { AgentOS, Agent } from 'praisonai';
* const assistant = new Agent({
name: 'assistant',
instructions: 'Be helpful'
});
* const app = new AgentOS({
name: 'My AI App',
agents: [assistant],
});
* await app.serve({ port: 8000 });
```

## Import

```typescript theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
import { os } from 'praisonai';
```
