-
The Azure OpenAI example displays configuring multiple models for a single endpoint. (gptel-make-azure
"Azure-1"
:protocol "https"
:host "RESOURCE_NAME.openai.azure.com"
:endpoint
"/openai/deployments/DEPLOYMENT_NAME/completions?api-version=2023-05-15"
:stream t
:models '("gpt-3.5-turbo" "gpt-4")) As far as I know, Azure OpenAI requires to select a model when creating a deployment like the following: Is the example doable? Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
karthink
Dec 26, 2023
Replies: 1 comment 3 replies
-
You're right, you'll need to use one gptel azure backend per deployment, and the |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
goofansu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You're right, you'll need to use one gptel azure backend per deployment, and the
:models
field for the backend from your example above will be set to just'("gpt-35-turbo")
.