You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Custom endpoint for Azure OpenAI API. This is useful in case you have a deployment in another region.
219
+
* Custom base url for Azure OpenAI API. This is useful in case you have a deployment in another region.
220
220
* e.g. setting this value to "https://westeurope.api.cognitive.microsoft.com/openai/deployments"
221
221
* will be result in the endpoint URL: https://westeurope.api.cognitive.microsoft.com/openai/deployments/{DeploymentName}/
222
222
*/
223
223
azureOpenAIBasePath?: string;
224
224
225
+
/**
226
+
* Custom endpoint for Azure OpenAI API. This is useful in case you have a deployment in another region.
227
+
* e.g. setting this value to "https://westeurope.api.cognitive.microsoft.com/"
228
+
* will be result in the endpoint URL: https://westeurope.api.cognitive.microsoft.com/openai/deployments/{DeploymentName}/
229
+
*/
230
+
azureOpenAIEndpoint?: string;
231
+
225
232
/**
226
233
* A function that returns an access token for Microsoft Entra (formerly known as Azure Active Directory),
* @param {OpenAIEndpointConfig} config - The configuration object for the (Azure) endpoint.
15
16
*
16
17
* @property {string} config.azureOpenAIApiDeploymentName - The deployment name of Azure OpenAI.
17
-
* @property {string} config.azureOpenAIApiInstanceName - The instance name of Azure OpenAI.
18
+
* @property {string} config.azureOpenAIApiInstanceName - The instance name of Azure OpenAI, e.g. `example-resource`.
18
19
* @property {string} config.azureOpenAIApiKey - The API Key for Azure OpenAI.
19
-
* @property {string} config.azureOpenAIBasePath - The base path for Azure OpenAI.
20
+
* @property {string} config.azureOpenAIBasePath - The base path for Azure OpenAI, e.g. `https://example-resource.azure.openai.com/openai/deployments/`.
20
21
* @property {string} config.baseURL - Some other custom base path URL.
22
+
* @property {string} config.azureOpenAIEndpoint - The endpoint for the Azure OpenAI instance, e.g. `https://example-resource.azure.openai.com/`.
21
23
*
22
24
* The function operates as follows:
23
25
* - If both `azureOpenAIBasePath` and `azureOpenAIApiDeploymentName` (plus `azureOpenAIApiKey`) are provided, it returns an URL combining these two parameters (`${azureOpenAIBasePath}/${azureOpenAIApiDeploymentName}`).
26
+
* - If both `azureOpenAIEndpoint` and `azureOpenAIApiDeploymentName` (plus `azureOpenAIApiKey`) are provided, it returns an URL combining these two parameters (`${azureOpenAIEndpoint}/openai/deployments/${azureOpenAIApiDeploymentName}`).
24
27
* - If `azureOpenAIApiKey` is provided, it checks for `azureOpenAIApiInstanceName` and `azureOpenAIApiDeploymentName` and throws an error if any of these is missing. If both are provided, it generates an URL incorporating these parameters.
25
28
* - If none of the above conditions are met, return any custom `baseURL`.
26
29
* - The function returns the generated URL as a string, or undefined if no custom paths are specified.
@@ -37,6 +40,7 @@ export function getEndpoint(config: OpenAIEndpointConfig) {
37
40
azureOpenAIBasePath,
38
41
baseURL,
39
42
azureADTokenProvider,
43
+
azureOpenAIEndpoint,
40
44
}=config;
41
45
42
46
if(
@@ -46,6 +50,13 @@ export function getEndpoint(config: OpenAIEndpointConfig) {
0 commit comments