-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.template
More file actions
26 lines (21 loc) · 862 Bytes
/
Copy path.env.template
File metadata and controls
26 lines (21 loc) · 862 Bytes
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
# Environment Variables Template for DocuMind Engineering
# Copy this file to .env and fill in your actual values
# NEVER commit .env files with real credentials to version control
# Azure AI Vision Configuration
AZURE_VISION_ENDPOINT=https://your-region.cognitiveservices.azure.com/
AZURE_VISION_KEY=your-32-character-key-from-azure-ai-foundry
# Azure OpenAI Configuration (Optional)
AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com/
AZURE_OPENAI_KEY=your-openai-key
# Local Service URLs
QDRANT_URL=http://127.0.0.1:6333
RAG_API_URL=http://127.0.0.1:7001
DOTNET_API_URL=http://127.0.0.1:5266
VISION_API_URL=http://127.0.0.1:7002
# Model Configuration
OLLAMA_MODEL=phi3.5:3.8b-mini-instruct-q4_0
EMBED_MODEL=BAAI/bge-m3
RERANK_MODEL=jinaai/jina-reranker-v1-turbo-en
# Feature Flags
FeatureFlags__UseRagFirst=true
FeatureFlags__RagRequired=false