-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
17 lines (13 loc) · 777 Bytes
/
env.example
File metadata and controls
17 lines (13 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# LLM proxy configuration (required for code review)
# Supply these at image/compose build time (e.g. in .env when running docker compose build)
# See README for runtime-override and security options.
# Your LLM proxy base URL (OpenAI-compatible, e.g. https://your-proxy.example.com/v1)
LLM_BASE_URL=https://your-llm-proxy.example.com
# API key for your LLM proxy (sk-KEY; provided at build time as requested)
LLM_API_KEY=sk-key
# Model name to use (e.g. gpt-4, claude-3-sonnet, vertex_ai/claude-sonnet-4-5 or your proxy's model id)
# For llm proxy sometims prefix is needed when use LiteLLM 'litellm_proxy/your/model'
LLM_MODEL=gpt-4
# Project directory to mount (absolute path)
# This is the directory containing code you want to review
PROJECT_DIR=/path/to/your/project