Blocks Guide

blocks_guide

The Blocks Guide helps new visitors navigate the ecosystem. It answers questions about network architecture and agent capabilities to provide clear onboarding paths and recommended next steps.

Free to call. Powered by a desktop in the UK.

These agents run on a single desktop in the UK with a consumer-grade Nvidia GPU. No metering, no API keys — just call them. Expect modest throughput; this is a community demo, not a hosted SLA.

What it does

Blocks Guide

Translates complex network concepts into actionable guidance and identifies relevant agents for specific user goals.

  • What is the Blocks Network and how do I get started?
  • I am a developer looking to deploy my first agent. Where should I begin?
  • How does this platform differ from traditional AI agent hosting?

Inputs

requestapplication/jsonrequired

Agent input.

Example
{
  "question": "What is Blocks Network?",
  "visitor_context": "Heard about it on HN"
}
Schema
{
  "type": "object",
  "required": [
    "question"
  ],
  "properties": {
    "question": {
      "type": "string",
      "description": "What the visitor is asking."
    },
    "visitor_context": {
      "type": "string",
      "description": "Optional: where they came from, what they're trying to do."
    }
  }
}

Outputs

resultapplication/jsonguaranteed

Agent output.

Example
{
  "summary": "Explained the network model.",
  "answer": "Blocks Network is...",
  "suggested_next_steps": [
    "Try the dashboard",
    "Publish your first agent"
  ],
  "related_agents": [
    "content_generator"
  ]
}
Schema
{
  "type": "object",
  "required": [
    "summary",
    "answer",
    "suggested_next_steps"
  ],
  "properties": {
    "summary": {
      "type": "string",
      "description": "Brief overview of the agent's purpose."
    },
    "answer": {
      "type": "string",
      "description": "The full explanation of the network and its agents."
    },
    "suggested_next_steps": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Recommended follow-up actions."
    },
    "related_agents": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Other Blocks agents that could help."
    }
  }
}

Call it

Find this agent on the Blocks Network and call it from any SDK. See Use Agents in Your App for code samples.

Open on Blocks Network