mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-06 08:16:43 +00:00
Add "/engines/{model}/chat/completions" to openai_routes
I don't think that this helps with the issue that I'm seeing, but I think it might be nice to have this model listed in the openai_routes list so that it's documented that it's a valid chat_completion route.
This commit is contained in:
parent
d5b2e8e7e8
commit
c427ea3781
1 changed files with 1 additions and 0 deletions
|
|
@ -88,6 +88,7 @@ class LiteLLMRoutes(enum.Enum):
|
|||
]
|
||||
openai_routes: List = [
|
||||
# chat completions
|
||||
"/engines/{model}/chat/completions",
|
||||
"/openai/deployments/{model}/chat/completions",
|
||||
"/chat/completions",
|
||||
"/v1/chat/completions",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue