For the complete documentation index, see llms.txt. This page is also available as Markdown.

Agentuity

Agentuity provider for ComputeSDK

Installation & Setup

npm install @computesdk/agentuity

Add your Agentuity credentials to a .env file:

AGENTUITY_SDK_KEY=your_agentuity_sdk_key

Usage

import { agentuity } from '@computesdk/agentuity';

const compute = agentuity({
  apiKey: process.env.AGENTUITY_SDK_KEY,
});

// Create sandbox
const sandbox = await compute.sandbox.create();

// Run a command
const result = await sandbox.runCommand('echo "Hello from Agentuity!"');
console.log(result.stdout); // "Hello from Agentuity!"

// Clean up
await sandbox.destroy();

Configuration Options

Last updated

Was this helpful?