gohumanloop 0.0.1__tar.gz → 0.0.2__tar.gz
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-0.0.1 → gohumanloop-0.0.2}/PKG-INFO +2 -1
- gohumanloop-0.0.2/gohumanloop/adapters/__init__.py +17 -0
- gohumanloop-0.0.2/gohumanloop/adapters/langgraph_adapter.py +819 -0
- gohumanloop-0.0.2/gohumanloop/cli/__init__.py +0 -0
- gohumanloop-0.0.2/gohumanloop/cli/main.py +29 -0
- gohumanloop-0.0.2/gohumanloop/core/__init__.py +0 -0
- gohumanloop-0.0.2/gohumanloop/core/interface.py +437 -0
- gohumanloop-0.0.2/gohumanloop/core/manager.py +576 -0
- gohumanloop-0.0.2/gohumanloop/manager/__init__.py +0 -0
- gohumanloop-0.0.2/gohumanloop/manager/ghl_manager.py +532 -0
- gohumanloop-0.0.2/gohumanloop/models/__init__.py +0 -0
- gohumanloop-0.0.2/gohumanloop/models/api_model.py +54 -0
- gohumanloop-0.0.2/gohumanloop/models/glh_model.py +23 -0
- gohumanloop-0.0.2/gohumanloop/providers/__init__.py +0 -0
- gohumanloop-0.0.2/gohumanloop/providers/api_provider.py +628 -0
- gohumanloop-0.0.2/gohumanloop/providers/base.py +428 -0
- gohumanloop-0.0.2/gohumanloop/providers/email_provider.py +1019 -0
- gohumanloop-0.0.2/gohumanloop/providers/ghl_provider.py +64 -0
- gohumanloop-0.0.2/gohumanloop/providers/terminal_provider.py +302 -0
- gohumanloop-0.0.2/gohumanloop/utils/__init__.py +1 -0
- gohumanloop-0.0.2/gohumanloop/utils/context_formatter.py +59 -0
- gohumanloop-0.0.2/gohumanloop/utils/threadsafedict.py +243 -0
- gohumanloop-0.0.2/gohumanloop/utils/utils.py +40 -0
- {gohumanloop-0.0.1 → gohumanloop-0.0.2}/gohumanloop.egg-info/PKG-INFO +2 -1
- gohumanloop-0.0.2/gohumanloop.egg-info/SOURCES.txt +33 -0
- {gohumanloop-0.0.1 → gohumanloop-0.0.2}/pyproject.toml +11 -3
- gohumanloop-0.0.1/gohumanloop.egg-info/SOURCES.txt +0 -11
- {gohumanloop-0.0.1 → gohumanloop-0.0.2}/LICENSE +0 -0
- {gohumanloop-0.0.1 → gohumanloop-0.0.2}/README.md +0 -0
- {gohumanloop-0.0.1 → gohumanloop-0.0.2}/gohumanloop/__init__.py +0 -0
- {gohumanloop-0.0.1 → gohumanloop-0.0.2}/gohumanloop/__main__.py +0 -0
- {gohumanloop-0.0.1 → gohumanloop-0.0.2}/gohumanloop.egg-info/dependency_links.txt +0 -0
- {gohumanloop-0.0.1 → gohumanloop-0.0.2}/gohumanloop.egg-info/entry_points.txt +0 -0
- {gohumanloop-0.0.1 → gohumanloop-0.0.2}/gohumanloop.egg-info/requires.txt +0 -0
- {gohumanloop-0.0.1 → gohumanloop-0.0.2}/gohumanloop.egg-info/top_level.txt +0 -0
- {gohumanloop-0.0.1 → gohumanloop-0.0.2}/setup.cfg +0 -0
@@ -1,7 +1,8 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: gohumanloop
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.2
|
4
4
|
Summary: Perfecting AI workflows with human intelligence
|
5
|
+
Author-email: gohumanloop authors <baird0917@163.com>
|
5
6
|
Project-URL: repository, https://github.com/ptonlix/gohumanloop
|
6
7
|
Requires-Python: >=3.10
|
7
8
|
Description-Content-Type: text/markdown
|
@@ -0,0 +1,17 @@
|
|
1
|
+
from .langgraph_adapter import (
|
2
|
+
LangGraphAdapter,
|
3
|
+
LangGraphHumanLoopCallback,
|
4
|
+
default_langgraph_callback_factory,
|
5
|
+
interrupt,
|
6
|
+
create_resume_command,
|
7
|
+
acreate_resume_command
|
8
|
+
)
|
9
|
+
|
10
|
+
__all__ = [
|
11
|
+
"LangGraphAdapter",
|
12
|
+
"LangGraphHumanLoopCallback",
|
13
|
+
"default_langgraph_callback_factory",
|
14
|
+
"interrupt",
|
15
|
+
"create_resume_command",
|
16
|
+
"acreate_resume_command"
|
17
|
+
]
|