Documentation

Everything you need to build with Hooble. Guides, tutorials, API references, and more.

Quick Start

python
# Install Hooble SDK
pip install hooble
# Initialize client
from hooble import Client
client = Client(api_key="your-api-key")
# Create your first agent
agent = client.create_agent(
name="my-agent",
model="hooble-ai",
tools=["chain", "cloud"]
)
# Run the agent
result = agent.run("Monitor and analyze blockchain data")
Get API Key →