-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.local.example
More file actions
38 lines (35 loc) · 2.55 KB
/
Copy path.env.local.example
File metadata and controls
38 lines (35 loc) · 2.55 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
# ─── JobCraft — Environment Variables ──────────────────────────────────────
# Copy this file to .env.local and fill in your values.
# .env.local is git-ignored and will NEVER be committed.
# ══════════════════════════════════════════════════════════════════════════════
# OPTION A — Anthropic (Recommended quality)
# ══════════════════════════════════════════════════════════════════════════════
# Get key: https://console.anthropic.com → API Keys → Create Key
# Cost: ~$0.003 per job evaluation. Free $5 credit on sign-up (~1,500 evals).
#
AI_PROVIDER=anthropic
ANTHROPIC_API_KEY=sk-ant-api03-REPLACE_WITH_YOUR_KEY
# ══════════════════════════════════════════════════════════════════════════════
# OPTION B — OpenRouter (Free tier available)
# ══════════════════════════════════════════════════════════════════════════════
# Get key: https://openrouter.ai → Sign in → Keys → Create Key
# Free models are rate-limited: ~20 req/min, 200 req/day.
# Quality is lower than Claude for structured JSON output.
#
# AI_PROVIDER=openrouter
# OPENROUTER_API_KEY=sk-or-v1-REPLACE_WITH_YOUR_KEY
#
# Best free model (default if not set):
# OPENROUTER_MODEL=meta-llama/llama-3.3-70b-instruct:free
#
# Other free options (weaker JSON output):
# OPENROUTER_MODEL=meta-llama/llama-3.1-8b-instruct:free
# OPENROUTER_MODEL=google/gemma-2-9b-it:free
# OPENROUTER_MODEL=mistralai/mistral-7b-instruct:free
#
# Paid options on OpenRouter (cheap, better quality):
# OPENROUTER_MODEL=anthropic/claude-haiku-4-5 (~$0.001/eval)
# OPENROUTER_MODEL=openai/gpt-4o-mini (~$0.001/eval)
# OPENROUTER_MODEL=anthropic/claude-sonnet-4-6 (~$0.003/eval)
# ── Optional ──────────────────────────────────────────────────────────────────
NODE_ENV=development