@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.
Files changed (36) hide show
  1. package/dist/builtin-extensions/ashxj-thinking.d.ts +1 -0
  2. package/dist/builtin-extensions/ashxj-thinking.d.ts.map +1 -1
  3. package/dist/builtin-extensions/ashxj-thinking.js +31 -18
  4. package/dist/builtin-extensions/ashxj-thinking.js.map +1 -1
  5. package/dist/builtin-extensions/ashxj-tui.d.ts +4 -0
  6. package/dist/builtin-extensions/ashxj-tui.d.ts.map +1 -1
  7. package/dist/builtin-extensions/ashxj-tui.js +53 -15
  8. package/dist/builtin-extensions/ashxj-tui.js.map +1 -1
  9. package/dist/catalog/models.json +1 -1
  10. package/dist/catalog/providers/openrouter.json +1 -1
  11. package/dist/catalog/publication.json +2 -2
  12. package/dist/core/agent-session.d.ts.map +1 -1
  13. package/dist/core/agent-session.js +2 -2
  14. package/dist/core/agent-session.js.map +1 -1
  15. package/dist/gateway/commands.d.ts.map +1 -1
  16. package/dist/gateway/commands.js +1 -0
  17. package/dist/gateway/commands.js.map +1 -1
  18. package/dist/modes/interactive/components/settings-selector.d.ts.map +1 -1
  19. package/dist/modes/interactive/components/settings-selector.js +5 -5
  20. package/dist/modes/interactive/components/settings-selector.js.map +1 -1
  21. package/dist/modes/interactive/components/thinking-selector.d.ts.map +1 -1
  22. package/dist/modes/interactive/components/thinking-selector.js +5 -5
  23. package/dist/modes/interactive/components/thinking-selector.js.map +1 -1
  24. package/dist/modes/interactive/theme/moon.json +1 -1
  25. package/docs/keybindings.md +1 -1
  26. package/docs/quickstart.md +1 -1
  27. package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
  28. package/examples/extensions/custom-provider-anthropic/package.json +1 -1
  29. package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
  30. package/examples/extensions/gondolin/package-lock.json +2 -2
  31. package/examples/extensions/gondolin/package.json +1 -1
  32. package/examples/extensions/sandbox/package-lock.json +2 -2
  33. package/examples/extensions/sandbox/package.json +1 -1
  34. package/examples/extensions/with-deps/package-lock.json +2 -2
  35. package/examples/extensions/with-deps/package.json +1 -1
  36. 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
  // ============================================================================