mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-17 23:51:19 +00:00
feat(file-store): add Chroma and SQLite file store implementations - Add ChromaFileStore and SqliteFileStore classes to support additional storage backends - Export new store classes in __init__.py module refactor(file-store): enhance BaseFileStore with hybrid search capabilities - Add keyword scoring utility with word-match ratio and phrase bonus - Implement hybrid search method that combines vector and keyword results - Add merge logic for combining vector and keyword search results with weighted scoring - Move abstract methods to separate section for better organization - Remove redundant search filter parameter from local implementation refactor(file-store): simplify LocalFileStore implementation - Remove unused delete_file_chunks and upsert_chunks methods - Remove redundant update_file_metadata method - Update chunk counting logic to use file_meta directly - Simplify keyword search to use new base class scoring utility - Remove duplicate hybrid search implementation since it's now in base class ``` |
||
|---|---|---|
| .. | ||
| component | ||
| config | ||
| enumeration | ||
| file_based | ||
| schema | ||
| utils | ||
| vector_based | ||
| __init__.py | ||
| application.py | ||
| constants.py | ||
| reme.py | ||