diff --git a/docs/self-hosted/azure-devops.md b/docs/self-hosted/azure-devops.md index 858dd3b5..48d8df42 100644 --- a/docs/self-hosted/azure-devops.md +++ b/docs/self-hosted/azure-devops.md @@ -70,7 +70,14 @@ AZURE_O1_DEPLOYMENT_NAME= AZURE_O1MINI_DEPLOYMENT_NAME=[] # OAuth2 Configuration (optional) -# 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. +# This will use client_credentials flow to get an access token, +# and use it to make requests to the LLM provider. +# It is expected that the response from the OAuth2 server will be in the format +# { +# "access_token": "", +# "token_type": "Bearer", +# "expires_in": 3599, +# } OAUTH2_ENDPOINT=[] OAUTH2_CLIENT_ID=[] OAUTH2_CLIENT_SECRET=[] diff --git a/docs/self-hosted/bitbucket.md b/docs/self-hosted/bitbucket.md index 746727a8..f81709c3 100644 --- a/docs/self-hosted/bitbucket.md +++ b/docs/self-hosted/bitbucket.md @@ -62,7 +62,14 @@ AZURE_O1_DEPLOYMENT_NAME= AZURE_O1MINI_DEPLOYMENT_NAME=[] # OAuth2 Configuration (optional) -# 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. +# This will use client_credentials flow to get an access token, +# and use it to make requests to the LLM provider. +# It is expected that the response from the OAuth2 server will be in the format +# { +# "access_token": "", +# "token_type": "Bearer", +# "expires_in": 3599, +# } OAUTH2_ENDPOINT=[] OAUTH2_CLIENT_ID=[] OAUTH2_CLIENT_SECRET=[] diff --git a/docs/self-hosted/github.md b/docs/self-hosted/github.md index 821f951f..18cef2b1 100644 --- a/docs/self-hosted/github.md +++ b/docs/self-hosted/github.md @@ -73,7 +73,14 @@ AZURE_O1_DEPLOYMENT_NAME= AZURE_O1MINI_DEPLOYMENT_NAME=[] # OAuth2 Configuration (optional) -# 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. +# This will use client_credentials flow to get an access token, +# and use it to make requests to the LLM provider. +# It is expected that the response from the OAuth2 server will be in the format +# { +# "access_token": "", +# "token_type": "Bearer", +# "expires_in": 3599, +# } OAUTH2_ENDPOINT=[] OAUTH2_CLIENT_ID=[] OAUTH2_CLIENT_SECRET=[] diff --git a/docs/self-hosted/gitlab.md b/docs/self-hosted/gitlab.md index eabe410e..654cef40 100644 --- a/docs/self-hosted/gitlab.md +++ b/docs/self-hosted/gitlab.md @@ -68,7 +68,14 @@ AZURE_O1_DEPLOYMENT_NAME= AZURE_O1MINI_DEPLOYMENT_NAME=[] # OAuth2 Configuration (optional) -# 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. +# This will use client_credentials flow to get an access token, +# and use it to make requests to the LLM provider. +# It is expected that the response from the OAuth2 server will be in the format +# { +# "access_token": "", +# "token_type": "Bearer", +# "expires_in": 3599, +# } OAUTH2_ENDPOINT=[] OAUTH2_CLIENT_ID=[] OAUTH2_CLIENT_SECRET=[]