-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (32 loc) · 1.43 KB
/
.env.example
File metadata and controls
38 lines (32 loc) · 1.43 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
ACADEMICAI_BASE_URL=https://api.example.com/
ACADEMICAI_CLIENT_ID=your-client-id-here
ACADEMICAI_CLIENT_SECRET=your-client-secret-here
ACADEMICAI_PROXY_API_KEY=replace-with-strong-key
TENANT_ID=example
# Optional proxy settings
ACADEMICAI_DEBUG_DUMPS=false
ACADEMICAI_RETRY_MAX=2
ACADEMICAI_RETRY_BASE_MS=300
# Defaults applied only when request does not provide these fields
ACADEMICAI_DEFAULT_CHAT_TEMPERATURE=0.6
ACADEMICAI_DEFAULT_CHAT_VERBOSITY=medium
ACADEMICAI_DEFAULT_TOOL_TEMPERATURE=0.1
ACADEMICAI_DEFAULT_TOOL_VERBOSITY=low
ACADEMICAI_DEFAULT_TOOL_REASONING_EFFORT=low
# Optional second pass for human channels: structured output -> natural final text
ACADEMICAI_ENABLE_HUMANIZATION_PASS=false
ACADEMICAI_HUMANIZATION_MODEL=
ACADEMICAI_HUMANIZATION_TEMPERATURE=0.2
# Optional skill snippet retrieval/injection to improve tool-call reliability
ACADEMICAI_ENABLE_SKILL_SNIPPETS=false
ACADEMICAI_SKILL_SNIPPETS_FILE=./data/skill_snippets.json
ACADEMICAI_SKILL_SNIPPETS_MAX=1
# Optional self-learning updates for skill_snippets.json (variant 1, keyword-based)
ACADEMICAI_ENABLE_AUTO_SKILL_LEARNING=false
ACADEMICAI_AUTO_SKILL_TOPICS_PER_CALL=6
ACADEMICAI_AUTO_SKILL_MIN_TOPIC_LEN=4
# Optional cost monitoring (OFF by default; requires AcademicAI permission ACCESS_API_MONITOR_CREDIT)
ACADEMICAI_ENABLE_COST_MONITORING=false
ACADEMICAI_COST_CACHE_FILE=./data/cost_cache.json
ACADEMICAI_COST_CACHE_TTL_SECONDS=600
ACADEMICAI_COST_REFRESH_TIMEOUT_SECONDS=8