@luckydraw/cumulus 0.31.22 → 0.31.24
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/CHANGELOG.md +10 -0
- package/dist/gateway/static/blex.min.js +20 -6
- package/dist/lib/embeddings.d.ts +6 -0
- package/dist/lib/embeddings.d.ts.map +1 -1
- package/dist/lib/embeddings.js +15 -0
- package/dist/lib/embeddings.js.map +1 -1
- package/dist/lib/session.d.ts.map +1 -1
- package/dist/lib/session.js +20 -5
- package/dist/lib/session.js.map +1 -1
- package/dist/mcp/shared-server.js +2 -2
- package/dist/mcp/shared-server.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.31.24
|
|
4
|
+
|
|
5
|
+
- Bug fixes and stability improvements
|
|
6
|
+
|
|
7
|
+
## v0.31.23
|
|
8
|
+
|
|
9
|
+
- Faster searches and quicker responses, especially on large sessions
|
|
10
|
+
- Improved stability when indexing your conversation history
|
|
11
|
+
- Bug fixes and stability improvements
|
|
12
|
+
|
|
3
13
|
## v0.31.22
|
|
4
14
|
|
|
5
15
|
- RAG search on large, actively-growing threads is faster again. The content store was generating embeddings for newly-read files inline, on the search critical path — so every search paid to embed everything added since the last one (the content branch stayed ~3.9s warm even after the 0.31.21 caching fix). Content is now embedded on write, in the background, the moment it's stored; and the search-path catch-up is bounded (at most 16 chunks inline, the rest deferred) so a cold or backlogged thread can never let embedding dominate a search. Same fix history already had — now applied to the content store.
|