Skip to content

🧠 Nancy Brain v0.1.3 - Path Consistency Fix

Choose a tag to compare

@AmberLee2427 AmberLee2427 released this 24 Aug 20:38
· 157 commits to main since this release

🐛 Bug Fixes

Fixed embeddings path inconsistency between build and search commands

  • Both nancy-brain build and nancy-brain search now 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-path when 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-path usage

This patch ensures a smoother user experience by eliminating the need to manually coordinate paths between the build and search operations.