gohumanloop 0.0.8__tar.gz → 0.0.9__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.
Files changed (36) hide show
  1. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/PKG-INFO +6 -5
  2. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/README.md +5 -4
  3. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/adapters/base_adapter.py +1 -1
  4. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop.egg-info/PKG-INFO +6 -5
  5. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/pyproject.toml +1 -1
  6. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/LICENSE +0 -0
  7. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/__init__.py +0 -0
  8. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/__main__.py +0 -0
  9. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/adapters/__init__.py +0 -0
  10. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/adapters/langgraph_adapter.py +0 -0
  11. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/cli/__init__.py +0 -0
  12. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/cli/main.py +0 -0
  13. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/core/__init__.py +0 -0
  14. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/core/interface.py +0 -0
  15. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/core/manager.py +0 -0
  16. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/manager/__init__.py +0 -0
  17. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/manager/ghl_manager.py +0 -0
  18. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/models/__init__.py +0 -0
  19. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/models/api_model.py +0 -0
  20. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/models/glh_model.py +0 -0
  21. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/providers/__init__.py +0 -0
  22. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/providers/api_provider.py +0 -0
  23. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/providers/base.py +0 -0
  24. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/providers/email_provider.py +0 -0
  25. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/providers/ghl_provider.py +0 -0
  26. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/providers/terminal_provider.py +0 -0
  27. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/utils/__init__.py +0 -0
  28. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/utils/context_formatter.py +0 -0
  29. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/utils/threadsafedict.py +0 -0
  30. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop/utils/utils.py +0 -0
  31. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop.egg-info/SOURCES.txt +0 -0
  32. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop.egg-info/dependency_links.txt +0 -0
  33. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop.egg-info/entry_points.txt +0 -0
  34. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop.egg-info/requires.txt +0 -0
  35. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/gohumanloop.egg-info/top_level.txt +0 -0
  36. {gohumanloop-0.0.8 → gohumanloop-0.0.9}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gohumanloop
3
- Version: 0.0.8
3
+ Version: 0.0.9
4
4
  Summary: Perfecting AI workflows with human intelligence
5
5
  Author-email: gohumanloop authors <baird0917@163.com>
6
6
  Project-URL: repository, https://github.com/ptonlix/gohumanloop
@@ -33,7 +33,7 @@ Dynamic: license-file
33
33
  **GoHumanLoop**: A Python library empowering AI agents to dynamically request human input (approval/feedback/conversation) at critical stages. Core features:
34
34
 
35
35
  - `Human-in-the-loop control`: Lets AI agent systems pause and escalate decisions, enhancing safety and trust.
36
- - `Multi-channel integration`: Supports Terminal, Email, API, and frameworks like LangGraph/CrewAI (soon).
36
+ - `Multi-channel integration`: Supports Terminal, Email, API, and frameworks like LangGraph/CrewAI/...(soon)
37
37
  - `Flexible workflows`: Combines automated reasoning with human oversight for reliable AI operations.
38
38
 
39
39
  Ensures responsible AI deployment by bridging autonomous agents and human judgment.
@@ -59,9 +59,10 @@ Ensures responsible AI deployment by bridging autonomous agents and human judgme
59
59
 
60
60
  ## 🎹 Getting Started
61
61
 
62
- To get started, check out the following example or jump straight into one of the [Examples](./examples/):
62
+ To get started, check out the following example or jump straight into one of the [Examples Repo](https://github.com/ptonlix/gohumanloop-examples):
63
63
 
64
- - 🦜⛓️ [LangGraph](./examples/langgraph/)
64
+ - 🦜⛓️ [LangGraph](https://github.com/ptonlix/gohumanloop-examples/tree/main/LangGraph)
65
+ - 🚣‍ [CrewAI](https://github.com/ptonlix/gohumanloop-examples/tree/main/CrewAI)
65
66
 
66
67
  ### Installation
67
68
 
@@ -206,7 +207,7 @@ Perform `human-in-the-loop` interaction by entering:
206
207
 
207
208
  🚀🚀🚀 Completed successfully ~
208
209
 
209
- ➡️ Check out more examples in the [Examples Directory](./examples/) and we look foward to your contributions!
210
+ ➡️ Check out more examples in the [Examples Repository](https://github.com/ptonlix/gohumanloop-examples) and we look foward to your contributions!
210
211
 
211
212
  ## 🎵 Why GoHumanloop?
212
213
 
@@ -8,7 +8,7 @@
8
8
  **GoHumanLoop**: A Python library empowering AI agents to dynamically request human input (approval/feedback/conversation) at critical stages. Core features:
9
9
 
10
10
  - `Human-in-the-loop control`: Lets AI agent systems pause and escalate decisions, enhancing safety and trust.
11
- - `Multi-channel integration`: Supports Terminal, Email, API, and frameworks like LangGraph/CrewAI (soon).
11
+ - `Multi-channel integration`: Supports Terminal, Email, API, and frameworks like LangGraph/CrewAI/...(soon)
12
12
  - `Flexible workflows`: Combines automated reasoning with human oversight for reliable AI operations.
13
13
 
14
14
  Ensures responsible AI deployment by bridging autonomous agents and human judgment.
@@ -34,9 +34,10 @@ Ensures responsible AI deployment by bridging autonomous agents and human judgme
34
34
 
35
35
  ## 🎹 Getting Started
36
36
 
37
- To get started, check out the following example or jump straight into one of the [Examples](./examples/):
37
+ To get started, check out the following example or jump straight into one of the [Examples Repo](https://github.com/ptonlix/gohumanloop-examples):
38
38
 
39
- - 🦜⛓️ [LangGraph](./examples/langgraph/)
39
+ - 🦜⛓️ [LangGraph](https://github.com/ptonlix/gohumanloop-examples/tree/main/LangGraph)
40
+ - 🚣‍ [CrewAI](https://github.com/ptonlix/gohumanloop-examples/tree/main/CrewAI)
40
41
 
41
42
  ### Installation
42
43
 
@@ -181,7 +182,7 @@ Perform `human-in-the-loop` interaction by entering:
181
182
 
182
183
  🚀🚀🚀 Completed successfully ~
183
184
 
184
- ➡️ Check out more examples in the [Examples Directory](./examples/) and we look foward to your contributions!
185
+ ➡️ Check out more examples in the [Examples Repository](https://github.com/ptonlix/gohumanloop-examples) and we look foward to your contributions!
185
186
 
186
187
  ## 🎵 Why GoHumanloop?
187
188
 
@@ -725,7 +725,7 @@ class AgentOpsHumanLoopCallback(HumanLoopCallback):
725
725
  self._operation = operation
726
726
  agentops.init(tags=self.session_tags)
727
727
  else:
728
- logger.debug(
728
+ raise ImportError(
729
729
  "AgentOps package not installed. Features disabled. "
730
730
  "Please install with: pip install agentops"
731
731
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gohumanloop
3
- Version: 0.0.8
3
+ Version: 0.0.9
4
4
  Summary: Perfecting AI workflows with human intelligence
5
5
  Author-email: gohumanloop authors <baird0917@163.com>
6
6
  Project-URL: repository, https://github.com/ptonlix/gohumanloop
@@ -33,7 +33,7 @@ Dynamic: license-file
33
33
  **GoHumanLoop**: A Python library empowering AI agents to dynamically request human input (approval/feedback/conversation) at critical stages. Core features:
34
34
 
35
35
  - `Human-in-the-loop control`: Lets AI agent systems pause and escalate decisions, enhancing safety and trust.
36
- - `Multi-channel integration`: Supports Terminal, Email, API, and frameworks like LangGraph/CrewAI (soon).
36
+ - `Multi-channel integration`: Supports Terminal, Email, API, and frameworks like LangGraph/CrewAI/...(soon)
37
37
  - `Flexible workflows`: Combines automated reasoning with human oversight for reliable AI operations.
38
38
 
39
39
  Ensures responsible AI deployment by bridging autonomous agents and human judgment.
@@ -59,9 +59,10 @@ Ensures responsible AI deployment by bridging autonomous agents and human judgme
59
59
 
60
60
  ## 🎹 Getting Started
61
61
 
62
- To get started, check out the following example or jump straight into one of the [Examples](./examples/):
62
+ To get started, check out the following example or jump straight into one of the [Examples Repo](https://github.com/ptonlix/gohumanloop-examples):
63
63
 
64
- - 🦜⛓️ [LangGraph](./examples/langgraph/)
64
+ - 🦜⛓️ [LangGraph](https://github.com/ptonlix/gohumanloop-examples/tree/main/LangGraph)
65
+ - 🚣‍ [CrewAI](https://github.com/ptonlix/gohumanloop-examples/tree/main/CrewAI)
65
66
 
66
67
  ### Installation
67
68
 
@@ -206,7 +207,7 @@ Perform `human-in-the-loop` interaction by entering:
206
207
 
207
208
  🚀🚀🚀 Completed successfully ~
208
209
 
209
- ➡️ Check out more examples in the [Examples Directory](./examples/) and we look foward to your contributions!
210
+ ➡️ Check out more examples in the [Examples Repository](https://github.com/ptonlix/gohumanloop-examples) and we look foward to your contributions!
210
211
 
211
212
  ## 🎵 Why GoHumanloop?
212
213
 
@@ -3,7 +3,7 @@ authors = [
3
3
  {name = "gohumanloop authors", email = "baird0917@163.com"},
4
4
  ]
5
5
  name = "gohumanloop"
6
- version = "0.0.8"
6
+ version = "0.0.9"
7
7
  description = "Perfecting AI workflows with human intelligence"
8
8
  readme = "README.md"
9
9
  requires-python = ">=3.10"
File without changes
File without changes