-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (28 loc) · 1.12 KB
/
Copy path.env.example
File metadata and controls
40 lines (28 loc) · 1.12 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
# Model (default: github-copilot/gpt-4.1)
AICC_MODEL=github-copilot/gpt-4.1
# Fallback model alias read by OpenCode
OPENCODE_FREE_MODEL=
# Privacy level for diff content sent to the model: low | high (default: low)
AICC_PRIVACY=low
# Commit message style: standard | conventional | gitmoji (default: standard)
AICC_STYLE=standard
# Number of recent commits sampled for style profiling (default: 120)
AICC_STYLE_SAMPLES=120
# Max output tokens for model response (default: 512)
AICC_MAX_TOKENS=512
# Max lines per file included in diff summary (default: 1000)
AICC_MAX_FILE_LINES=1000
# Skip confirmation prompt and auto-select top commit (default: false)
AICC_YES=false
# Verbose config loading logs (default: false)
AICC_VERBOSE=false
# Disable all terminal animations (default: false)
AICC_NO_ANIMATION=false
# Disable spinner animation only (default: false)
AICC_NO_SPINNER_ANIM=false
# Debug provider internals — logs raw model response (default: false)
AICC_DEBUG=false
# Use mock provider instead of real model (set to: mock)
AICC_DEBUG_PROVIDER=
# Model call timeout in milliseconds (default: 120000)
AICC_MODEL_TIMEOUT_MS=120000