mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-14 09:19:40 +00:00
llm router for gpt4 turbo (#237)
This commit is contained in:
parent
52e6205005
commit
3d712cb0fb
2 changed files with 4 additions and 4 deletions
|
@ -34,10 +34,10 @@ class LLMRouterModelConfig:
|
|||
class LLMRouterConfig(LLMConfig):
|
||||
model_list: list[LLMRouterModelConfig]
|
||||
# All three redis parameters are required. Even if there isn't a password, it should be an empty string.
|
||||
redis_host: str
|
||||
redis_port: int
|
||||
redis_password: str
|
||||
main_model_group: str
|
||||
redis_host: str | None = None
|
||||
redis_port: int | None = None
|
||||
redis_password: str | None = None
|
||||
fallback_model_group: str | None = None
|
||||
routing_strategy: Literal[
|
||||
"simple-shuffle",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue