New LLM Router strategy (#199)

This commit is contained in:
Kerem Yilmaz
2024-04-16 14:52:15 -07:00
committed by GitHub
parent eab98426f2
commit 02cf2a1e87
3 changed files with 6 additions and 5 deletions

View File

@@ -43,8 +43,9 @@ class LLMRouterConfig(LLMConfig):
"simple-shuffle",
"least-busy",
"usage-based-routing",
"usage-based-routing-v2",
"latency-based-routing",
] = "usage-based-routing"
] = "usage-based-routing-v2"
num_retries: int = 2
retry_delay_seconds: int = 15
set_verbose: bool = False