agentic-blocks 0.1.20__tar.gz → 0.1.22__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 (21) hide show
  1. {agentic_blocks-0.1.20/src/agentic_blocks.egg-info → agentic_blocks-0.1.22}/PKG-INFO +2 -1
  2. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/pyproject.toml +2 -1
  3. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22/src/agentic_blocks.egg-info}/PKG-INFO +2 -1
  4. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/src/agentic_blocks.egg-info/requires.txt +1 -0
  5. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/LICENSE +0 -0
  6. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/README.md +0 -0
  7. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/setup.cfg +0 -0
  8. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/src/agentic_blocks/__init__.py +0 -0
  9. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/src/agentic_blocks/agent.py +0 -0
  10. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/src/agentic_blocks/llm.py +0 -0
  11. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/src/agentic_blocks/mcp_client.py +0 -0
  12. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/src/agentic_blocks/messages.py +0 -0
  13. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/src/agentic_blocks/tracing/__init__.py +0 -0
  14. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/src/agentic_blocks/tracing/config.py +0 -0
  15. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/src/agentic_blocks/tracing/core.py +0 -0
  16. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/src/agentic_blocks/tracing/decorator.py +0 -0
  17. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/src/agentic_blocks/utils/tools_utils.py +0 -0
  18. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/src/agentic_blocks/visualization/visualize.py +0 -0
  19. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/src/agentic_blocks.egg-info/SOURCES.txt +0 -0
  20. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/src/agentic_blocks.egg-info/dependency_links.txt +0 -0
  21. {agentic_blocks-0.1.20 → agentic_blocks-0.1.22}/src/agentic_blocks.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentic-blocks
3
- Version: 0.1.20
3
+ Version: 0.1.22
4
4
  Summary: Simple building blocks for agentic AI systems with MCP client and conversation management
5
5
  Author-email: Magnus Bjelkenhed <bjelkenhed@gmail.com>
6
6
  License: MIT
@@ -26,6 +26,7 @@ Requires-Dist: openai
26
26
  Requires-Dist: langchain-core
27
27
  Requires-Dist: langfuse
28
28
  Requires-Dist: pocketflow
29
+ Requires-Dist: pocketflow-tracing
29
30
  Provides-Extra: test
30
31
  Requires-Dist: pytest; extra == "test"
31
32
  Provides-Extra: dev
@@ -14,7 +14,7 @@ agentic_blocks = []
14
14
 
15
15
  [project]
16
16
  name = "agentic-blocks"
17
- version = "0.1.20"
17
+ version = "0.1.22"
18
18
  description = "Simple building blocks for agentic AI systems with MCP client and conversation management"
19
19
  readme = "README.md"
20
20
  requires-python = ">=3.11"
@@ -42,6 +42,7 @@ dependencies = [
42
42
  "langchain-core",
43
43
  "langfuse",
44
44
  "pocketflow",
45
+ "pocketflow-tracing",
45
46
  ]
46
47
 
47
48
  [project.urls]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentic-blocks
3
- Version: 0.1.20
3
+ Version: 0.1.22
4
4
  Summary: Simple building blocks for agentic AI systems with MCP client and conversation management
5
5
  Author-email: Magnus Bjelkenhed <bjelkenhed@gmail.com>
6
6
  License: MIT
@@ -26,6 +26,7 @@ Requires-Dist: openai
26
26
  Requires-Dist: langchain-core
27
27
  Requires-Dist: langfuse
28
28
  Requires-Dist: pocketflow
29
+ Requires-Dist: pocketflow-tracing
29
30
  Provides-Extra: test
30
31
  Requires-Dist: pytest; extra == "test"
31
32
  Provides-Extra: dev
@@ -5,6 +5,7 @@ openai
5
5
  langchain-core
6
6
  langfuse
7
7
  pocketflow
8
+ pocketflow-tracing
8
9
 
9
10
  [dev]
10
11
  pytest
File without changes