Run compatible Hugging Face models.

Compute validates model requirements and prepares capacity, storage, and runtime configuration behind one API. Pick a model, deploy, and start serving on active capacity.

QDivZero Compute platform dashboard

From model to API in three steps.

01

Pick a model

Choose a compatible Hugging Face model. Smart scheduling removes manual GPU selection for standard deployments.

02

Compute deploys it

The scheduler selects the optimal capacity across available providers. Runtime, networking, and scaling are provisioned automatically.

03

Call the endpoint

Your model is exposed as an OpenAI-compatible endpoint. Use the Python SDK or any HTTP client for compatible deployments.

Active capacity pricing.

Use a rate locked at launch; active time is billed by the second. Scale up when you need more capacity and stop when you don’t. Pricing is tied to active capacity, not user count; additional traffic may require more capacity.

Qwen 3.6 35B A3B MTP logo

Example workload

Qwen 3.6 35B A3B MTP

8 h/day · 20 days/month

0,25 €/h

Indicative comparison; benchmark and pricing context available on request.

Estimated monthly€40/month

Calculated at 8 hours/day, 20 working days/month. Actual costs depend on your usage pattern and can be lower with scheduled start/stop rules.

Qwen3-VL-Embedding-2B logo

Example workload

Qwen3-VL-Embedding-2B

8 h/day · 20 days/month

0,10 €/h

Multimodal embedding model. Generate embeddings from text and images at predictable cost.

Estimated monthly€16/month

Calculated at 8 hours/day, 20 working days/month. Actual costs depend on your usage pattern and can be lower with scheduled start/stop rules.

DeepSeek V4 Flash logo

Example workload

DeepSeek V4 Flash

8 h/day · 20 days/month

1,11 €/h

Indicative comparison; benchmark and pricing context available on request.

Estimated monthly€178/month

Calculated at 8 hours/day, 20 working days/month. Actual costs depend on your usage pattern and can be lower with scheduled start/stop rules.

Kimi K2.6 logo

Example workload

Kimi K2.6

8 h/day · 20 days/month

13 €/h

Indicative comparison; benchmark and pricing context available on request.

Estimated monthly€2,080/month

Calculated at 8 hours/day, 20 working days/month. Actual costs depend on your usage pattern and can be lower with scheduled start/stop rules.

External provider estimates

Token-priced equivalents.

Illustrative estimate; actual cost depends on active capacity. External providers are estimated at 15M input + 10M output tokens/month. Output is usually the expensive side.

Claude 3.7 Sonnet logo

Claude 3.7 Sonnet

200k context

$195.00
USD / reference month
GPT-5.4 mini logo

GPT-5.4 mini

OpenAI fast tier

$56.25
USD / reference month
GPT-5.5 logo

GPT-5.5

OpenAI standard tier

$375.00
USD / reference month
Opus 4.7 logo

Opus 4.7

Anthropic reasoning tier

$975.00
USD / reference month

Pricing is tied to active capacity, not user count; additional traffic may require more capacity.

Indicative estimates; benchmark and pricing context available on request. Prices depend on actual resource allocation.

Security? First, please.

Regional controls, verified capacity, and private-by-default operations for production AI workloads. Add Firewall when policy must sit in the request path.

  • Regions

    Trusted regions

    European deployments for GDPR-sensitive workloads, with the option to disable unverified servers.

  • Runtime

    Verified runtime

    Verified runtime images and regional scheduling controls.

  • Privacy

    Private by default

    We do not store conversation logs.

Start when work starts. Stop when it doesn’t.

Create cron rules to turn instances on before traffic and off after hours. Lower the invoice, cut idle energy use, and keep operations predictable.

  • Lower the invoice

    Pay only while compute is actually running.

  • Reduce idle energy use

    Avoid overnight and weekend GPUs consuming power without work.

  • Keep capacity ready

    Bring instances up before users, jobs, or office hours begin.

Time-based start and stop rules for this instance.

Enabled

Action

Start

Timezone

UTC

Cron expression

0 9 * * 1-5

Action

Stop

Timezone

UTC

Cron expression

0 19 * * 1-5

What Compute already includes.

Deployment, routing, pricing, security, scheduling, and API compatibility in one runtime.

Model deployment

Pick a model and let Compute validate runtime requirements and prepare capacity for serving.

Multi-provider routing

The scheduler selects capacity across available providers for cost, availability, and latency.

Persistent storage

Mount persistent disks into multiple workloads, share them across launches, and keep them attached when Compute reschedules the workload on another provider.

OpenAI-compatible API

Expose deployed models behind the standard OpenAI contract so existing clients keep working.

Scheduled operations

Use cron-based start and stop rules so workloads run when needed and stay off when they do not.

Capacity pricing

Compute instances use active-capacity pricing; Public Models remain token-priced.

Security controls

Apply regional controls, verified runtime checks, and private-by-default operations for production workloads.

Storage service

Persistent disks that move with Compute.

Storage gives Compute a state layer that is not tied to one provider. Mount the same disk across multiple workloads, share it when a process needs common state, and keep it available if the runtime lands somewhere else. It is also a fit for fine-tuning checkpoints, model caches, and quantization outputs that need durable scratch space for faster startup.

The control plane can move the instance, but the disk keeps following the job. That is what makes stateful workloads portable across providers.

Storage behavior

One disk. Multiple launches.

Persistent disks

Keep checkpoints, fine-tuning runs, model caches, and quantization outputs attached to the workload across launches.

Shared volumes

Mount one disk into multiple workloads when a pipeline needs the same state layer.

Multi-provider continuity

If Compute moves the workload from one provider to another, the storage layer keeps following it.

OpenAI SDK. Your models. Our infrastructure.

Point existing OpenAI-compatible code at QDivZero and run production AI workloads on capacity-priced infrastructure.

View docs
quickstart.py
from openai import OpenAI

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

response = client.chat.completions.create(
    model="your-model",
    messages=[
        {"role": "user", "content": "Hello world"}
    ],
)

Deploy a compatible model through the Compute launch flow.

Compute abstracts infrastructure decisions so you can focus on your product. Start with a model, then add retrieval, guardrails, or routing as your workload grows.