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

# Sandbox

> Run Agent code in an isolated sandbox.

Run Agent code in an isolated sandbox.

```mermaid theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
graph LR
    Agent[Agent] --> Resource[Sandbox]
    Resource --> Output([Output])

    classDef agent fill:#8B0000,stroke:#7C90A0,color:#fff
    classDef tool fill:#189AB4,stroke:#7C90A0,color:#fff

    class Agent agent
    class Resource,Output tool
    classDef agent fill:#8B0000,color:#fff
    classDef tool fill:#189AB4,color:#fff
```

## Quick Start

<Steps>
  <Step title="Simple Usage">
    ```typescript theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
    import { Agent } from 'praisonai';

    const agent = new Agent({ name: 'Assistant', instructions: 'Be helpful.' });
    await agent.chat('Hello');
    ```
  </Step>

  <Step title="With Configuration">
    Configure resource limits and permissions in your Agent setup.
  </Step>
</Steps>

***

## Usage

````typescript theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
// ```

## API Reference

## Related

<CardGroup cols={2}>
  <Card title="Agent" icon="robot" href="/docs/docs/js/agent">
    Agent basics
  </Card>
  <Card title="Tools" icon="wrench" href="/docs/docs/js/tools">
    Agent tools
  </Card>
</CardGroup>
````
