Inference

Weights & Biases (W&B) Inference is a managed inference service for open-source large language models (LLMs), providing both a REST API and an interactive Playground for developers to query models like Meta Llama 3.1 8B, DeepSeek V4-Pro, and Qwen3 235B A22B without provisioning GPU infrastructure.

Reviewed by 7wData

On this page

Publisher review

Weights & Biases (W&B) Inference is a managed inference service for open-source large language models (LLMs), providing both a REST API and an interactive Playground for developers to query models like Meta Llama 3.1 8B, DeepSeek V4-Pro, and Qwen3 235B A22B without provisioning GPU infrastructure. It is part of the broader W&B MLOps platform, which includes experiment tracking, a model registry with lineage, CI/CD automations, and LLM evaluation tools (Weave). The service targets individual developers, professional teams, and enterprises that need to deploy and monitor LLMs quickly while staying within the W&B ecosystem for experiment management and observability. W&B Inference is powered by CoreWeave GPU cloud infrastructure, and its pricing is entirely separate from W&B's experiment tracking plans (Free, Pro, Enterprise).

W&B Inference offers per-model, per-token pricing for hosted models, with costs varying by model size and capability. For example, input tokens for Meta Llama 3.1 8B cost $0.22 per million tokens, while output tokens for DeepSeek V4-Pro cost $3.46 per million tokens. Cache-hit discounts reduce costs significantly—Qwen3.6 27B input tokens drop from $0.60 to $0.12 per million tokens on cache hit. The service supports over 20 open-source models, including NVIDIA Nemotron 3 Super 120B, Google Gemma 4 31B, and Microsoft Phi 4 Mini 3.8B. Usage is billed monthly, and Playground queries are charged identically to API calls. W&B Inference does not include any free tier; users must have a paid W&B account (Pro or Enterprise) to access the API, and inference costs are added on top of the platform subscription.

W&B Inference competes directly with serverless inference providers such as Together AI, Fireworks AI, and Replicate, as well as cloud-native services like AWS Bedrock and GCP Vertex AI. It differentiates by tightly coupling inference with W&B's experiment tracking and model registry, enabling teams to log prompt-response pairs, evaluate outputs, and manage model versions in one place. However, it lacks the breadth of MLOps orchestration found in competitors like ZenML or MLflow, and its per-token pricing can be expensive for high-volume workloads compared to dedicated GPU endpoints from providers like CoreWeave or Lambda Labs. The service is not available on the free or Personal W&B plans, limiting its accessibility for individual developers.

The honest trade-offs: W&B Inference is convenient for teams already invested in the W&B platform, but its costs can escalate quickly for production-scale inference. A team running 10 million input tokens per month on DeepSeek V4-Pro would pay $17.40 for input tokens alone, plus $34.60 for output tokens, totaling $52.00 per month—before any W&B subscription fees. The service lacks support for custom model fine-tuning or deployment of private models, meaning users must rely on the provided open-source model roster. For budget-conscious teams, alternatives like self-hosted vLLM or Ollama offer zero per-token costs but require infrastructure management. W&B Inference is best suited for teams that prioritize rapid prototyping and integrated observability over raw cost efficiency.

Get the AI & data signal, daily.

335k+ subscribers read this every morning. One email, both newsletters. Unsubscribe anytime.

How it works

  1. Serverless LLM inference API

    Provides REST API access to over 20 open-source LLMs, including Llama 3.1, DeepSeek V4, and Qwen3, with per-token billing and cache-hit discounts.

  2. Interactive Playground

    Browser-based interface for testing models with real-time token usage tracking, billed at the same per-token rates as the API.

  3. Experiment tracking integration

    Logs inference requests and responses directly into W&B runs, enabling side-by-side comparison of model outputs and performance metrics.

  4. Model registry and lineage

    Tracks which model version and prompt were used for each inference, linking outputs back to training experiments and dataset versions.

  5. LLM evaluations (Weave)

    Built-in scorers and tracing for evaluating response quality, including automated checks for toxicity, relevance, and factual accuracy.

  6. CI/CD automations

    Integrates with W&B launch to trigger inference deployments or evaluations after model training completes, supporting automated pipelines.

  7. Enterprise security features

    Supports HIPAA compliance, customer-managed encryption keys (CMEK), single sign-on (SSO), audit logs, and custom roles for inference access control.

Strengths and trade-offs

Strengths

  • Integrated with W&B experiment tracking and model registry, allowing teams to log inference results alongside training metrics in a single UI.
  • Offers cache-hit discounts that reduce input token costs by up to 80%, as seen with Qwen3.6 27B dropping from $0.60 to $0.12 per million tokens.
  • Supports over 20 open-source models including Llama 3.1 8B at $0.22/M tokens and DeepSeek V4-Pro at $1.74/M input tokens, covering a wide range of use cases.
  • Enterprise plan includes HIPAA compliance, CMEK, SSO, and audit logs, meeting requirements for regulated industries like healthcare and finance.

Trade-offs

  • Per-token pricing can become expensive at scale—10M input tokens on DeepSeek V4-Pro costs $17.40 plus $34.60 for output, before any W&B subscription.
  • No free tier for inference; users must have a paid W&B Pro ($60/month) or Enterprise plan to access the API, adding a baseline cost.
  • Limited to hosted open-source models only—does not support deploying custom fine-tuned models or private proprietary models.
  • Usage-based billing for Playground queries can surprise developers who test models interactively, as each prompt is charged identically to API calls.

Pricing context

W&B Inference is billed separately from W&B platform subscriptions. Per-model per-token pricing ranges from $0.05/M input tokens (JetBrains Mellum2 12B) to $1.74/M input tokens (DeepSeek V4-Pro). Cache-hit discounts reduce input costs by 50-80%.

Access requires a paid W&B Pro plan ($60/month) or Enterprise plan (custom pricing). No free tier for inference.

Getting started with Inference

  1. Sign up for W&B Pro

    Go to the Weights & Biases website and create an account. Choose the Pro plan at $60 per month, as W&B Inference requires a paid subscription. Complete the registration and verify your email to activate your account.

  2. Connect your API key

    Log into your W&B account and navigate to the settings page to generate an API key. Copy the key and store it securely. Use this key to authenticate your requests when calling the Inference API from your application.

  3. Choose a model from the roster

    Open the W&B Inference Playground or API documentation to browse the available open-source models. Select a model like Meta Llama 3.1 8B or DeepSeek V4-Pro based on your task. Note the per-token pricing and cache-hit discounts for your chosen model.

  4. Send your first inference request

    Use the REST API endpoint with your API key and selected model name. Send a POST request with a prompt in the JSON body. For example, include {"model": "meta-llama/Llama-3.1-8B", "prompt": "Hello, world!"}. Review the response for generated text.

  5. Log results to experiment tracking

    After receiving the inference response, log the prompt and output to a W&B run using the SDK. Call wandb.log({"prompt": prompt, "response": response}) to store the data. This links your inference to your experiment history for later analysis.

Frequently Asked Questions

What is W&B Inference and how does it work?

W&B Inference is a managed service for running open-source large language models via a REST API or interactive Playground. It handles GPU infrastructure through CoreWeave, so you can query models like Llama 3.1 without provisioning hardware.

How much does W&B Inference cost per token?

Pricing is per model per token. For example, Meta Llama 3.1 8B input tokens cost $0.22 per million, while DeepSeek V4-Pro output tokens cost $3.46 per million. Cache hits can reduce input costs by 50-80%.

What open-source models are available on W&B Inference?

W&B Inference supports over 20 models including Meta Llama 3.1 8B, DeepSeek V4-Pro, Qwen3 235B A22B, NVIDIA Nemotron 3 Super 120B, Google Gemma 4 31B, and Microsoft Phi 4 Mini 3.8B. The roster covers various sizes and capabilities.

Do I need a paid W&B plan to use Inference?

Yes, access requires a paid W&B Pro plan at $60 per month or an Enterprise plan. There is no free tier for inference. Inference costs are billed separately on top of the platform subscription.

How does W&B Inference compare to Together AI or Fireworks AI?

W&B Inference competes with serverless providers like Together AI and Fireworks AI. Its key differentiator is tight integration with W&B experiment tracking and model registry, but per-token pricing can be higher for high-volume workloads.

Can I deploy my own custom fine-tuned model on W&B Inference?

No, W&B Inference only supports the provided roster of open-source models. It does not allow deploying custom fine-tuned or private proprietary models. For custom models, consider self-hosted solutions like vLLM or Ollama.

Alternatives

How Inference compares

Direct head-to-head against 3 competitors. Picked by 7wData.

This tool

Inference

Pricing
W&B Inference is billed separately from W&B platform subscriptions. Per-model per-token pricing ranges from $0.05/M input tokens (JetBrains Mellum2 12B) to $1.74/M input tokens (DeepSeek V4-Pro). Cache-hit discounts reduce input costs by 50-80%. Access requires a paid W&B Pro plan ($60/month) or Enterprise plan (custom pricing). No free tier for inference.
Target
Weights & Biases (W&B) Inference is a managed inference service for open-source large language models (LLMs), providing both a REST API and an interactive Playground
Strength
Integrated with W&B experiment tracking and model registry, allowing teams to log inference results alongside training metrics in a single UI.
Watch for
Per-token pricing can become expensive at scale—10M input tokens on DeepSeek V4-Pro costs $17.40 plus $34.60 for output, before any W&B subscription.

GMI Cloud

Pricing
Pay-as-you-go GPU instances; claims up to 50% lower compute costs than alternatives.
Target
Startups and enterprises needing low-latency inference with H100/H200 GPUs.
Deployment
Cloud, bare metal, containerized.
Strength
Immediate access to NVIDIA H200 GPUs with InfiniBand networking.
Watch for
Smaller provider; may have fewer global regions than hyperscalers.

Atlas Cloud

Pricing
Pay-per-use model; claims up to 55% below fal.ai for specific models.
Target
Developers and teams needing serverless inference for video/image models.
Deployment
Cloud, serverless, on-demand GPUs.
Strength
Specialized in video and image generation models like Seedance and Kling.
Watch for
Niche focus on media models; limited LLM support compared to general providers.

Inference.net

Pricing
Custom pricing for managed inference; no public per-token rates listed.
Target
Enterprises needing fully managed, global AI infrastructure with dedicated uptime.
Deployment
Cloud, managed, global.
Strength
Fully managed turn-key infrastructure with dedicated uptime guarantees.
Watch for
Pricing not transparent; requires contacting sales for quotes.

User reviews

No user reviews yet. Be the first to write one.

Sources

Reporting on this tool draws on these publicly available sources.

  1. wandb.ai
  2. wandb.ai
  3. wandb.ai
  4. www.zenml.io