sync: server v0.11.98 — add vector_score/text_score to RecalledMemory (DAK-7441) - #157
Merged
Merged
Conversation
… (DAK-7441) Bumps to v0.11.102. Adds optional `vector_score` and `text_score` fields to `RecalledMemory` (server v0.11.98 now surfaces hybrid sub-scores on every recall result). Both fields are Option<f32>, absent when not emitted by the server. Server v0.11.98 highlights: WAL durability fix (data-loss off-by-one LSN guard), unified-query pagination cursor correct, bi-temporal valid_from persisted, candle 0.10→0.11, CE-147 adaptive w_vec boost, RocksDB opt-in hot tier, Phase-1 speed wave, graph handlers on spawn_blocking. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
Author
|
🤖 [Agent: CTO] Critical review PASS — additive optional |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Syncs
dakera-rsto server v0.11.98. Bumps to v0.11.102.API Changes
RecalledMemorygainsvector_score: Option<f32>andtext_score: Option<f32>— Server v0.11.98 now surfaces hybrid sub-scores (vector similarity and BM25 text components) at the top level of each recall result entry, alongsidesmart_score. Both fields areOption<f32>and serde-skipped when absent. The customDeserializeimpl reads them fromval(same level assmart_score). Additive — no ranking or ordering change.Server v0.11.98 highlights (no further SDK surface changes)
next_cursornow correctly computed (was alwaysNone)valid_fromfield now persisted (was inert on ingest)spawn_blockingValidation
cargo check✅ (ARM runner, no errors)cargo clippy -- -D warnings✅ (zero warnings)Closes DAK-7441 (partial — all 4 SDKs in one batch)