-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy path.env.example
More file actions
24 lines (19 loc) · 1001 Bytes
/
.env.example
File metadata and controls
24 lines (19 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Azure OpenAI credentials and endpoints
AZURE_OPENAI_ENDPOINT="https://example.openai.azure.com/"
OPENAI_API_VERSION="2025-01-01-preview"
AZURE_OPENAI_API_KEY="example_key"
# Service Principal - Azure Identity Default Credentials
AZURE_TENANT_ID="example"
AZURE_CLIENT_ID="example"
AZURE_CLIENT_SECRET="example"
SEARCH_AUTHENTICATION_METHOD="api-search-key"
# Azure AI Search Configurations
# AI Search Endpoint
# This is the URL of the Azure AI Search service. It is used to send requests to the service.
AZURE_AI_SEARCH_ENDPOINT="https://example.search.windows.net"
# AI Search API Key for Read/Write permissions
# This key is used to authenticate requests to the Azure AI Search service.
# It is important to keep this key secure and not expose it in public repositories.
# The key is used in the Authorization header of requests to the Azure AI Search service.
# It is recommended to use environment variables to store sensitive information like API keys.
AZURE_AI_SEARCH_API_KEY="example"