Files
shell-history-semantic-search/src/shell_history_search/__init__.py
7000pctAUTO 66a97ed7ac
Some checks failed
CI / test (push) Has been cancelled
Initial upload: shell-history-semantic-search v0.1.0
2026-03-22 18:15:23 +00:00

16 lines
377 B
Python

from .core import EmbeddingService, SearchEngine, SearchResult, IndexingService
from .parsers import HistoryEntry, HistoryParser
from .db import init_database, get_db_path
__version__ = "0.1.0"
__all__ = [
"EmbeddingService",
"SearchEngine",
"SearchResult",
"IndexingService",
"HistoryEntry",
"HistoryParser",
"init_database",
"get_db_path",
]