Infrastructure for running your agents
Run your AI generated code in our developer sandboxes, connect them to Google, Microsoft, Slack, or create from our premade templates.
openpond / ../openpond-code/examples/client-basic.ts
../openpond-code/examples/client-basic.ts
OpenPond SDK
tab 1/4
TypeScript SDKreadonly
1import { createClient } from "openpond-code";2 3const client = createClient({4 apiKey: process.env.OPENPOND_API_KEY!,5});6 7const { tools } = await client.tool.list("handle/repo");8 9const result = await client.tool.run("handle/repo", "myTool", {10 body: { market: "ETH-PERP", side: "long" },11});12 13console.log(14 tools.map((tool) => tool.name),15 result16);Have an invite code?