This repository was archived by the owner on Aug 16, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +32
-4
lines changed Expand file tree Collapse file tree 4 files changed +32
-4
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,14 @@ AZURE_O1_DEPLOYMENT_NAME=<o1-deployment-name>
7070AZURE_O1MINI_DEPLOYMENT_NAME=[< o1-mini-deployment-name> ]
7171
7272# OAuth2 Configuration (optional)
73- # This will use client credentials grant flow to get an access token, and use that token in headers while making requests to AZURE_OPENAI_ENDPOINT.
73+ # This will use client_credentials flow to get an access token,
74+ # and use it to make requests to the LLM provider.
75+ # It is expected that the response from the OAuth2 server will be in the format
76+ # {
77+ # "access_token": "<access-token>",
78+ # "token_type": "Bearer",
79+ # "expires_in": 3599,
80+ # }
7481OAUTH2_ENDPOINT=[< endpoint> ]
7582OAUTH2_CLIENT_ID=[< client-id> ]
7683OAUTH2_CLIENT_SECRET=[< client-secret> ]
Original file line number Diff line number Diff line change @@ -62,7 +62,14 @@ AZURE_O1_DEPLOYMENT_NAME=<o1-deployment-name>
6262AZURE_O1MINI_DEPLOYMENT_NAME=[< o1-mini-deployment-name> ]
6363
6464# OAuth2 Configuration (optional)
65- # This will use client credentials grant flow to get an access token, and use that token in headers while making requests to AZURE_OPENAI_ENDPOINT.
65+ # This will use client_credentials flow to get an access token,
66+ # and use it to make requests to the LLM provider.
67+ # It is expected that the response from the OAuth2 server will be in the format
68+ # {
69+ # "access_token": "<access-token>",
70+ # "token_type": "Bearer",
71+ # "expires_in": 3599,
72+ # }
6673OAUTH2_ENDPOINT=[< endpoint> ]
6774OAUTH2_CLIENT_ID=[< client-id> ]
6875OAUTH2_CLIENT_SECRET=[< client-secret> ]
Original file line number Diff line number Diff line change @@ -73,7 +73,14 @@ AZURE_O1_DEPLOYMENT_NAME=<o1-deployment-name>
7373AZURE_O1MINI_DEPLOYMENT_NAME=[< o1-mini-deployment-name> ]
7474
7575# OAuth2 Configuration (optional)
76- # This will use client credentials grant flow to get an access token, and use that token in headers while making requests to AZURE_OPENAI_ENDPOINT.
76+ # This will use client_credentials flow to get an access token,
77+ # and use it to make requests to the LLM provider.
78+ # It is expected that the response from the OAuth2 server will be in the format
79+ # {
80+ # "access_token": "<access-token>",
81+ # "token_type": "Bearer",
82+ # "expires_in": 3599,
83+ # }
7784OAUTH2_ENDPOINT=[< endpoint> ]
7885OAUTH2_CLIENT_ID=[< client-id> ]
7986OAUTH2_CLIENT_SECRET=[< client-secret> ]
Original file line number Diff line number Diff line change @@ -68,7 +68,14 @@ AZURE_O1_DEPLOYMENT_NAME=<o1-deployment-name>
6868AZURE_O1MINI_DEPLOYMENT_NAME=[< o1-mini-deployment-name> ]
6969
7070# OAuth2 Configuration (optional)
71- # This will use client credentials grant flow to get an access token, and use that token in headers while making requests to AZURE_OPENAI_ENDPOINT.
71+ # This will use client_credentials flow to get an access token,
72+ # and use it to make requests to the LLM provider.
73+ # It is expected that the response from the OAuth2 server will be in the format
74+ # {
75+ # "access_token": "<access-token>",
76+ # "token_type": "Bearer",
77+ # "expires_in": 3599,
78+ # }
7279OAUTH2_ENDPOINT=[< endpoint> ]
7380OAUTH2_CLIENT_ID=[< client-id> ]
7481OAUTH2_CLIENT_SECRET=[< client-secret> ]
You can’t perform that action at this time.
0 commit comments