mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 12:03:53 +00:00
Add support for configuring base images across all compute providers: - E2B: Accept optional `template` parameter to select custom templates - Modal: Accept optional `image` parameter (string or Image object) for base images - ComputeSDK: Expand `create` override to accept full CreateSandboxOptions payload (image, templateId, etc.) - Daytona: Improve type safety for `image` option Improve forward compatibility by making all `create` overrides accept full Partial SDK types, allowing any new provider fields to flow through without code changes. Fix Modal provider bug where `encryptedPorts` was hardcoded and would clobber user-provided values; now merges additional ports instead. Update docs and examples to demonstrate base image configuration for E2B, Modal, and ComputeSDK. Add comprehensive provider lifecycle tests for Modal and ComputeSDK, including template and image passthrough verification. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
29 lines
890 B
TypeScript
29 lines
890 B
TypeScript
import { SandboxAgent } from "sandbox-agent";
|
|
import { e2b } from "sandbox-agent/e2b";
|
|
import { detectAgent } from "@sandbox-agent/example-shared";
|
|
|
|
const envs: Record<string, string> = {};
|
|
if (process.env.ANTHROPIC_API_KEY) envs.ANTHROPIC_API_KEY = process.env.ANTHROPIC_API_KEY;
|
|
if (process.env.OPENAI_API_KEY) envs.OPENAI_API_KEY = process.env.OPENAI_API_KEY;
|
|
const template = process.env.E2B_TEMPLATE;
|
|
|
|
const client = await SandboxAgent.start({
|
|
// ✨ NEW ✨
|
|
sandbox: e2b({ template, create: { envs } }),
|
|
});
|
|
|
|
const session = await client.createSession({
|
|
agent: detectAgent(),
|
|
cwd: "/home/user",
|
|
});
|
|
|
|
session.onEvent((event) => {
|
|
console.log(`[${event.sender}]`, JSON.stringify(event.payload));
|
|
});
|
|
|
|
session.prompt([{ type: "text", text: "Say hello from E2B in one sentence." }]);
|
|
|
|
process.once("SIGINT", async () => {
|
|
await client.destroySandbox();
|
|
process.exit(0);
|
|
});
|