단일 API로 다양한 LLM을 연동하고 최적화하는 오픈소스 LLMOps 플랫폼인 TensorZero가 730만 달러(약 100억 원)의 시드 투자를 유치한 직후 저장소를 비활성화(archived)하여 큰 화제가 되었습니다. 이 플랫폼은 1ms 미만의 저지연 게이트웨이와 데이터 기반 모델 최적화 기능을 제공하여 실무자에게 매우 유용하지만, 돌연 프로젝트가 중단된 원인에 대해 해커뉴스 등 개발자 커뮤니티에서 활발한 논의가 진행 중입니다.
번역된 본문
TensorZero는 다음의 기능을 통합하는 오픈소스 LLMOps 플랫폼입니다:
게이트웨이(Gateway): 성능을 위해 설계된 통합 API(<1ms p99 지연 시간)를 통해 모든 LLM 제공업체에 액세스
관측 가능성(Observability): 사용자의 데이터베이스에 추론 및 피드백을 저장하며, 프로그래밍 방식이나 UI를 통해 확인 가능
평가(Evaluation): 휴리스틱, LLM 심사관 등을 사용하여 개별 추론 또는 엔드투엔드 워크플로우를 벤치마킹
최적화(Optimization): 지표와 사용자 피드백을 수집하여 프롬프트, 모델 및 추론 전략을 최적화
실험(Experimentation): 기본 제공되는 A/B 테스트, 라우팅, 폴백(fallback), 재시도 등을 통해 자신감을 갖고 배포
필요한 기능만 선택해서 사용할 수 있고, 점진적으로 도입할 수 있으며, 다른 도구들과 보완적으로 사용할 수 있습니다. OpenAI SDK, OpenTelemetry 및 모든 주요 LLM 제공업체와 완벽하게 호환됩니다. 최첨단 AI 스타트업부터 포춘 10대 기업에 이르기까지 다양한 기업에서 사용되고 있으며, 현재 전 세계 LLM API 지출의 약 1%를 담당하고 있습니다.
기능 참고 🆕 TensorZero 오토파일럿(Autopilot)
TensorZero 오토파일럿은 TensorZero 기반의 자동화된 AI 엔지니어로, LLM 관측 데이터를 분석하고 평가를 설정하며, 프롬프트와 모델을 최적화하고 A/B 테스트를 실행합니다. 이는 다양한 작업에서 LLM 에이전트의 성능을 획기적으로 향상시킵니다.
🌐 LLM 게이트웨이
TensorZero에 한 번만 통합하면 모든 주요 LLM 제공업체에 액세스할 수 있습니다.
단일 통합 API를 통해 모든 LLM(API 또는 자체 호스팅)을 호출
도구 사용(tool use), 구조화된 출력(JSON), 배치, 임베딩, 멀티모달(이미지, 파일), 캐싱 등을 활용한 추론
애플리케이션과 LLM 간의 구조화된 인터페이스를 강제하기 위한 프롬프트 템플릿 및 스키마 생성
🦀 Rust 덕분에 극한의 처리량과 지연 시간 요구를 충족: 10k+ QPS에서 <1ms p99 지연 시간 오버헤드
라우팅, 재시도, 폴백, 로드 밸런싱, 세분화된 타임아웃 등을 통한 고가용성 보장
태그 등 세분화된 범위로 사용량 및 비용을 추적하고 맞춤형 속도 제한 적용
TensorZero에 대한 인증을 설정하여 제공업체 API 키를 공유하지 않고도 클라이언트가 모델에 액세스 가능
지원되는 모델 제공업체
Anthropic, AWS Bedrock, AWS SageMaker, Azure, DeepSeek, Fireworks, GCP Vertex AI Anthropic, GCP Vertex AI Gemini, Google AI Studio(Gemini API), Groq, Hyperbolic, Mistral, OpenAI, OpenRouter, SGLang, TGI, Together AI, vLLM, xAI(Grok). 다른 것이 필요하신가요? TensorZero는 모든 OpenAI 호환 API(예: Ollama)도 지원합니다.
사용 예시
모든 OpenAI SDK(Python, Node, Go 등) 또는 OpenAI 호환 클라이언트와 함께 TensorZero를 사용할 수 있습니다.
TensorZero 게이트웨이 배포(하나의 Docker 컨테이너).
OpenAI 호환 클라이언트에서 base_url 및 모델 업데이트.
추론 실행:
from openai import OpenAI # 클라이언트를 TensorZero 게이트웨이로 지정
client = OpenAI(base_url="http://localhost:3000/openai/v1", api_key="not-used")
response = client.chat.completions.create(# 모든 모델 제공업체(또는 TensorZero 함수) 호출
model="tensorzero::model_name::anthropic::claude-sonnet-4-6",
messages=[{"role": "user", "content": "Share a fun fact about TensorZero."}],)
🔍 LLM 관측 가능성(Observability)
오픈소스 TensorZero UI를 사용하여 개별 API 호출을 자세히 살펴보고 디버깅하거나, 시간이 지남에 따라 모델 및 프롬프트 간의 지표를 모니터링할 수 있습니다.
자체 데이터베이스에 추론 및 피드백(지표, 사람의 수정 등) 저장
TensorZero UI를 사용하거나 프로그래밍 방식으로 개별 추론 또는 높은 수준의 집계 패턴 분석
최적화, 평가 및 기타 워크플로우를 위한 데이터셋 구축
새로운 프롬프트, 모델, 추론 전략 등으로 과거 추론 재생(Replay)
OpenTelemetry 트레이스(OTLP) 내보내기 및 선호하는 애플리케이션 관측 도구로 Prometheus 지표 내보내기
향후 예정: AI 지원 디버깅 및 근본 원인 분석; AI 지원 데이터 라벨링
📈 LLM 최적화
프로덕션 지표와 사람의 피드백을 보내어 UI 또는 프로그래밍 방식으로 프롬프트, 모델 및 추론 전략을 쉽게 최적화하세요.
TensorZero TensorZero is an open-source LLMOps platform that unifies: Gateway: access every LLM provider through a unified API, built for performance (<1ms p99 latency) Observability: store inferences and feedback in your database, available programmatically or in the UI Evaluation: benchmark individual inferences or end-to-end workflows using heuristics, LLM judges, etc. Optimization: collect metrics and human feedback to optimize prompts, models, and inference strategies Experimentation: ship with confidence with built-in A/B testing, routing, fallbacks, retries, etc. You can take what you need, adopt incrementally, and complement with other tools. It plays nicely with the OpenAI SDK , OpenTelemetry , and every major LLM provider . TensorZero is used by companies ranging from frontier AI startups to the Fortune 10 and fuels ~1% of global LLM API spend today. Website · Docs · Twitter · Slack · Discord Quick Start (5min) · Deployment Guide · API Reference · Configuration Reference Demo tensorzero-demo.mp4 Features Note 🆕 TensorZero Autopilot TensorZero Autopilot is an automated AI engineer powered by TensorZero that analyzes LLM observability data, sets up evals, optimizes prompts and models, and runs A/B tests. It dramatically improves the performance of LLM agents across diverse tasks: Learn more → 🌐 LLM Gateway Integrate with TensorZero once and access every major LLM provider. Call any LLM (API or self-hosted) through a single unified API Infer with tool use , structured outputs (JSON) , batch , embeddings , multimodal (images, files) , caching , etc. Create prompt templates and schemas to enforce a structured interface between your application and the LLMs Satisfy extreme throughput and latency needs, thanks to 🦀 Rust: <1ms p99 latency overhead at 10k+ QPS Ensure high availability with routing, retries, fallbacks, load balancing, granular timeouts, etc. Track usage and cost and enforce custom rate limits with granular scopes (e.g. tags) Set up auth for TensorZero to allow clients to access models without sharing provider API keys Supported Model Providers Anthropic , AWS Bedrock , AWS SageMaker , Azure , DeepSeek , Fireworks , GCP Vertex AI Anthropic , GCP Vertex AI Gemini , Google AI Studio (Gemini API) , Groq , Hyperbolic , Mistral , OpenAI , OpenRouter , SGLang , TGI , Together AI , vLLM , and xAI (Grok) . Need something else? TensorZero also supports any OpenAI-compatible API (e.g. Ollama) . Usage Example You can use TensorZero with any OpenAI SDK (Python, Node, Go, etc.) or OpenAI-compatible client. Deploy the TensorZero Gateway (one Docker container). Update the base_url and model in your OpenAI-compatible client. Run inference: from openai import OpenAI # Point the client to the TensorZero Gateway client = OpenAI ( base_url = "http://localhost:3000/openai/v1" , api_key = "not-used" ) response = client . chat . completions . create ( # Call any model provider (or TensorZero function) model = "tensorzero::model_name::anthropic::claude-sonnet-4-6" , messages = [ { "role" : "user" , "content" : "Share a fun fact about TensorZero." , } ], ) See Quick Start for more information. 🔍 LLM Observability Zoom in to debug individual API calls, or zoom out to monitor metrics across models and prompts over time — all using the open-source TensorZero UI. Store inferences and feedback (metrics, human edits, etc.) in your own database Dive into individual inferences or high-level aggregate patterns using the TensorZero UI or programmatically Build datasets for optimization, evaluation, and other workflows Replay historical inferences with new prompts, models, inference strategies, etc. Export OpenTelemetry traces (OTLP) and export Prometheus metrics to your favorite application observability tools Soon: AI-assisted debugging and root cause analysis; AI-assisted data labeling 📈 LLM Optimization Send production metrics and human feedback to easily optimize your prompts, models, and inference strategies — using the UI or programmatically. Optimize your models with supervised fine-tuning , RLHF, and other techniques Optimize your prompts with automated prompt engineering algorithms like GEPA Optimize your inference strategy with dynamic in-context learning , best/mixture-of-N sampling, etc. Enable a feedback loop for your LLMs: a data & learning flywheel turning production data into smarter, faster, and cheaper models Soon: synthetic data generation 📊 LLM Evaluation Compare prompts, models, and inference strategies using evaluations powered by heuristics and LLM judges. Evaluate individual inferences with inference evaluations powered by heuristics or LLM judges (≈ unit tests for LLMs) Evaluate end-to-end workflows with workflow evaluations with complete flexibility (≈ integration tests for LLMs) Optimize LLM judges just like any other TensorZero function to align them to human preferences Soon: more built-in evaluators; headless evaluations Evaluation » UI Evaluation » CLI docker compose run --rm evaluations \ --evaluation-name extract_data \ --dataset-name hard_test_cases \ --variant-name gpt_4o \ --concurrency 5 Run ID: 01961de9-c8a4-7c60-ab8d-15491a9708e4 Number of datapoints: 100 ██████████████████████████████████████ 100/100 exact_match: 0.83 ± 0.03 (n=100) semantic_match: 0.98 ± 0.01 (n=100) item_count: 7.15 ± 0.39 (n=100) 🧪 LLM Experimentation Ship with confidence with built-in A/B testing, routing, fallbacks, retries, etc. Run adaptive A/B tests to ship with confidence and identify the best prompts and models for your use cases. Enforce principled experiments in complex workflows, including support for multi-turn LLM systems, sequential testing, and more. & more! Build with an open-source stack well-suited for prototypes but designed from the ground up to support the most complex LLM applications and deployments. Build simple applications or massive deployments with GitOps-friendly orchestration Extend TensorZero with built-in escape hatches, programmatic-first usage, direct database access, and more Integrate with third-party tools: specialized observability and evaluations, model providers, agent orchestration frameworks, etc. Iterate quickly by experimenting with prompts interactively using the Playground UI Frequently Asked Questions How is TensorZero different from other LLM frameworks? TensorZero enables you to optimize complex LLM applications based on production metrics and human feedback. TensorZero supports the needs of industrial-grade LLM applications: low latency, high throughput, type safety, self-hosted, GitOps, customizability, etc. TensorZero unifies the entire LLMOps stack, creating compounding benefits. For example, LLM evaluations can be used for fine-tuning models alongside AI judges. Can I use TensorZero with ___? Yes. Every major programming language is supported. It plays nicely with the OpenAI SDK , OpenTelemetry , and every major LLM provider . Is TensorZero production-ready? Yes. TensorZero is used by companies ranging from frontier AI startups to the Fortune 10 and powers ~1% of the global LLM API spend today. Here's a case study: Automating Code Changelogs at a Large Bank with LLMs How much does TensorZero cost? TensorZero (LLMOps platform) is 100% self-hosted and open-source. TensorZero Autopilot (automated AI engineer) is a complementary paid product powered by TensorZero. Who is building TensorZero? Our technical team includes a former Rust compiler maintainer, machine learning researchers (Stanford, CMU, Oxford, Columbia) with thousands of citations, and the chief product officer of a decacorn startup. We're backed by the same investors as leading open-source projects (e.g. ClickHouse, CockroachDB) and AI labs (e.g. OpenAI, Anthropic). See our $7.3M seed round announcement and coverage from VentureBeat . We're hiring in NYC . How do I get started? You can adopt TensorZero incrementally. Our Quick Start goes from a vanilla OpenAI wrapper to a production-ready LLM application with observability and fine-tuning i