-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
41 lines (29 loc) · 1.6 KB
/
.env.example
File metadata and controls
41 lines (29 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Universal Assist Environment Configuration
# Copy this file to .env and fill in your credentials
# ============================================================================
# VECTORSTORE CONFIGURATION
# ============================================================================
# Choose your vectorstore backend: qdrant, pgvector, azure_ai_search
VECTORSTORE_BACKEND=azure_ai_search
# ============================================================================
# AZURE OPENAI CONFIGURATION
# ============================================================================
# Required: Your Azure OpenAI endpoint URL
AZURE_OPENAI_ENDPOINT=https://your-resource-name.openai.azure.com
# Required: Your Azure OpenAI API key
AZURE_OPENAI_API_KEY=your-api-key-here
# Optional: API version (defaults to 2024-02-15-preview)
AZURE_OPENAI_API_VERSION=2024-02-15-preview
# Optional: Deployment name (defaults to gpt-4)
AZURE_OPENAI_DEPLOYMENT_NAME=gpt-4.1
# Optional: Deployment name for embeddings (defaults to text-embedding-3-small)
AZURE_OPENAI_EMBEDDING_DEPLOYMENT=text-embedding-3-small
# Note: When these environment variables are set, the "gpt4.1-chat" model
# will be available in the /v1/models endpoint and can be used for chat completions.
# ============================================================================
# AZURE AI SEARCH CONFIGURATION
# ============================================================================
# Azure AI Search service endpoint
# AZURE_AI_SEARCH_ENDPOINT=https://your-service.search.windows.net
# Azure AI Search API key
# AZURE_AI_SEARCH_API_KEY=your_azure_search_api_key_here