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

# compute • TypeScript AI Agent SDK

> * Compute providers: where an agent's tools run.

# compute

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

* Compute providers: where an agent's tools run.
* praisonai-ts had none, so `toolsRunOn` had nothing to select. Two real
  providers ship here -- local and Docker -- and the registry is open, so a
  remote provider (E2B, Modal, Daytona) can be added without touching callers.
* Python parity: `praisonai_sandbox.compute`.

## Import

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

## Functions

<CardGroup cols={2}>
  <Card title="registerComputeProvider()" icon="function" href="../functions/registerComputeProvider">
    Function definition.
  </Card>

  <Card title="listComputeProviders()" icon="function" href="../functions/listComputeProviders">
    Function definition.
  </Card>

  <Card title="resolveComputeProvider()" icon="function" href="../functions/resolveComputeProvider">
    Function definition.
  </Card>
</CardGroup>
