-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (29 loc) · 757 Bytes
/
.env.example
File metadata and controls
37 lines (29 loc) · 757 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
27
28
29
30
31
32
33
34
35
36
37
# API Keys
OPENAI_API_KEY=your_openai_api_key_here
PINECONE_API_KEY=your_pinecone_api_key_here
PINECONE_ENVIRONMENT=your_pinecone_environment_here
# Optional API Keys
ANTHROPIC_API_KEY=your_anthropic_api_key_here
COHERE_API_KEY=your_cohere_api_key_here
# Database Configuration
PINECONE_INDEX_NAME=doc-assistant
REDIS_URL=redis://localhost:6379
# Application Settings
APP_NAME=AI Documentation Assistant
APP_VERSION=1.0.0
DEBUG=False
# LLM Configuration
LLM_MODEL=gpt-4
LLM_TEMPERATURE=0.2
LLM_MAX_TOKENS=2000
# Embedding Configuration
EMBEDDING_MODEL=text-embedding-ada-002
EMBEDDING_DIMENSION=1536
# Chunking Configuration
CHUNK_SIZE=1000
CHUNK_OVERLAP=200
# API Configuration
API_HOST=0.0.0.0
API_PORT=8000
# UI Configuration
STREAMLIT_PORT=8501