grasp_agents 0.2.2__tar.gz → 0.2.3__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.
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/PKG-INFO +7 -7
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/README.md +6 -6
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/pyproject.toml +1 -1
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/.gitignore +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/LICENSE.md +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/__init__.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/agent_message.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/agent_message_pool.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/base_agent.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/cloud_llm.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/comm_agent.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/costs_dict.yaml +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/generics_utils.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/grasp_logging.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/http_client.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/llm.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/llm_agent.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/llm_agent_state.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/memory.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/openai/__init__.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/openai/completion_converters.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/openai/content_converters.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/openai/converters.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/openai/message_converters.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/openai/openai_llm.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/openai/tool_converters.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/printer.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/prompt_builder.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/rate_limiting/__init__.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/rate_limiting/rate_limiter_chunked.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/rate_limiting/types.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/rate_limiting/utils.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/run_context.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/tool_orchestrator.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/typing/__init__.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/typing/completion.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/typing/content.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/typing/converters.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/typing/io.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/typing/message.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/typing/tool.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/usage_tracker.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/utils.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/workflow/__init__.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/workflow/looped_agent.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/workflow/sequential_agent.py +0 -0
- {grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/workflow/workflow_agent.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: grasp_agents
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.3
|
4
4
|
Summary: Grasp Agents Library
|
5
5
|
License-File: LICENSE.md
|
6
6
|
Requires-Python: <4,>=3.11.4
|
@@ -18,8 +18,8 @@ Description-Content-Type: text/markdown
|
|
18
18
|
|
19
19
|
<br/>
|
20
20
|
<picture>
|
21
|
-
<source srcset="
|
22
|
-
<img src="
|
21
|
+
<source srcset="https://raw.githubusercontent.com/grasp-technologies/grasp-agents/master/.assets/grasp-dark.svg" media="(prefers-color-scheme: dark)">
|
22
|
+
<img src="https://raw.githubusercontent.com/grasp-technologies/grasp-agents/master/.assets/grasp.svg" alt="Grasp Agents"/>
|
23
23
|
</picture>
|
24
24
|
<br/>
|
25
25
|
<br/>
|
@@ -41,10 +41,10 @@ Description-Content-Type: text/markdown
|
|
41
41
|
- Agent state
|
42
42
|
- Shared context
|
43
43
|
- Transparent implementation of common agentic patterns:
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
44
|
+
- Single-agent loops with an optional "ReAct mode" to enforce reasoning between the tool calls
|
45
|
+
- Workflows (static communication topology), including loops
|
46
|
+
- Agents-as-tools for task delegation
|
47
|
+
- Freeform A2A communication via the in-process actor model
|
48
48
|
- Batch processing support outside of agentic loops
|
49
49
|
- Simple logging and usage/cost tracking
|
50
50
|
|
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
<br/>
|
4
4
|
<picture>
|
5
|
-
<source srcset="
|
6
|
-
<img src="
|
5
|
+
<source srcset="https://raw.githubusercontent.com/grasp-technologies/grasp-agents/master/.assets/grasp-dark.svg" media="(prefers-color-scheme: dark)">
|
6
|
+
<img src="https://raw.githubusercontent.com/grasp-technologies/grasp-agents/master/.assets/grasp.svg" alt="Grasp Agents"/>
|
7
7
|
</picture>
|
8
8
|
<br/>
|
9
9
|
<br/>
|
@@ -25,10 +25,10 @@
|
|
25
25
|
- Agent state
|
26
26
|
- Shared context
|
27
27
|
- Transparent implementation of common agentic patterns:
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
28
|
+
- Single-agent loops with an optional "ReAct mode" to enforce reasoning between the tool calls
|
29
|
+
- Workflows (static communication topology), including loops
|
30
|
+
- Agents-as-tools for task delegation
|
31
|
+
- Freeform A2A communication via the in-process actor model
|
32
32
|
- Batch processing support outside of agentic loops
|
33
33
|
- Simple logging and usage/cost tracking
|
34
34
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{grasp_agents-0.2.2 → grasp_agents-0.2.3}/src/grasp_agents/rate_limiting/rate_limiter_chunked.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|