fix: sqlite extension check + oversized chunk embedding (#85, #86, #87)#88
Merged
Merged
Conversation
Python compiled without SQLITE_ENABLE_LOAD_EXTENSION (common with python.org macOS installers) crashes with AttributeError. Now gives a clear error message with fix instructions at three levels: - Preflight check in cce init (fails early with ClickException) - VectorStore._connect (RuntimeError with reinstall instructions) - memory/db._try_load_vec (warning log, soft degradation) Closes #85
Large semantic chunks (Markdown sections, long functions, dense YAML) exceeded nomic-embed-text's 8192-token context limit, crashing indexing. Fix: truncate to 3000 chars before embedding (safe for dense-tokenizing content at ~1 char/token), skip empty chunks, and fall back to one-at-a-time with halving retry if a batch still fails. Closes #86, closes #87
fazleelahhee
approved these changes
May 19, 2026
This was referenced May 19, 2026
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
Fixes three reported issues:
#85: sqlite3.enable_load_extension missing on Python 3.14
cce initcatches it before any work startsVectorStore._connectraisesRuntimeErrorwith reinstall instructionsmemory/db._try_load_veclogs warning and degrades gracefully#86, #87: Oversized chunks crash Ollama embedding
Closes #85, closes #86, closes #87