-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
25 lines (20 loc) · 878 Bytes
/
.env.example
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
# OpenAI API Configuration
# Required for LLM functionality using OpenAI's models
OPENAI_API_KEY=your_openai_api_key_here
OPENAI_MODEL=gpt-4 # Model to use (e.g., gpt-4, gpt-3.5-turbo)
# Sourcegraph Configuration
# Required for code indexing and search functionality
SOURCEGRAPH_ENDPOINT=your_sourcegraph_endpoint_here # e.g., https://sourcegraph.example.com
SOURCEGRAPH_TOKEN=your_sourcegraph_token_here
# Application Configuration
# Optional: Set to 'development' or 'production'
APP_ENV=development
# Optional: Set to increase logging verbosity (debug, info, warning, error)
LOG_LEVEL=info
# LLM Configuration
# Optional: Configure LLM behavior
MAX_TOKENS=2048 # Maximum number of tokens in responses
TEMPERATURE=0.7 # Response randomness (0.0 to 1.0)
# API Configuration
# Optional: Configure API behavior
REQUEST_TIMEOUT=30 # Timeout for API requests (in seconds)