From 66a97ed7ac8344306a0c6157a5ed609d03f35d09 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 18:15:23 +0000 Subject: [PATCH] Initial upload: shell-history-semantic-search v0.1.0 --- src/shell_history_search/__init__.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/shell_history_search/__init__.py diff --git a/src/shell_history_search/__init__.py b/src/shell_history_search/__init__.py new file mode 100644 index 0000000..fe53132 --- /dev/null +++ b/src/shell_history_search/__init__.py @@ -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", +] \ No newline at end of file