fix(ci): default model paths + README MCP/slim-image notes#194
Merged
Conversation
PR #193 bundled a config.py change that prepended /misc/ to the tinybert-ner default path and /jina/ to the reranker default path. On CI (no MODELS_DIR set) this resolved to ./models/misc/tinybert-ner which doesn't exist, breaking 50+ tests with FileNotFoundError when CREATE NODE triggered entity extraction. Restore the original paths (./models/tinybert-ner, ./models/jina-reranker-v3/...) while keeping the MODELS_DIR env override that's useful for containerised Pro deployments. README updates: - Pro GPU image size 6 GB -> 5.2 GB slim, with notes on the slim build topology and SKIP_MODEL_PREFETCH. - New 'MCP server (agentic memory)' section documenting the graphstore-mcp console script, Claude Desktop config, exposed tools, and Pro-mode hookup.
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
PR #193 inadvertently shipped a config.py change that prepended
/misc/and/jina/to the default tinybert-ner and reranker model paths. CI (noMODELS_DIRenv var) resolved to./models/misc/tinybert-nerwhich doesn't exist, breaking 50+ tests on every Python matrix entry.This PR:
./models/tinybert-nerand./models/jina-reranker-v3/...(parity with PR feat(docker): CPU + Pro GPU images + compose profiles #192).MODELS_DIRenv override - still useful for containerised Pro deployments.graphstore-mcpconsole script, Claude Desktop config, and tool surface.Test plan
default entity_model_dirresolves to./models/tinybert-nerwith no MODELS_DIR set (matches feat(docker): CPU + Pro GPU images + compose profiles #192)