Documentation
Everything you need to build with Hooble. Guides, tutorials, API references, and more.
Getting Started
Hooble Core
Hooble Chain
Hooble AI
Hooble Studio
Hooble Agents
Hooble Cloud
Quick Start
python
# Install Hooble SDKpip install hooble # Initialize clientfrom hooble import Clientclient = Client(api_key="your-api-key") # Create your first agentagent = client.create_agent( name="my-agent", model="hooble-ai", tools=["chain", "cloud"]) # Run the agentresult = agent.run("Monitor and analyze blockchain data")