Skip to content
Binary file not shown.
14 changes: 14 additions & 0 deletions router_inference/config/chuzom-v3.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"pipeline_params": {
"router_name": "chuzom-v3",
"router_cls_name": "ChuzomV3Router",
"models": [
"google/gemini-3.1-flash-lite",
"deepseek/deepseek-v4-flash",
"qwen/qwen3-235b-a22b-2507",
"qwen/qwen3-next-80b-a3b-instruct"
],
"default_model": "google/gemini-3.1-flash-lite",
"description": "Chuzom v3.0 clean 3-gate ensemble router. Gate 0 (RA-tainted proxy classifier) removed. Routing via BGE-small centroid similarity (external-data centroids), content-intrinsic structural heuristics, and optional LLM judge. All training data is external to RouterArena."
}
}
3,782 changes: 3,782 additions & 0 deletions router_inference/predictions/chuzom-v3-robustness.json

Large diffs are not rendered by default.

75,602 changes: 75,602 additions & 0 deletions router_inference/predictions/chuzom-v3.json

Large diffs are not rendered by default.

11 changes: 10 additions & 1 deletion router_inference/router/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,13 @@
from router_inference.router.auto_router import auto_router
from router_inference.router.llm_router import LLMRouter

__all__ = ["BaseRouter", "ExampleRouter", "VLLMSR", "auto_router", "LLMRouter"]
from router_inference.router.chuzom_v3_router import ChuzomV3Router

__all__ = [
"BaseRouter",
"ExampleRouter",
"VLLMSR",
"auto_router",
"LLMRouter",
"ChuzomV3Router",
]
663 changes: 663 additions & 0 deletions router_inference/router/chuzom_v3_router.py

Large diffs are not rendered by default.

Loading
Loading