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

推荐订阅源

V
Visual Studio Blog
博客园 - 司徒正美
博客园_首页
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
I
InfoQ
M
MIT News - Artificial intelligence
T
Tailwind CSS Blog
L
LangChain Blog
Last Week in AI
Last Week in AI
A
About on SuperTechFans
B
Blog
博客园 - 叶小钗
雷峰网
雷峰网
H
Help Net Security
WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
博客园 - 【当耐特】
云风的 BLOG
云风的 BLOG
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
aimingoo的专栏
aimingoo的专栏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

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
OpenModels: Explore LLM Models and Inference Providers
Made Büro · 2026-05-11 · via DEV Community

The number of LLM providers keeps growing and so does the confusion around pricing, availability and compatibility. OpenModels is an open-source project that brings structure to this landscape: a single registry where models, providers, and their relationships are documented, validated, and queryable.


Why This Matters

The AI inference ecosystem is fragmented in ways that cost teams real time and money:

  • The same model can cost 10x more depending on which provider you use
  • Latency between providers varies radically even for identical models
  • Uptime is unknown until you experience an outage yourself
  • Pricing pages change without notice, and there's no structured way to track it
  • Choosing a provider still means opening 15 tabs and building a spreadsheet

The AI ecosystem already has excellent tooling for training and inference. What is still missing is standardized infrastructure visibility across providers.

OpenModels focuses on that operational layer.


What is OpenModels

OpenModels is an open infrastructure project for discovering, validating, and comparing LLM models and inference providers.

The project combines:

  • an open registry of model and provider metadata
  • structured JSON schemas with automated validation
  • provider normalization (pricing, rate limits, regions)
  • real-time telemetry collection (health, latency, uptime)
  • a searchable web interface and REST API
  • operational intelligence for choosing the right provider

The goal is simple: make the modern AI inference ecosystem observable and comparable.


Current State

The registry currently tracks:

  • 62 models — from OpenAI, Anthropic, Google, Meta, DeepSeek, Mistral, xAI and others
  • 30 providers — including Together AI, Groq, DeepInfra, Cerebras, Fireworks, SambaNova and more
  • 90+ provider-model mappings — each with pricing, rate limits, and region data

The public registry is community-maintained through YAML definitions on GitHub:
github.com/openmodelsrun/openmodels


Architecture

The project is intentionally split into two layers.

1. Open Registry

The public repository contains normalized ecosystem data:

openmodels/
├── models/           # Canonical model definitions
├── providers/        # Inference provider definitions
├── mappings/         # Provider-model links with pricing
│   ├── anthropic/
│   ├── openai/
│   ├── together-ai/
│   └── ...
└── schemas/          # JSON Schema (Draft 7) for validation

Enter fullscreen mode Exit fullscreen mode

Every YAML file is validated on pull request via GitHub Actions:

  1. YAML syntax check
  2. JSON Schema conformance
  3. Referential integrity (mappings must reference existing models and providers)
  4. Duplicate ID detection

Nothing merges without passing all four checks.

2. Platform Layer

The platform consumes registry data and adds operational intelligence:

  • REST API (api.openmodels.run) — model discovery, provider comparison, telemetry endpoints
  • Web Interface (openmodels.run) — search, browse, compare with Command Palette and ecosystem graph
  • Telemetry Workers — health probes every 5 minutes, latency probes every 15 minutes

Core Concepts

The registry is built around three entities:

┌─────────┐         ┌───────────┐         ┌──────────┐
│  Model  │◄────────│  Mapping  │────────►│ Provider │
└─────────┘         └───────────┘         └──────────┘
  (what)          (pricing, limits)         (where)

Enter fullscreen mode Exit fullscreen mode

Model — a canonical LLM definition (e.g., DeepSeek V3, Claude Opus 4.6). Describes capabilities, modalities, context window, and licensing. Vendor-neutral.

Provider — an inference service (e.g., Together AI, Groq). Describes API endpoint, auth type, regions, and compatibility format.

Mapping — the glue. Connects a model to a provider with specific pricing, rate limits, and available regions.

This creates a many-to-many relationship: one model can be served by multiple providers at different price points, and one provider can serve dozens of models.

Example: Llama 4 Scout across providers

Provider Input (per 1M tokens) Output (per 1M tokens) RPM
DeepInfra $0.06 $0.18 600
Groq $0.11 $0.34 30
Cerebras $0.60 $0.60 30

Same model, three providers, 10x price difference. That's the kind of visibility the registry provides.


What a Model Definition Looks Like

id: deepseek-v3
name: DeepSeek V3
description: DeepSeek's third-generation large language model with mixture-of-experts architecture.
capabilities:
  - chat
  - completion
  - function-calling
  - code-generation
  - reasoning
modalities:
  - text
  - code
context_window: 128000
licensing: other
created_at: "2024-12-01T00:00:00.000Z"
updated_at: "2025-01-15T00:00:00.000Z"

Enter fullscreen mode Exit fullscreen mode

What a Mapping Looks Like

model_id: deepseek-v3
provider_id: together-ai
provider_model_name: deepseek-ai/DeepSeek-V3
pricing:
  input_per_million: 0.90
  output_per_million: 0.90
  currency: USD
rate_limits:
  requests_per_minute: 600
  tokens_per_minute: 1000000
context_window_override: null
available_regions:
  - us-east-1
created_at: "2025-01-01T00:00:00.000Z"
updated_at: "2025-01-01T00:00:00.000Z"

Enter fullscreen mode Exit fullscreen mode


Telemetry

The platform continuously monitors provider health and performance:

Metric Interval Retention
Health status (up/down) Every 5 min 30 days
Time to first token (TTFT) Every 15 min 30 days
Total response time Every 15 min 30 days
Availability (uptime %) Computed Rolling 7 days

When a user queries ranked providers for a model, the API computes a composite score:

Factor Weight
Uptime (7-day rolling) 40%
Median latency (TTFT) 30%
Price per million tokens 20%
Median total response time 10%

This means the API can answer: "Which provider should I use for DeepSeek V3 right now?" — factoring in live performance, not just listed specs.


API

The public API at api.openmodels.run provides model discovery, provider comparison, and telemetry data. Key endpoints:

GET /api/models                        # Search and list models
GET /api/models/:id/providers          # Providers for a model with pricing
GET /api/models/:id/compare            # Side-by-side provider comparison
GET /api/telemetry/ranked/:model_id    # Ranked providers by live performance
GET /api/search                        # Unified search across the registry

Enter fullscreen mode Exit fullscreen mode

Full API reference: docs.openmodels.run/api-reference


Web Interface

The web app at openmodels.run provides:

  • Model search with sort by name, recency, context window, or provider count
  • Provider comparison view (pricing, latency, uptime side-by-side)
  • Command Palette (Cmd+K / Ctrl+K) for instant global search
  • Interactive ecosystem graph (node visualization of model-provider relationships)
  • Popular models section with relevance-based ranking
  • Category navigation by capability, modality, and license
  • Dark/light mode
  • Mobile-responsive layout

Coverage

The registry covers models from OpenAI, Anthropic, Google, Meta, DeepSeek, Mistral, xAI, Alibaba, Microsoft, NVIDIA, Cohere, Moonshot, Zhipu, MiniMax, and others — across 30 inference providers including first-party APIs and third-party platforms like Together AI, Groq, DeepInfra, Fireworks, SambaNova, Nebius and Scaleway.

Full model and provider lists are available in the registry repository.


Contributing

Adding a model, provider, or mapping is a pull request:

  1. Fork the repository
  2. Create a YAML file following the schema
  3. Run python validate_registry.py locally
  4. Open a PR — CI validates automatically
  5. Merge after review

All IDs use kebab-case (deepseek-v3, together-ai). All timestamps are ISO 8601. The schemas enforce structure, so invalid data never enters the registry.


Current Focus

  • Telemetry reliability and probe coverage
  • Provider ranking accuracy
  • OpenAPI specification for the public API
  • Expanding ecosystem coverage (models, providers, regions)

Links


OpenModels is open source. Contributions welcome.