@scotthamilton77/sidekick 0.1.19 → 0.1.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/sidekick/defaults/core.defaults.yaml +2 -2
- package/assets/sidekick/defaults/llm.defaults.yaml +7 -3
- package/dist/bin.js +880 -323
- package/dist/daemon.js +586 -264
- package/package.json +2 -2
|
@@ -12,8 +12,8 @@ logging:
|
|
|
12
12
|
consoleEnabled: false
|
|
13
13
|
# Log rotation settings
|
|
14
14
|
rotation:
|
|
15
|
-
maxSizeBytes:
|
|
16
|
-
maxFiles:
|
|
15
|
+
maxSizeBytes: 2097152 # 2MB per file (ephemeral debug window)
|
|
16
|
+
maxFiles: 2 # keep 2 rotated files (4MB total cap)
|
|
17
17
|
# Per-component log level overrides (uncomment to enable)
|
|
18
18
|
# components:
|
|
19
19
|
# reminders: debug
|
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
# │ OpenRouter │ deepseek/deepseek-v3.2 │ $0.25 │ $0.38 │ 164k │ │
|
|
17
17
|
# │ OpenRouter │ google/gemma-3-4b-it │ $0.02 │ $0.07 │ 32k │ │
|
|
18
18
|
# │ OpenRouter │ google/gemma-3-27b-it │ $0.09 │ $0.16 │ 128k │ │
|
|
19
|
-
# │ OpenRouter │ google/gemini-2.0-flash-lite-001 │ $0.08 │ $0.30 │ 1000k │ max out: 8k │
|
|
20
19
|
# │ OpenRouter │ google/gemini-2.5-flash-lite │ $0.10 │ $0.40 │ 1000k │ │
|
|
21
20
|
# │ OpenRouter │ google/gemini-3-flash-preview │ $0.50 │ $0.00 │ 1000k │ │
|
|
22
21
|
# │ OpenRouter │ mistralai/mistral-small-creative │ $0.10 │ $0.30 │ 131k │ │
|
|
@@ -66,7 +65,7 @@ profiles:
|
|
|
66
65
|
# Fast, cheap profile for simple tasks
|
|
67
66
|
fast-lite:
|
|
68
67
|
provider: openrouter
|
|
69
|
-
model: google/gemini-2.
|
|
68
|
+
model: google/gemini-2.5-flash-lite
|
|
70
69
|
temperature: 0
|
|
71
70
|
maxTokens: 1000
|
|
72
71
|
timeout: 15
|
|
@@ -94,7 +93,12 @@ profiles:
|
|
|
94
93
|
fallbackProfiles:
|
|
95
94
|
cheap-fallback:
|
|
96
95
|
provider: openrouter
|
|
97
|
-
|
|
96
|
+
# Different vendor from `fast-lite` for genuine provider diversity (the
|
|
97
|
+
# Gemini family shares a self-stop pathology — see sidekick-eo4z, eva0).
|
|
98
|
+
# `reasoning: false` is required because grok-4.1-fast defaults reasoning
|
|
99
|
+
# ON (~9s avg latency); fast-fallback semantics need it OFF.
|
|
100
|
+
model: x-ai/grok-4.1-fast
|
|
101
|
+
reasoning: false
|
|
98
102
|
temperature: 0
|
|
99
103
|
maxTokens: 1000
|
|
100
104
|
timeout: 30
|