Helicone: Open Source LLM Observability Platform and AI Gateway
This repository profile is provided by osrepos.com, an open source repository discovery platform.
Summary
Helicone is an open-source LLM observability platform and AI Gateway for AI engineers. It provides one-line code integration to monitor, evaluate, and experiment with large language models, offering features like cost tracking, prompt management, and intelligent routing. The platform supports a wide range of inference providers and frameworks, simplifying LLM development and deployment.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
Helicone is an open-source LLM observability platform and AI Gateway built for AI engineers. It simplifies the process of monitoring, evaluating, and experimenting with large language models through a single line of code. Developed by Y Combinator W23 alumni, Helicone provides essential tools for tracing agent interactions, tracking costs and latency, managing prompts, and intelligently routing requests across over 100 AI models.
Installation
Getting started with Helicone is straightforward. First, obtain your API key by signing up on the Helicone website and add credits at helicone.ai/credits.
Then, integrate it into your application by updating the baseURL and adding your API key, as shown in this TypeScript example:
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://ai-gateway.helicone.ai",
apiKey: process.env.HELICONE_API_KEY,
});
const response = await client.chat.completions.create({
model: "gpt-4o-mini", // claude-sonnet-4, gemini-2.0-flash or any model from https://www.helicone.ai/models
messages: [{ role: "user", content: "Hello!" }]
});
For self-hosting, Helicone offers a simple Docker setup using docker-compose. Clone the repository, navigate to the docker directory, copy .env.example to .env, and run ./helicone-compose.sh helicone up. Enterprise users can also leverage a production-ready Helm chart.
Examples
The quick start guide above serves as a primary example of integrating Helicone's AI Gateway. Once integrated, you can view your logs and access over 100 models through a unified API on your Helicone dashboard.
Helicone also features a powerful Playground UI, allowing you to rapidly test and iterate on prompts, sessions, and traces, streamlining your development workflow. Its extensive integration support means you can easily connect with popular LLM providers like OpenAI, Anthropic, and Google Gemini, as well as frameworks such as LangChain and LlamaIndex.
Why Use
Helicone stands out as a comprehensive solution for LLM operations due to several key features:
- AI Gateway: Access over 100 AI models with a single API key, benefiting from intelligent routing and automatic fallbacks.
- Quick Integration: Effortlessly log requests from various providers and frameworks with minimal code changes.
- Observability & Analytics: Inspect and debug traces, sessions, and track critical metrics like cost, latency, and quality.
- Prompt Management: Version prompts using production data and deploy them via the AI Gateway without code modifications, ensuring your prompts remain under your control.
- Fine-tuning: Integrate with partners like OpenPipe and Autonomi for efficient fine-tuning processes.
- Enterprise Ready: Compliant with SOC 2 and GDPR standards, making it suitable for enterprise-level applications.
- Generous Free Tier: Start monitoring your LLM applications with a free tier of 10,000 requests per month, no credit card required.
Links
Related repositories
Similar repositories that may be relevant next.

microsoft/skills: Empowering AI Coding Agents with Domain-Specific Knowledge
August 19, 2026
The microsoft/skills repository provides a comprehensive collection of skills, custom agents, and configurations designed to enhance AI coding agents. It offers domain-specific knowledge for working with Azure SDKs and Microsoft AI Foundry, enabling more effective and context-driven development. Developers can leverage these resources to ground agents like GitHub Copilot with specialized expertise.

ClawHub: The Public Skill and Plugin Registry for OpenClaw
August 19, 2026
ClawHub is the public skill and plugin registry for OpenClaw, designed for publishing, versioning, and searching text-based agent skills and code plugins. It offers fast browsing, a CLI-friendly API, moderation hooks, and vector search capabilities. This platform streamlines the discovery and management of resources for the OpenClaw ecosystem.

code-session-memory: Automatic Vector Memory for AI Coding Sessions
August 15, 2026
code-session-memory provides automatic vector memory for various AI coding tools like OpenCode, Claude Code, Cursor, VS Code, Codex, and Gemini CLI. It indexes new messages into a vector database after each AI agent turn, enabling semantic search across all your past coding sessions. This tool ensures memory is shared across different platforms, enhancing developer productivity.

Cloudflare Computer: Give Your Agent a Virtual Filesystem
August 14, 2026
Cloudflare Computer is an innovative project that provides a virtual filesystem within a Durable Object, allowing agents to interact with a persistent state. It offers pluggable execution backends, including containerized Linux environments and serverless Workers, enabling flexible and powerful agent computing. Currently in preview, it's ideal for experiments and prototypes leveraging Cloudflare's edge infrastructure.
Source repository
Open the original repository on GitHub.
13 counted GitHub visits