htmlgraph 0.26.22__py3-none-any.whl → 0.26.24__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.
- htmlgraph/__init__.py +6 -1
- htmlgraph/analytics/pattern_learning.py +771 -0
- htmlgraph/cli/analytics.py +465 -0
- htmlgraph/cli/core.py +97 -0
- htmlgraph/cli/main.py +3 -0
- htmlgraph/cli/models.py +12 -0
- htmlgraph/cli/work/__init__.py +5 -0
- htmlgraph/cli/work/report.py +727 -0
- htmlgraph/db/schema.py +34 -1
- htmlgraph/decorators.py +317 -0
- htmlgraph/models.py +4 -1
- htmlgraph/operations/bootstrap.py +288 -0
- htmlgraph/sdk.py +91 -0
- htmlgraph/session_manager.py +160 -2
- htmlgraph/sessions/__init__.py +23 -0
- htmlgraph/sessions/handoff.py +749 -0
- {htmlgraph-0.26.22.dist-info → htmlgraph-0.26.24.dist-info}/METADATA +1 -1
- {htmlgraph-0.26.22.dist-info → htmlgraph-0.26.24.dist-info}/RECORD +25 -19
- {htmlgraph-0.26.22.data → htmlgraph-0.26.24.data}/data/htmlgraph/dashboard.html +0 -0
- {htmlgraph-0.26.22.data → htmlgraph-0.26.24.data}/data/htmlgraph/styles.css +0 -0
- {htmlgraph-0.26.22.data → htmlgraph-0.26.24.data}/data/htmlgraph/templates/AGENTS.md.template +0 -0
- {htmlgraph-0.26.22.data → htmlgraph-0.26.24.data}/data/htmlgraph/templates/CLAUDE.md.template +0 -0
- {htmlgraph-0.26.22.data → htmlgraph-0.26.24.data}/data/htmlgraph/templates/GEMINI.md.template +0 -0
- {htmlgraph-0.26.22.dist-info → htmlgraph-0.26.24.dist-info}/WHEEL +0 -0
- {htmlgraph-0.26.22.dist-info → htmlgraph-0.26.24.dist-info}/entry_points.txt +0 -0
htmlgraph/__init__.py
CHANGED
|
@@ -19,6 +19,7 @@ from htmlgraph.atomic_ops import (
|
|
|
19
19
|
from htmlgraph.builders import BaseBuilder, FeatureBuilder, SpikeBuilder
|
|
20
20
|
from htmlgraph.collections import BaseCollection, FeatureCollection, SpikeCollection
|
|
21
21
|
from htmlgraph.context_analytics import ContextAnalytics, ContextUsage
|
|
22
|
+
from htmlgraph.decorators import RetryError, retry, retry_async
|
|
22
23
|
from htmlgraph.edge_index import EdgeIndex, EdgeRef
|
|
23
24
|
from htmlgraph.exceptions import (
|
|
24
25
|
ClaimConflictError,
|
|
@@ -95,7 +96,7 @@ from htmlgraph.types import (
|
|
|
95
96
|
)
|
|
96
97
|
from htmlgraph.work_type_utils import infer_work_type, infer_work_type_from_id
|
|
97
98
|
|
|
98
|
-
__version__ = "0.26.
|
|
99
|
+
__version__ = "0.26.24"
|
|
99
100
|
__all__ = [
|
|
100
101
|
# Exceptions
|
|
101
102
|
"HtmlGraphError",
|
|
@@ -103,6 +104,10 @@ __all__ = [
|
|
|
103
104
|
"SessionNotFoundError",
|
|
104
105
|
"ClaimConflictError",
|
|
105
106
|
"ValidationError",
|
|
107
|
+
"RetryError",
|
|
108
|
+
# Decorators
|
|
109
|
+
"retry",
|
|
110
|
+
"retry_async",
|
|
106
111
|
# Core models
|
|
107
112
|
"Node",
|
|
108
113
|
"Edge",
|