@ashx-j/lunr 0.2.3 → 0.2.5
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/dist/builtin-extensions/ashxj-thinking.d.ts +1 -0
- package/dist/builtin-extensions/ashxj-thinking.d.ts.map +1 -1
- package/dist/builtin-extensions/ashxj-thinking.js +31 -18
- package/dist/builtin-extensions/ashxj-thinking.js.map +1 -1
- package/dist/builtin-extensions/ashxj-tui.d.ts +4 -0
- package/dist/builtin-extensions/ashxj-tui.d.ts.map +1 -1
- package/dist/builtin-extensions/ashxj-tui.js +53 -15
- package/dist/builtin-extensions/ashxj-tui.js.map +1 -1
- package/dist/catalog/models.json +1 -1
- package/dist/catalog/providers/openrouter.json +1 -1
- package/dist/catalog/publication.json +2 -2
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +2 -2
- package/dist/core/agent-session.js.map +1 -1
- package/dist/gateway/commands.d.ts.map +1 -1
- package/dist/gateway/commands.js +1 -0
- package/dist/gateway/commands.js.map +1 -1
- package/dist/modes/interactive/components/settings-selector.d.ts.map +1 -1
- package/dist/modes/interactive/components/settings-selector.js +5 -5
- package/dist/modes/interactive/components/settings-selector.js.map +1 -1
- package/dist/modes/interactive/components/thinking-selector.d.ts.map +1 -1
- package/dist/modes/interactive/components/thinking-selector.js +5 -5
- package/dist/modes/interactive/components/thinking-selector.js.map +1 -1
- package/dist/modes/interactive/theme/moon.json +1 -1
- package/docs/keybindings.md +1 -1
- package/docs/quickstart.md +1 -1
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/gondolin/package-lock.json +2 -2
- package/examples/extensions/gondolin/package.json +1 -1
- package/examples/extensions/sandbox/package-lock.json +2 -2
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +1 -1
- package/package.json +4 -4
|
@@ -73,8 +73,8 @@ function estimateMessagesTokens(messages) {
|
|
|
73
73
|
// ============================================================================
|
|
74
74
|
// Constants
|
|
75
75
|
// ============================================================================
|
|
76
|
-
/** Standard thinking levels */
|
|
77
|
-
const THINKING_LEVELS = ["off", "minimal", "low", "medium", "high"];
|
|
76
|
+
/** Standard thinking levels (no-model fallback). Live models use getSupportedThinkingLevels. */
|
|
77
|
+
const THINKING_LEVELS = ["off", "minimal", "low", "medium", "high", "xhigh", "max"];
|
|
78
78
|
// ============================================================================
|
|
79
79
|
// AgentSession Class
|
|
80
80
|
// ============================================================================
|