-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
45 lines (35 loc) · 2.29 KB
/
Copy path.env.example
File metadata and controls
45 lines (35 loc) · 2.29 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
# OfferGuide environment template — copy to .env and fill in.
# Run `uv run python scripts/doctor.py` to verify after editing.
# ─── Required ──────────────────────────────────────────────────────
# LLM API key. Get a free-tier DeepSeek key at https://platform.deepseek.com/api_keys.
# (Other OpenAI-compatible providers also work — set OFFERGUIDE_LLM_BASE_URL.)
OFFERGUIDE_LLM_API_KEY="sk-..."
# Your master resume PDF. OfferGuide extracts its text and renders applications
# through the one confirmed Typst template.
OFFERGUIDE_RESUME_PDF="/path/to/your/简历.pdf"
# ─── Strongly recommended ─────────────────────────────────────────
# Tavily key for web_search / discover_jobs. Free tier 1000 calls/mo.
# Without it, agent can still help with pasted JDs but can't proactively search.
TAVILY_API_KEY="tvly-..."
# ─── Optional ─────────────────────────────────────────────────────
# Override the text editing model.
# OFFERGUIDE_LLM_MODEL="deepseek-chat"
# OFFERGUIDE_LLM_BASE_URL="https://api.deepseek.com"
# Optionally use a different model for interview research. It follows
# OFFERGUIDE_LLM_MODEL by default so one slow provider route cannot stall the chain.
# OFFERGUIDE_INTERVIEW_RESEARCH_MODEL="deepseek-v4-pro"
# Optional but required for automatic page review. The endpoint must accept
# OpenAI-compatible image_url content; the text-only DeepSeek endpoint does not.
# OFFERGUIDE_VISION_API_KEY="sk-..."
# OFFERGUIDE_VISION_BASE_URL="https://api.openai.com/v1"
# OFFERGUIDE_VISION_MODEL="gpt-4.1-mini"
# Override DB / worldview / port locations
# OFFERGUIDE_DB=".offerguide/store.db"
# OFFERGUIDE_WORLDVIEW_DIR=".offerguide/worldview"
# OFFERGUIDE_PORT=8000
# OFFERGUIDE_NO_BACKGROUND_AGENTS=1 # 关闭定期找岗刷新;手动运行仍可用
# Notification channels (optional — agent uses these to push you findings)
# OFFERGUIDE_NOTIFY="console" # console|feishu|telegram
# FEISHU_WEBHOOK_URL="https://open.feishu.cn/open-apis/bot/v2/hook/..."
# TELEGRAM_BOT_TOKEN="..."
# TELEGRAM_CHAT_ID="..."