@usabledev/usable-chat 1.190.0 → 1.191.0
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/cli.js +7 -2
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -149296,7 +149296,7 @@ var init_model_config = __esm({
|
|
|
149296
149296
|
function getModelEntry(modelId) {
|
|
149297
149297
|
return ALL_MODELS.find((m33) => m33.id === modelId);
|
|
149298
149298
|
}
|
|
149299
|
-
var MODEL_TIERS, ALL_MODELS;
|
|
149299
|
+
var MODEL_TIERS, ALL_MODELS, CURATED_MODEL_IDS;
|
|
149300
149300
|
var init_model_tiers = __esm({
|
|
149301
149301
|
"src/lib/model-tiers.ts"() {
|
|
149302
149302
|
"use strict";
|
|
@@ -149416,6 +149416,7 @@ var init_model_tiers = __esm({
|
|
|
149416
149416
|
}
|
|
149417
149417
|
];
|
|
149418
149418
|
ALL_MODELS = MODEL_TIERS.flatMap((tier) => tier.models);
|
|
149419
|
+
CURATED_MODEL_IDS = ALL_MODELS.map((model) => model.id);
|
|
149419
149420
|
}
|
|
149420
149421
|
});
|
|
149421
149422
|
|
|
@@ -290723,6 +290724,8 @@ ${usableWorkspaceContext}
|
|
|
290723
290724
|
|
|
290724
290725
|
**\u{1F50D} Tool Selection Guide:**
|
|
290725
290726
|
|
|
290727
|
+
Temporal and structured intent wins over semantic similarity: requests for the latest, newest, most recent, ordered, counted, grouped, date-filtered, status-filtered, or exact-tag fragments MUST start with \`list-memory-fragments\`. Use \`updated_at DESC\` for latest/current updates and \`created_at DESC\` when the user specifically means newly created fragments. Add \`agentic-search-fragments\` only if the request also requires conceptual relevance.
|
|
290728
|
+
|
|
290726
290729
|
1. **list-memory-fragments** - Use for:
|
|
290727
290730
|
- "Show me all fragments" \u2192 list-memory-fragments with limit/offset
|
|
290728
290731
|
- "Count fragments by status" \u2192 list-memory-fragments with select: ['status', 'COUNT(*)'], groupBy: ['status']
|
|
@@ -290819,6 +290822,8 @@ ${usableWorkspaceContext}
|
|
|
290819
290822
|
|
|
290820
290823
|
**\u{1F50D} Tool Selection Guide:**
|
|
290821
290824
|
|
|
290825
|
+
Temporal and structured intent wins over semantic similarity: requests for the latest, newest, most recent, ordered, counted, grouped, date-filtered, status-filtered, or exact-tag fragments MUST start with \`list-memory-fragments\`. Use \`updated_at DESC\` for latest/current updates and \`created_at DESC\` when the user specifically means newly created fragments. Add \`agentic-search-fragments\` only if the request also requires conceptual relevance.
|
|
290826
|
+
|
|
290822
290827
|
1. **list-memory-fragments** - Use for:
|
|
290823
290828
|
- "Show me all fragments" \u2192 list-memory-fragments with limit/offset
|
|
290824
290829
|
- "Count fragments by status" \u2192 list-memory-fragments with select: ['status', 'COUNT(*)'], groupBy: ['status']
|
|
@@ -311482,7 +311487,7 @@ init_tui_select();
|
|
|
311482
311487
|
init_model_registry();
|
|
311483
311488
|
|
|
311484
311489
|
// package.json
|
|
311485
|
-
var version2 = "1.
|
|
311490
|
+
var version2 = "1.191.0";
|
|
311486
311491
|
|
|
311487
311492
|
// src/adapters/cli/model-catalog.ts
|
|
311488
311493
|
init_codex_auth();
|