Skip to content

Deploy the frontier.

Inference for open models and your private ones.

Your models sit beside the open models on one shared stack, and both answer on one endpoint.
  • Open modelsCall them. No deploy.
  • Your modelsDeploy from Hugging Face.
  • One endpointEvery model, one key.
  • Pay per tokenNothing while idle.

Open models, large and small.

Call open models and the models you deploy from one endpoint.

from openai import OpenAI client = OpenAI( base_url="https://api.boardwalk.cloud/v1", api_key="bw_live_…", ) # Your model, deployed from Hugging Face. response = client.chat.completions.create( model="my-model", messages=[{"role": "user", "content": "Hello"}], ) print(response.choices[0].message.content)

Deploy your own in three steps.

Same stack, same API, same per-token pricing.

  1. Pick a model

    Connect the exact Hugging Face revision you want to run.

    acme/my-model@ c1899de2
    acme/support-lora@ 41f8a0b3
    Qwen/Qwen3-0.6B@ a1b2c3d4
    Connect Hugging Face
  2. Deploy the qualified config

    See the hardware, precision, context, and benchmark before you deploy.

    RTX A5000bf16 · 32,768 context
    874 tok/s291 ms TTFT
    Deploy
  3. Use the endpoint

    Call it by name, same client and key.

    client.chat.completions.create( model="my-model", messages=[...], )

Shared capacity. Fewer cold starts.

Open models, full fine-tunes, and LoRA adapters share warm GPU capacity. Active models stay loaded; idle models wake on demand.

Shared
Warm GPU capacity
On demand
Model loading
$0
While idle
How serving works
Requests for open models and custom models flow into shared GPU capacity. Each model keeps its own identity while infrastructure stays warm between requests.
Qwen/Qwen3-0.6Bopen model
acme/my-modelyours
team/support-agent
Shared GPU poolOpen and custom modelsWarm workers

Security and honesty.

Private by default.

Prompt and completion text is never stored.

Content retained
None
Stored per request
Token counts
API keys
Hashed

Billing you can recount.

usage is what the engine processed — no rounding up.

Billed dimensions
Four
Receipts
Every request
Recount with
/v1/tokenize

Nothing is unknown.

Every model publishes exactly what serves it.

Weights
Pinned commit
Context
Tested at the limit
Parameters
Honored or rejected

Join the frontier.