fraim-hub 2.0.316 → 2.0.317
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/package.json +2 -2
- package/public/ai-hub/script.js +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fraim-hub",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.317",
|
|
4
4
|
"description": "FRAIM Hub local companion package.",
|
|
5
5
|
"author": "Sid Mathur <sid.mathur@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/mathursrus/FRAIM#readme",
|
|
@@ -211,7 +211,7 @@
|
|
|
211
211
|
"electron-updater": "^6.8.9",
|
|
212
212
|
"express": "^5.2.1",
|
|
213
213
|
"extract-zip": "^2.0.1",
|
|
214
|
-
"fraim": "2.0.
|
|
214
|
+
"fraim": "2.0.317",
|
|
215
215
|
"mongodb": "^7.0.0",
|
|
216
216
|
"node-cron": "4.2.1",
|
|
217
217
|
"node-edge-tts": "^1.2.10",
|
package/public/ai-hub/script.js
CHANGED
|
@@ -12154,7 +12154,8 @@ async function tfSelectProjectView(view, projectId) {
|
|
|
12154
12154
|
for (const k of ['projectContext', 'projectBrief', 'projectRules']) delete cache[k];
|
|
12155
12155
|
// #533: project-scope preserved learnings are per-project — drop the cache so
|
|
12156
12156
|
// a switched project never shows the prior project's learnings.
|
|
12157
|
-
delete tfPreservedCache()
|
|
12157
|
+
delete tfPreservedCache()[tfLearnKey('manager', 'project')];
|
|
12158
|
+
delete tfThresholdCache()[tfLearnKey('manager', 'project')];
|
|
12158
12159
|
tf._lastWorkspaceProject = tf.activeProjectId;
|
|
12159
12160
|
}
|
|
12160
12161
|
tfRenderTree();
|