gohumanloop 0.0.6__py3-none-any.whl → 0.0.8__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.
- gohumanloop/__init__.py +5 -0
- gohumanloop/adapters/__init__.py +6 -2
- gohumanloop/adapters/base_adapter.py +847 -0
- gohumanloop/adapters/langgraph_adapter.py +58 -691
- gohumanloop/core/interface.py +16 -5
- gohumanloop/core/manager.py +43 -1
- {gohumanloop-0.0.6.dist-info → gohumanloop-0.0.8.dist-info}/METADATA +44 -5
- {gohumanloop-0.0.6.dist-info → gohumanloop-0.0.8.dist-info}/RECORD +12 -11
- {gohumanloop-0.0.6.dist-info → gohumanloop-0.0.8.dist-info}/WHEEL +1 -1
- {gohumanloop-0.0.6.dist-info → gohumanloop-0.0.8.dist-info}/entry_points.txt +0 -0
- {gohumanloop-0.0.6.dist-info → gohumanloop-0.0.8.dist-info}/licenses/LICENSE +0 -0
- {gohumanloop-0.0.6.dist-info → gohumanloop-0.0.8.dist-info}/top_level.txt +0 -0
gohumanloop/__init__.py
CHANGED
@@ -17,6 +17,8 @@ from gohumanloop.providers.terminal_provider import TerminalProvider
|
|
17
17
|
|
18
18
|
from gohumanloop.utils import run_async_safely, get_secret_from_env
|
19
19
|
|
20
|
+
from gohumanloop.adapters import HumanloopAdapter, AgentOpsHumanLoopCallback
|
21
|
+
|
20
22
|
# Conditionally import EmailProvider
|
21
23
|
try:
|
22
24
|
from gohumanloop.providers.email_provider import EmailProvider # noqa: F401
|
@@ -60,6 +62,9 @@ __all__ = [
|
|
60
62
|
"APIProvider",
|
61
63
|
"GoHumanLoopProvider",
|
62
64
|
"TerminalProvider",
|
65
|
+
# Adapter Implementations
|
66
|
+
"HumanloopAdapter",
|
67
|
+
"AgentOpsHumanLoopCallback",
|
63
68
|
# Utility Functions
|
64
69
|
"run_async_safely",
|
65
70
|
"get_secret_from_env",
|
gohumanloop/adapters/__init__.py
CHANGED
@@ -1,5 +1,8 @@
|
|
1
|
+
from .base_adapter import (
|
2
|
+
HumanloopAdapter,
|
3
|
+
AgentOpsHumanLoopCallback,
|
4
|
+
)
|
1
5
|
from .langgraph_adapter import (
|
2
|
-
LangGraphAdapter,
|
3
6
|
LangGraphHumanLoopCallback,
|
4
7
|
default_langgraph_callback_factory,
|
5
8
|
interrupt,
|
@@ -8,7 +11,8 @@ from .langgraph_adapter import (
|
|
8
11
|
)
|
9
12
|
|
10
13
|
__all__ = [
|
11
|
-
"
|
14
|
+
"HumanloopAdapter",
|
15
|
+
"AgentOpsHumanLoopCallback",
|
12
16
|
"LangGraphHumanLoopCallback",
|
13
17
|
"default_langgraph_callback_factory",
|
14
18
|
"interrupt",
|