<!-- .github/pull_request_template.md --> ## Description Delete legacy search implementations after migrating to new retriever classes ## DCO Affirmation I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Enhanced search and retrieval capabilities, providing improved context resolution for code queries, completions, summaries, and graph connections. - **Refactor** - Shifted to a modular, object-oriented approach that consolidates query logic and streamlines error management for a more robust and scalable experience. - **Bug Fixes** - Improved error handling for unsupported search types and retrieval operations. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
4 lines
208 B
Python
4 lines
208 B
Python
from .chunk_by_word import chunk_by_word
|
|
from .chunk_by_sentence import chunk_by_sentence
|
|
from .chunk_by_paragraph import chunk_by_paragraph
|
|
from .remove_disconnected_chunks import remove_disconnected_chunks
|