Single entry point
A unified /v1 interface across open-weight, dedicated, and frontier model services — no per-service SDKs or endpoints to stitch together.
Platform
An OpenAI-compatible API gateway across every service, an MCP server exposing live hardware telemetry, Kubernetes-based orchestration with tiered scheduling, and usage metered to the second. Built for engineering teams running real workloads.
$ tara connect --env prod→ gateway: api.tara.example · region: jp$ curl https://api.tara.example/v1/chat/completions \-H "Authorization: Bearer sk-tara-••••••" \-d '{"model":"qwen3.8-max","messages":[{"role":"user","content":"Hello"}]}'{"id": "chatcmpl-example","model": "qwen3.8-max","usage": {"prompt_tokens": 4, "completion_tokens": 32}}
Illustrative syntax only — no real endpoints or credentials.
API gateway
All Tara Cloud services — dedicated deployments, shared endpoints, and resold frontier models — sit behind a single OpenAI-compatible API gateway. One key, one schema, one place to govern access.
A unified /v1 interface across open-weight, dedicated, and frontier model services — no per-service SDKs or endpoints to stitch together.
Issue, rotate, and revoke API keys per team or workload. Keys are scoped to services, models, and environments — revoked keys stop working immediately.
Per-key and per-project rate limits with burst handling, applied consistently across every service behind the gateway.
curl https://api.tara.example/v1/chat/completions \-H "Authorization: Bearer sk-tara-••••••" \-H "Content-Type: application/json" \-d '{"model": "qwen3.8-max","messages": [{"role": "user", "content": "Summarize our incident"}]}'
Illustrative syntax only — no real endpoints or credentials.
MCP server
An MCP server exposes live hardware telemetry from every node in the fleet — BMC sensors, GPU metrics, and node inventory — so your monitoring, alerting, and automation can read the platform programmatically.
Temperature, power draw, fan speed, and node health from the baseboard management controller — refreshed continuously.
Per-GPU utilization, memory pressure, and thermal state — the signals that actually matter for scheduling and capacity planning.
Model, capacity, firmware, location, and lifecycle status for every node — machine-readable and always current.
tara://nodes/{id}/bmc # sensors: temp, power, fan, healthtara://nodes/{id}/inventory # node model, capacity, statustara://gpus/{id}/metrics # utilization, memory, thermalsGET tara://nodes/{id}/bmc{"health": "ok","temperature_c": 32.1,"power_w": 412,"fan_rpm": 5400}
Placeholder resource syntax — no real endpoints are exposed here.
Orchestration
Bring containerized jobs and the platform schedules them across a fleet of GPU nodes — with tiered scheduling that matches cost to criticality.
Submit standard container images — training, inference, batch — and the platform handles placement, dependencies, and cleanup.
Interruptible capacity on flexible tiers with deeper discounts — ideal for batch research and interruptible (preemptible) pipelines.
A production tier with reserved scheduling for jobs that must not be preempted — backed by contractual high-availability SLAs.
kubectl apply -f train.yaml# train.yaml (illustrative)apiVersion: tara.sh/v1kind: GPUJobmetadata:name: finetune-llmspec:gpus: 8tier: flexible # flexible | priorityimage: registry.tara.example/finetune:latest
Metering & governance
Usage is metered to the second and available in real time — so you can set and enforce budgets via API and prove what happened after the fact.
Every job is metered in GPU-seconds, with a live usage view in the financing dashboard and itemized billing exports.
Set and enforce spending limits per project or team with a single API call — including hard-stop enforcement.
Control-plane and data-plane events stream continuously to your SIEM for retention, forensics, and compliance review.
# enforce a monthly limit per project (illustrative)PUT /v1/spending-limits{"scope": "project:prod","hard_stop": true}# audit events → your SIEMaudit.tara.example/stream → https://siem.example/ingest
Illustrative syntax only — no real endpoints or credentials.
Get hands-on with the gateway, the MCP server, and Kubernetes orchestration — our engineers will walk you through a live environment.