惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
L
LangChain Blog
WordPress大学
WordPress大学
H
Help Net Security
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
MyScale Blog
MyScale Blog
IT之家
IT之家
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
云风的 BLOG
云风的 BLOG
博客园 - 【当耐特】
P
Proofpoint News Feed
D
DataBreaches.Net

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Helicone is now in maintenance mode. Here is how to switc...
Adarsh Rao · 2026-05-02 · via DEV Community

Adarsh Rao

If you have been using Helicone to track LLM costs and traces, you may have noticed it was acquired by Mintlify in March 2026. Development has stopped. The self-hosted version has open issues that are not being fixed. The team is focused on Mintlify now.

If you need a replacement, this post covers how to migrate to Torrix, a self-hosted LLM observability proxy that uses the same proxy-header model as Helicone.

What Torrix does
Torrix is a single Docker container that sits between your app and any LLM provider. Every call is logged to a local SQLite database with full prompt, response, token counts, cost, and latency. Nothing leaves your server.

It supports OpenAI, Anthropic, Gemini, Groq, Mistral, Ollama, DeepSeek, Azure OpenAI, and any provider with a /v1/chat/completions endpoint.

What changes when migrating from Helicone
Only three things change: the base URL, the auth header name, and where you pass your OpenAI key. Your prompts, models, and messages stay exactly the same.

Before (Helicone)

client = OpenAI(
    api_key="sk-your-openai-key",
    base_url="https://oai.helicone.ai/v1",
    default_headers={
        "Helicone-Auth": "Bearer hc-your-helicone-key",
    }
)

Enter fullscreen mode Exit fullscreen mode

After (Torrix)

client = OpenAI(
    api_key="sk-your-openai-key",
    base_url="http://localhost:8088/proxy",
    default_headers={
        "Authorization": "Bearer trxk_your-torrix-key",
        "x-target-url": "https://api.openai.com",
        "x-upstream-authorization": "Bearer sk-your-openai-key",
    }
)

Enter fullscreen mode Exit fullscreen mode

Your Helicone custom headers are aliased automatically. If you were using helicone-property-name, helicone-session-id, or helicone-request-id, Torrix reads those natively. Zero code changes beyond the base URL and API key.

Step-by-step migration
1. Install Torrix

curl -o docker-compose.yml https://raw.githubusercontent.com/torrix-ai/install/main/docker-compose.community.yml
docker compose up -d

Open http://localhost:8088, create an account, and copy your API key from Settings.

2. Update your code

Swap the base URL, move your OpenAI key to x-upstream-authorization, and set x-target-url to your provider. Everything else stays the same.

3. Confirm it works

Send any request and check that it appears in the Runs page at http://localhost:8088. You should see the model, tokens, cost, and full prompt trace.

Why self-hosted
Torrix runs entirely on your own infrastructure. Your prompts and API keys never pass through a third-party server. It is a single process backed by SQLite, so there is nothing to operate or scale.

Full migration guide with curl examples and an Anthropic walkthrough:https://github.com/torrix-ai/install/blob/main/docs/migrate-from-helicone.md