From d9a85d312201332a01a4e826176719996e4b6228 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 18:15:28 +0000 Subject: [PATCH] Initial upload: shell-history-semantic-search v0.1.0 --- src/shell_history_search/core/__init__.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/shell_history_search/core/__init__.py diff --git a/src/shell_history_search/core/__init__.py b/src/shell_history_search/core/__init__.py new file mode 100644 index 0000000..1b5d2f1 --- /dev/null +++ b/src/shell_history_search/core/__init__.py @@ -0,0 +1,10 @@ +from .embeddings import EmbeddingService +from .search import SearchEngine, SearchResult +from .indexing import IndexingService + +__all__ = [ + "EmbeddingService", + "SearchEngine", + "SearchResult", + "IndexingService", +] \ No newline at end of file