keep-skill 0.1.0__py3-none-any.whl → 0.3.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
keep/__init__.py CHANGED
@@ -37,17 +37,14 @@ if not os.environ.get("KEEP_VERBOSE"):
37
37
  os.environ.setdefault("HF_HUB_DISABLE_TELEMETRY", "1")
38
38
  os.environ.setdefault("HF_HUB_DISABLE_SYMLINKS_WARNING", "1")
39
39
 
40
- from .api import Keeper
40
+ from .api import Keeper, NOWDOC_ID
41
41
  from .types import Item, filter_non_system_tags, SYSTEM_TAG_PREFIX
42
- from .context import WorkingContext, TopicSummary, RoutingContext
43
42
 
44
- __version__ = "0.1.0"
43
+ __version__ = "0.3.0"
45
44
  __all__ = [
46
45
  "Keeper",
47
46
  "Item",
48
- "WorkingContext",
49
- "TopicSummary",
50
- "RoutingContext",
47
+ "NOWDOC_ID",
51
48
  "filter_non_system_tags",
52
49
  "SYSTEM_TAG_PREFIX",
53
50
  ]