Complete rebrand for v1.0-simple-search branch: Directory Changes: - claude_rag/ → mini_rag/ (preserving git history) Content Changes: - Updated all imports: from claude_rag → from mini_rag - Updated all file paths: .claude-rag → .mini-rag - Updated documentation and comments - Updated configuration files and examples - Updated all tests to use mini_rag imports This ensures complete independence from Claude/Anthropic branding while maintaining all functionality and git history. Simple branch contains the basic RAG system without LLM features.
22 lines
575 B
Python
22 lines
575 B
Python
"""
|
|
FSS-Mini-RAG - Lightweight, portable semantic code search.
|
|
|
|
A hybrid RAG system with Ollama-first embeddings, ML fallback, and streaming indexing.
|
|
Designed for portability, efficiency, and simplicity across projects and computers.
|
|
"""
|
|
|
|
__version__ = "2.1.0"
|
|
|
|
from .ollama_embeddings import OllamaEmbedder as CodeEmbedder
|
|
from .chunker import CodeChunker
|
|
from .indexer import ProjectIndexer
|
|
from .search import CodeSearcher
|
|
from .watcher import FileWatcher
|
|
|
|
__all__ = [
|
|
"CodeEmbedder",
|
|
"CodeChunker",
|
|
"ProjectIndexer",
|
|
"CodeSearcher",
|
|
"FileWatcher",
|
|
] |