🧠 Nancy Brain v0.1.3 - Path Consistency Fix
🐛 Bug Fixes
Fixed embeddings path inconsistency between build and search commands
- Both
nancy-brain buildandnancy-brain searchnow use the same default embeddings path: embeddings - This aligns with the project structure convention where raw repositories are stored in raw
- Users no longer need to manually specify
--embeddings-pathwhen using both commands together
🔄 Improved User Experience
Seamless end-to-end workflow
nancy-brain init my-project
cd my-project
# Edit config/repositories.yml
nancy-brain build # Creates embeddings in knowledge_base/embeddings/
nancy-brain search "query" # Automatically finds embeddings in knowledge_base/embeddings/📦 Installation
pip install --upgrade nancy-brain==0.1.3🔗 What's Changed
- CLI commands now use consistent default paths for better UX
- No breaking changes - existing projects will continue to work
- Maintains backward compatibility with explicit
--embeddings-pathusage
This patch ensures a smoother user experience by eliminating the need to manually coordinate paths between the build and search operations.