Playground
Experiment with Hooble APIs, test agents, and build prototypes in your browser.
Interactive Code Editor
javascript
// Try Hooble in the browserconst hooble = new HoobleClient({ apiKey: 'your-api-key'}); // Create an agentconst agent = await hooble.agents.create({ name: 'test-agent', model: 'hooble-ai', tools: ['chain', 'cloud']}); // Run the agentconst result = await agent.run( 'Analyze the latest blockchain transactions'); console.log(result);