-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
46 lines (41 loc) · 1.98 KB
/
.env.example
File metadata and controls
46 lines (41 loc) · 1.98 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
45
46
# Copy this file to `.env`.
# Leave ONLY one provider template active.
# Delete or keep commented the templates you will not use.
# Do not mix provider, API key, model, or base URL from different providers.
# Shared settings used by all providers.
AI_MAX_OUTPUT_TOKENS="10000"
AI_TEMPERATURE="0.7"
AI_TOP_P="0.95"
CODING_ENVIRONMENT="development"
# OpenRouter-only headers.
# You can keep these defaults if you use OpenRouter locally.
AI_OPENROUTER_HTTP_REFERER="http://localhost:4321"
AI_OPENROUTER_TITLE="CV Optimizer"
# =====================================================================
# TEMPLATE 1: OPENAI
# Uncomment (delete "#") this block if you want to use OpenAI.
# Model examples: gpt-4o-mini, gpt-4.1-mini
# =====================================================================
# AI_PROVIDER="openai"
# AI_PROVIDER_API_KEY="PASTE_YOUR_OPENAI_API_KEY_HERE"
# AI_PROVIDER_MODEL="PASTE_OPENAI_MODEL_NAME_HERE"
# AI_PROVIDER_BASE_URL="https://api.openai.com/v1"
# =====================================================================
# TEMPLATE 2: GEMINI
# Uncomment (delete "#") this block if you want to use Gemini.
# Model examples: gemini-2.5-flash, gemini-2.5-pro
# This project uses Gemini through Google's OpenAI-compatible endpoint.
# =====================================================================
# AI_PROVIDER="gemini"
# AI_PROVIDER_API_KEY="PASTE_YOUR_GEMINI_API_KEY_HERE"
# AI_PROVIDER_MODEL="PASTE_GEMINI_MODEL_NAME_HERE"
# AI_PROVIDER_BASE_URL="https://generativelanguage.googleapis.com/v1beta/openai/"
# =====================================================================
# TEMPLATE 3: OPENROUTER
# Uncomment (delete "#") this block if you want to use OpenRouter.
# Model examples: openai/gpt-4o-mini, qwen/qwen3.6-plus:free
# =====================================================================
# AI_PROVIDER="openrouter"
# AI_PROVIDER_API_KEY="PASTE_YOUR_OPENROUTER_API_KEY_HERE"
# AI_PROVIDER_MODEL="PASTE_OPENROUTER_MODEL_NAME_HERE"
# AI_PROVIDER_BASE_URL="https://openrouter.ai/api/v1"