Last updated: 2026-07-01
OpenPipe is an LLM fine-tuning and reinforcement learning platform that turns prompt logs into cheaper, faster specialist models. Acquired by CoreWeave in 2025.
OpenPipe is an LLM fine-tuning and reinforcement learning platform that converts production prompt logs into smaller specialist models costing 10-100x less to run than frontier LLMs for repetitive AI tasks. Acquired by CoreWeave in 2025, it enables AI teams to replace expensive GPT-4-class calls with purpose-built models without sacrificing output quality.
OpenPipe is a production LLM fine-tuning and reinforcement learning platform founded in 2023, backed by Y Combinator and $6.7M in seed funding, and acquired by CoreWeave in September 2025. The platform solves a specific and expensive problem: teams running GPT-4 or Claude in production for narrow, repetitive tasks pay frontier model prices for tasks that a smaller, specialized model trained on their own logs can perform equally well or better at a fraction of the cost. The core workflow captures production LLM calls through a drop-in SDK integration, filters and curates the logs into training datasets, and fine-tunes open models like Llama 3.1 on that data. Fine-tuned models are automatically deployed as OpenPipe API endpoints that replace the original frontier model endpoint with no code changes required beyond swapping the model name in the API call. In multiple published customer evaluations using LLM-as-judge scoring, fine-tuned Llama 3.1 models trained on OpenPipe outperformed GPT-4o on task-specific benchmarks while costing significantly less per million tokens. Beyond supervised fine-tuning, OpenPipe ships ART (Agent Reinforcement Trainer), an open-source GRPO-based reinforcement learning library available on GitHub and PyPI. ART trains multi-step LLM agents by letting them practice on real tasks and updating their weights based on outcome quality, improving performance on complex agentic workflows that supervised fine-tuning alone cannot fix. ART integrates with Weights and Biases, Langfuse, and NVIDIA's NeMo Agent Toolkit. The CoreWeave acquisition in September 2025 created a vertically integrated AI development stack combining OpenPipe's training and fine-tuning capabilities with Weights and Biases experiment tracking and CoreWeave's GPU inference infrastructure. The joint October 2025 launch of serverless RL represented the first production manifestation of this combined platform. OpenPipe offers a 30-day free trial with usage-based pricing thereafter. Pricing is per-token for training and inference, with enterprise plans available. The platform does not have a permanent free tier.
30-day free trial. Usage-based pricing: charged per token for training and inference. Enterprise plans with custom pricing available. No permanent free tier. Contact sales for current per-token rates.
OpenPipe is an LLM fine-tuning and reinforcement learning platform founded in 2023, originally built around wrapping a team's existing API calls to capture production prompts and completions for training smaller, cheaper specialist models. In September 2025, CoreWeave announced it would acquire OpenPipe, calling it a leader in reinforcement learning for AI agents, and the deal followed CoreWeave's earlier acquisition of Weights & Biases as part of a vertically integrated AI development stack. OpenPipe's flagship open-source toolkit, ART (Agent Reinforcement Trainer), lets engineers train multi-step agents using GRPO-based reinforcement learning on models like Qwen, GPT-OSS, and Llama. Before the acquisition, OpenPipe raised a $6.7M seed round backed by Y Combinator, Costanoa Ventures, Logan Kilpatrick, and Tom Preston-Werner. The platform is based in the Seattle area and its code is open-sourced on GitHub under OpenPipe/ART and OpenPipe/OpenPipe.
OpenPipe uses pay-per-use pricing: you pay for tokens generated and seconds of training time, not for idle GPU cycles, and most training runs come in under $100 even for fairly complex agents. For supervised fine-tuning, LoRA SFT costs $0.50 per 1 million tokens and full-parameter SFT costs $1.00 per 1 million tokens for models under 16B parameters, with LoRA DPO at $1.00 per 1 million and full-parameter DPO at $2.00 per 1 million. Prices roughly double for models in the 16B-80B range, and double again for 80B-300B models. There is a free trial tier for experimenting with the platform before committing to paid training runs. Compared to specialized inference providers like Fireworks AI, OpenPipe's inference costs run roughly 2x higher, reflecting the added fine-tuning and RL infrastructure.
OpenPipe's core differentiator is converting an existing app's production prompt logs directly into training data: instead of manually building a static dataset, you wrap your existing API calls with the OpenPipe SDK, and it captures real prompts and completions to fine-tune a smaller specialist model. Its ART (Agent Reinforcement Trainer) framework, open-sourced on GitHub, uses GRPO-based reinforcement learning so agents improve from real usage feedback rather than a one-time fine-tune. After the CoreWeave acquisition in September 2025, OpenPipe launched serverless RL alongside Weights & Biases and CoreWeave's GPU cloud, giving customers a single integrated stack for training, adapting, and optimizing models rather than stitching together separate vendors. OpenPipe also supports deploying its entire stack inside a private cloud or data center so training data never leaves the customer's network.
Together AI and Fireworks AI are primarily serverless inference and fine-tune hosting platforms with near-identical per-token pricing, roughly $0.18 per 1 million tokens for 8B models and $0.88-$0.90 per 1 million for 70B models, both with OpenAI-compatible endpoints. OpenPipe instead focuses on the fine-tuning and reinforcement learning workflow itself, using your production logs as training data and its ART framework for agent RL, and as a result its inference costs run about 2x higher than Fireworks for comparable models. Choose Together AI or Fireworks if you mainly need cheap, fast inference for open-weight models; choose OpenPipe if your priority is turning real production traffic into a fine-tuned or RL-trained specialist model, especially for multi-step agents, and you are comfortable with the CoreWeave-backed stack since the September 2025 acquisition.
OpenPipe offers a free trial tier for experimenting with fine-tuning and the ART reinforcement learning framework before paying for training runs. Beyond the trial, OpenPipe is usage-based: you pay only for tokens processed and training time, starting at $0.50 per 1 million tokens for LoRA supervised fine-tuning on smaller models, with most full training runs costing under $100. The ART (Agent Reinforcement Trainer) toolkit itself is open source on GitHub (OpenPipe/ART) and free to run on your own infrastructure if you want to avoid OpenPipe's hosted billing entirely, though you would then need to provide your own GPU compute. There is no perpetual free production tier for hosted fine-tuning; the free trial is meant for evaluation.
OpenPipe is best for engineering teams running an AI product in production that makes repeated, similar calls to expensive frontier models like GPT-4-class APIs, and who want to replace those calls with a smaller specialist model trained on their own real prompt and completion logs. It is also a strong fit for teams building multi-step AI agents who want to apply reinforcement learning (via the open-source ART/GRPO framework) so agents improve from real usage over time, particularly if they are already using or open to CoreWeave's GPU cloud and Weights & Biases for observability. OpenPipe is less suited to teams that need the cheapest possible raw inference, since its per-token costs run roughly 2x Fireworks AI, or to enterprises wary of CoreWeave cloud lock-in following the September 2025 acquisition, who may prefer a multi-cloud-neutral provider like Together AI.
Yes, reinforcement learning for AI agents is OpenPipe's primary focus following the CoreWeave acquisition announced in September 2025, which called OpenPipe a leader in reinforcement learning for AI agents. Its open-source ART (Agent Reinforcement Trainer) framework, hosted on GitHub at OpenPipe/ART, trains multi-step agents using GRPO (Group Relative Policy Optimization) so models like Qwen3.6, GPT-OSS, and Llama improve from on-the-job feedback rather than a single static fine-tune. The serverless RL backend, launched jointly with CoreWeave and Weights & Biases, connects developers to a managed GPU cluster so they pay only for compute used during training rather than idle GPU time. ART integrates with observability tools including Weights & Biases and Langfuse to help debug agent training runs.
OpenPipe's core model works by capturing your production prompts and completions through its SDK to use as training data for your own fine-tuned model, so by design it processes your application's real traffic. OpenPipe's data licensing is proprietary, meaning your captured data and resulting models are not shared across customers. For teams with strict data residency or compliance requirements, OpenPipe supports deploying its entire stack, including the ART reinforcement learning framework, inside a private cloud or on-premises data center so training data never leaves the customer's network. Since the September 2025 CoreWeave acquisition, OpenPipe's hosted offering runs on CoreWeave's GPU infrastructure, so teams with multi-cloud policies should review the data residency terms for that specific deployment model.
LLM fine-tuning and reinforcement learning platform for AI agents; turns production prompt logs into cheaper specialist models, acquired by CoreWeave in 2025.
OpenPipe (CoreWeave)