-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
44 lines (34 loc) · 1.01 KB
/
env.example
File metadata and controls
44 lines (34 loc) · 1.01 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
42
43
44
# GitPrompt Configuration Example
# Copy this file to .env and fill in your actual values
# OpenAI Configuration
OPENAI_API_KEY=your_openai_api_key_here
# Anthropic Configuration
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# Cohere Configuration
COHERE_API_KEY=your_cohere_api_key_here
# Pinecone Configuration
PINECONE_API_KEY=your_pinecone_api_key_here
PINECONE_ENVIRONMENT=us-west1-gcp
# Qdrant Configuration
QDRANT_HOST=localhost
QDRANT_PORT=6333
QDRANT_API_KEY=your_qdrant_api_key_here
# Weaviate Configuration
WEAVIATE_HOST=localhost
WEAVIATE_PORT=8080
WEAVIATE_API_KEY=your_weaviate_api_key_here
# ChromaDB Configuration (usually no API key needed for local)
CHROMA_HOST=localhost
CHROMA_PORT=8000
# Deployment Configuration
DEPLOYMENT_SERVER_URL=https://your-indexing-server.com
DEPLOYMENT_API_KEY=your_deployment_api_key_here
DEPLOYMENT_SYNC_INTERVAL=300
# Git Configuration
GIT_BRANCH=main
GIT_CHUNK_SIZE=1000
GIT_CHUNK_OVERLAP=200
# General Configuration
LOG_LEVEL=INFO
MAX_WORKERS=4
CACHE_DIR=.gitprompt_cache