The hierarchy
to11 organizes everything into a three-level hierarchy. Access, roles, and settings all hang off these levels.- Organization — The top-level tenant. Members, roles, and API keys live here. See Platform.
- Workspace — Groups related projects under one organization. Workspaces can be renamed, archived, and made discoverable to the rest of the org.
- Project — Where the work happens: provider connections, routing, environments, and the traces you observe.
The gateway
The gateway is the runtime that sits between your application and your LLM providers. You point your SDK at it, and it routes the request, applies inline security, and emits telemetry. See Deploy.Providers, targets, and routes
Inside a project, a few primitives describe where traffic can go and how the gateway chooses:- Provider — a connected model vendor (OpenAI, Anthropic, and others) together with the credential the gateway uses to reach it. See Providers.
- Target — a specific model on a provider, paired with the credential to call it: the concrete endpoint a request can land on. See Targets.
- Route — a named mapping from a model name to a strategy over one or more targets: send everything to one target, split traffic by weight, or fall back on failure. See Routes.
- Function — a task alias (like
summarize) that points at a route, so your application names the job instead of the model. See Functions.
The observability data plane
Every request through the gateway — and any spans you send directly — lands in a shared data plane you query from the dashboard. This is what powers traces, metrics, and dashboards. See Observe.How the pieces fit
Next steps
Quickstart
Send your first traced request.
Platform
Manage your organization, members, and access.