-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
44 lines (32 loc) · 1.59 KB
/
Copy path.env.example
File metadata and controls
44 lines (32 loc) · 1.59 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
# DeepSeek
# Cookie string from chat.deepseek.com → DevTools → Application → Cookies
DEEPSEEK_COOKIE="ds_session_id=xxx"
# Authorization header from chat.deepseek.com → DevTools → Network → Request Headers
DEEPSEEK_AUTH_TOKEN="Bearer yyy"
# Gemini
# Full Cookie header from gemini.google.com → DevTools → Network → Request Headers
GEMINI_COOKIE="__Secure-1PSID=xxx; __Secure-1PSIDTS=yyy"
# NotebookLM (path to storage_state.json from `notebooklm login`)
NOTEBOOKLM_STORAGE_PATH=
# Default notebook ID (required - used by all NotebookLM API endpoints)
NOTEBOOKLM_DEFAULT_NOTEBOOK_ID=
# Meta AI
# Full Cookie header from meta.ai → DevTools → Network → Request Headers
META_AI_COOKIE="datr=xxx; abra_sess=yyy; ecto_1_sess=zzz"
# Grok
# Full cookie string from grok.com → DevTools → Application → Cookies
GROK_COOKIE="sso=xxx; sso-rw=yyy; cf_clearance=zzz"
GROK_PROXY_USER_AGENT="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36"
GROK_PROXY_BROWSER="chrome136"
# --- Session & Auth ---
# How long sessions are kept after last use. Set to 0 for no expiry. Default: 7
# SESSION_TTL_DAYS=7
# Maximum number of sessions kept in memory. Default: 5000
# SESSION_MAX_SESSIONS=5000
# HMAC secret used to sign/verify API keys. Change this in production.
# API_KEY_SECRET=unofficial-api-key-secret
# Directory where api_keys.json, sessions.json, and machine_id are stored.
# Defaults to ~/.unofficial-api (or /data inside Docker)
# UNOFFICIAL_API_DATA_DIR=
# Disable API key authentication in development mode (true/false)
DISABLE_AUTH=true