Limited beta Β· OpenAI-compatible Β· green
Production-grade Qwen3.6 inference on hardware we own and power we make β wrapped in direct-air carbon capture. Join the waitlist and we'll email you an API key preloaded with 1M free tokens. No payment, no card.
Limited β first 100 users.
If you already call the OpenAI API, you already know ours. Point your base URL at Provocative and keep everything else β same SDK, same request shape, same streaming.
Our p95 latency beats most providers' median. Predictable under load β the part that actually breaks in production.
Zero errors across thousands of concurrent requests while marketplace providers shed 70%+ of traffic.
Direct-air capture at the rack. Going green costs you nothing in latency or lines of code.
# Same OpenAI SDK β just a new base URL from openai import OpenAI client = OpenAI( base_url="https://inference.provocative.earth/v1", api_key="pk-prov-...", ) resp = client.chat.completions.create( model="qwen3.6-35b", messages=[{"role": "user", "content": "Why run green?"}], stream=True, )
# Or plain curl β your key is a bearer token curl https://inference.provocative.earth/v1/chat/completions \ -H "Authorization: Bearer pk-prov-..." \ -H "Content-Type: application/json" \ -d '{"model": "qwen3.6-35b", "messages": [{"role": "user", "content": "Why run green?"}]}'
Qwen3.6-35B, 64 concurrent requests, measured from a neutral cloud vantage. Higher is better β and ours kept a 0% error rate the whole way.
tok/s aggregate @ c=64; throughput counts successful requests only. Parasail and AtlasCloud dropped 74β77% of requests at this concurrency β ours dropped none. No LPU or specialty-hardware provider serves Qwen3.6, so this is GPU versus GPU.
We're launching the beta with a single, highly capable open model β a sparse mixture-of-experts served at native BF16 (no silent quantization) on owned A100 and Blackwell hardware, with Qwen's reasoning and tool-call parsers configured the way the model expects. One endpoint, tuned hard, measured in public. More coming through the beta.
Point any OpenAI-compatible client β or plain curl β at our endpoint. Send your API key as a bearer token and set the model to qwen3.6-35b. Qwen runs with thinking off by default for fast, clean completions β pass chat_template_kwargs to control it.
https://inference.provocative.earth/v1Authorization: Bearer <YOUR_API_KEY>"model": "qwen3.6-35b"# Chat completion via curl β thinking disabled for speed curl https://inference.provocative.earth/v1/chat/completions \ -H "Authorization: Bearer $PROVOCATIVE_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "qwen3.6-35b", "messages": [{"role": "user", "content": "Why run green?"}], "chat_template_kwargs": {"enable_thinking": false} }'
Most AI runs on grid power and vents heat into the world. We built it backwards: our datacenters integrate direct-air carbon capture, so the same compute that answers your prompt also pulls COβ back out of the atmosphere. Same tokens, a smaller footprint β no offsets, no accounting tricks. It's in the hardware.
The first 100 users each get 1,000,000 free tokens on qwen3.6-35b. Drop your email and we'll send your API key β no payment step, no card.
No spam β just your key and beta updates. See our privacy policy.
Your key will arrive by email within a day or two. Keep an eye on your inbox.
One field, one click. We onboard in small batches.
When your spot opens, your key lands in your inbox with 1,000,000 free tokens preloaded. No payment, no card.
Set base_url to inference.provocative.earth/v1, model qwen3.6-35b β same OpenAI SDK, zero other changes.