Skip to content

Commit 73d619d

Browse files
committed
edits
1 parent f0934d4 commit 73d619d

File tree

1 file changed

+6
-6
lines changed
  • articles/ai-services/openai/includes/language-overview

1 file changed

+6
-6
lines changed

articles/ai-services/openai/includes/language-overview/javascript.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,25 +32,25 @@ The `AzureClientOptions` object is used to configure the API client for interfac
3232
**Properties**:
3333

3434
* azureADTokenProvider:
35-
Type: (() => Promise<string>) | undefined
35+
Type: `(() => Promise<string>) | undefined`
3636
Default: undefined
3737
Description: A function that returns an access token for Microsoft Entra (formerly known as Azure Active Directory), which will be invoked on every request.
3838
* apiKey:
39-
Type: string | undefined
39+
Type: `string | undefined`
4040
Default: process.env['AZURE_OPENAI_API_KEY']
4141
Description: Your API key for authenticating requests.
4242
* apiVersion:
43-
Type: string | undefined
43+
Type: `string | undefined`
4444
Default: process.env['OPENAI_API_VERSION']
4545
Description: Specifies the API version to use.
4646
* deployment:
47-
Type: string | undefined
47+
Type: `string | undefined`
4848
Default: undefined
4949
Description: A model deployment. If given, sets the base client URL to include /deployments/{deployment}. Note: this means you won't be able to use non-deployment endpoints. Not supported with Assistants APIs.
5050
* endpoint:
51-
Type: string | undefined
51+
Type: `string | undefined`
5252
Default: undefined
53-
Description: Your Azure endpoint, including the resource, e.g. https://example-resource.azure.openai.com/.
53+
Description: Your Azure OpenAI endpoint.
5454

5555
## Authentication
5656

0 commit comments

Comments
 (0)