Developers

General Compute developer resources

Everything you need to build on General Compute: the OpenAI-compatible API, the OpenAPI specification, authentication, webhooks, the MCP server, and official SDKs. Agents can sign up programmatically with no human gate.

Quick start

The General Compute API is OpenAI-compatible. Point any OpenAI SDK at https://api.generalcompute.com/v1 with a Bearer token.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.generalcompute.com/v1",
    api_key="your-gc-api-key",
)

response = client.chat.completions.create(
    model="gpt-oss-120b",
    stream=True,
    messages=[{"role": "user", "content": "Hello"}],
)

Install the Python SDK with pip install generalcompute or use the OpenAI client shown above.

General Compute API documentation

Full reference for the OpenAI-compatible chat completions API, models, and rate limits.

General Compute OpenAPI specification

Machine-readable OpenAPI spec for code generation, client SDKs, and gateway integrations.

General Compute authentication & API keys

Bearer-token auth, how to obtain a key, and the agent signup flow that requires no human gate.

General Compute webhooks

Subscribe to account, billing, and inference events. HMAC-signed deliveries with retries.

General Compute MCP server

Model Context Protocol endpoint and discovery descriptor for MCP-aware agents.

General Compute SDKs

Official client libraries for Python and Node. Install with pip install generalcompute or the matching npm package.

Machine-readable resources

Discovery files for crawlers and autonomous agents. All live on www.generalcompute.com.

ModeHumanAgent
Developer Resources | General Compute | General Compute