Initial upload: shell-history-semantic-search v0.1.0
Some checks failed
CI / test (push) Has been cancelled
Some checks failed
CI / test (push) Has been cancelled
This commit is contained in:
16
src/shell_history_search/__init__.py
Normal file
16
src/shell_history_search/__init__.py
Normal file
@@ -0,0 +1,16 @@
|
||||
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",
|
||||
]
|
||||
Reference in New Issue
Block a user