Complete rebrand to eliminate any Claude/Anthropic references: Directory Changes: - claude_rag/ → mini_rag/ (preserving git history) Content Changes: - Replaced 930+ Claude references across 40+ files - 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 Testing Changes: - All tests updated to use mini_rag imports - Integration tests verify new module structure This ensures complete independence from Claude/Anthropic branding while maintaining all functionality and git history.
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",
|
|
] |