Privacy and advertising choices

Git-Stars uses essential storage for site operation. Optional analytics and ad-measurement scripts stay disabled unless you accept them; partners such as Google may then use cookies or similar identifiers where required. Privacy Policy

LogoGit-Stars
Top StarsTrendingAI AgentsDaily PicksViral ReposInsights
LogoGit-Stars

Discover top GitHub projects with real rankings and AI insights

GitHub
Built withLogo of Git-StarsGit-Stars
Rankings
  • Top Stars
  • Trending
  • AI Agents
  • Daily Picks
  • Explore
Resources
  • Insights
  • Editorial Policy
About
  • About
  • Contact
Legal
  • Privacy Policy
  • Terms of Service
© 2026 Git-Stars. All Rights Reserved.
SW

NVIDIA-NeMo/Switchyard

AI Agent

Switchyard lets LLM applications route traffic across models and providers while preserving native OpenAI and Anthropic API compatibility - enabling flexible model selection, benchmarking, and cost/performance optimization.

1.6k Stars144 Forks100 Open Issues1.6k WatchersRustApache-2.0
LLM Tool
Review Readiness

This repository page has enough original analysis, source evidence, and comparison context to be treated as an indexable Git-Stars review.

100

review score

Indexable review
Decision Snapshot

Problem solved

Switchyard solves the problem of API incompatibility between coding agents (which expect OpenAI or Anthropic APIs) and open-source model servers (which often expose OpenAI-compatible endpoints but not Anthropic's format). It also addresses the need for flexible, multi-model routing with cost/quality trade-offs, enabling A/B testing, tiered routing, and custom routing logic without modifying the agent or model server.

Deployment reality

The available setup signal starts with: uv tool install --python 3.10 "nemo-switchyard[cli]". Treat this as a starting point, then ask Codex or Claude to inspect the README, environment variables, runtime version, and deployment target before production use.

Commercial use

The recorded license is Apache-2.0. This is a useful commercial-use signal, but teams should still verify license text, dependencies, model/API terms, and trademark constraints.

Capability ceiling

Developers can build production-grade LLM gateways that route traffic across models (e.g., vLLM, NVIDIA NIM, Ollama) with protocol translation, implement intelligent routing strategies like LLM-as-classifier or signal-driven stage routing, and embed routing algorithms directly into their own Rust applications. Real-world use cases include running Claude Code or Codex against open-source models, cost-optimized multi-tier serving, and benchmarking different models. The ceiling is high: with custom algorithms and library embedding, it can serve as the core routing engine for any LLM-based system.

Source and compliance noteLast synced: Aug 16, 2026

Git-Stars is independent and not affiliated with GitHub or this project. Analysis may be AI-assisted and based on public repository metadata plus short README-derived summaries. We do not mirror full README files, docs, issues, or social comments.

Original GitHub sourceMethodologyEditorial Policy
Editorial Evaluation

NVIDIA-NeMo/Switchyard is tracked as a Rust project in the LLM Tool area. This evaluation combines public GitHub metadata, category signals, short source summaries, and Git-Stars editorial rules rather than copying project documentation.

Momentum check: the repository has 1.6k total stars, with +0 today, +1.3k this week, and +0 this month. These growth windows help distinguish durable adoption from short-lived visibility spikes.

Maintenance check: current activity is Active; the latest push was 8 days ago, and the open issue queue is 100, about 6.31% of total stars. Treat this as an adoption signal, not a substitute for engineering due diligence.

Adoption check: 144 forks and 1.6k watchers suggest how often the project is reused or followed. License signal: Apache-2.0. Always verify license compatibility before commercial or internal use.

Practical fit: this project is most relevant when you need Rust teams evaluating ecosystem-native tooling. Be cautious when you need a legal review, security audit, or production SLA.

Source check: Git-Stars currently has 2 explicit source reference(s) for this report and a recent growth signal of 1.3k. Follow the original GitHub repository for final install, security, and release information.

Evidence Checklist

Analysis

Ready

Original problem, capability, and verdict guidance are available.

Sources

Ready

Repository metadata and README/source references are attached.

License

Ready

Apache-2.0 is recorded for review.

Maintenance

Ready

Recent activity is visible in repository metadata.

Alternatives

Ready

Enough nearby projects exist for comparison.

Best For
  • Rust teams evaluating ecosystem-native tooling
  • use cases where recent maintenance matters
Avoid When
  • you need a legal review, security audit, or production SLA
Adoption Signals

Momentum

1.6k Stars

Reuse

144 Forks

Attention

1.6k Watchers

Maintenance

active

License

Apache-2.0

Open issues

100

Overview

Switchyard is a Rust proxy and library for LLM traffic that routes requests across providers, translates between OpenAI and Anthropic APIs, records operational metrics, and provides typed, composable routing algorithms. It enables coding agents like Claude Code or Codex to use open-source models by translating between API formats.

Key Features

- Protocol Translation: convert between OpenAI Chat, Anthropic Messages, and OpenAI Responses formats - Multi-Backend Routing: random routing, LLM-as-classifier routing, signal-driven stage-router, or custom algorithms - Operational Metrics: Prometheus metrics covering requests, errors, latency, tokens, and routing overhead

Tool Positioning

LLM Tool

Libraries and tools for LLM apps, RAG, prompts, and evals

Quick Start
uv tool install --python 3.10 "nemo-switchyard[cli]"
View on GitHub
Project Activity

73

Health Score

Active

Commit Activity

May 19, 2026

Created

Aug 14, 2026

Last push

Source Trail

GitHub repository metadata

metadata

GitHub README

readme_summary

Star History

+123

Today's growth

+767

7-day growth

+767

30-day growth

Aug 13, 2026Aug 16, 2026
Community Health
144

Forks

100

Open

1.6k

Watchers

Owner
SW

NVIDIA-NeMo

GitHub profile
Topics & Language
Rust
Ecosystem & Usage
GitHub Repository
Alternatives & Comparison

affaan-m/ECC

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

240k

NousResearch/hermes-agent

The agent that grows with you

231k

multica-ai/andrej-karpathy-skills

A single CLAUDE.md file to improve Claude Code behavior, derived from Andrej Karpathy's observations on LLM coding pitfalls.

203k

Significant-Gravitas/AutoGPT

AutoGPT is the vision of accessible AI for everyone, to use and to build on. Our mission is to provide the tools, so that you can focus on what matters.

187k

avelino/awesome-go

A curated list of awesome Go frameworks, libraries and software

181k
License
Apache-2.0
CreatedMay 19, 2026
Last pushAug 14, 2026
Last syncedAug 16, 2026
Repository Standards

✓

License

✓

Forked

✓ Active

Maintained

AI AnalysisAnalyzed by Git-Stars

Problem Solved

Switchyard solves the problem of API incompatibility between coding agents (which expect OpenAI or Anthropic APIs) and open-source model servers (which often expose OpenAI-compatible endpoints but not Anthropic's format). It also addresses the need for flexible, multi-model routing with cost/quality trade-offs, enabling A/B testing, tiered routing, and custom routing logic without modifying the agent or model server.

Capabilities

Developers can build production-grade LLM gateways that route traffic across models (e.g., vLLM, NVIDIA NIM, Ollama) with protocol translation, implement intelligent routing strategies like LLM-as-classifier or signal-driven stage routing, and embed routing algorithms directly into their own Rust applications. Real-world use cases include running Claude Code or Codex against open-source models, cost-optimized multi-tier serving, and benchmarking different models. The ceiling is high: with custom algorithms and library embedding, it can serve as the core routing engine for any LLM-based system.

Bottom Line

Switchyard is ideal for developers and organizations that want to use open-source models with existing coding agents or need a flexible, programmable routing layer for LLM traffic. It should be avoided by those seeking production-ready stability, as it is pre-alpha and explicitly not for production use. The key trade-off is its powerful flexibility and protocol translation capabilities versus its immaturity and rapidly changing API.

Full AI Analysis