agentic-blocks 0.1.0__tar.gz → 0.1.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.
- {agentic_blocks-0.1.0/src/agentic_blocks.egg-info → agentic_blocks-0.1.2}/PKG-INFO +1 -1
- {agentic_blocks-0.1.0 → agentic_blocks-0.1.2}/pyproject.toml +1 -1
- agentic_blocks-0.1.2/src/agentic_blocks/__init__.py +13 -0
- {agentic_blocks-0.1.0 → agentic_blocks-0.1.2/src/agentic_blocks.egg-info}/PKG-INFO +1 -1
- agentic_blocks-0.1.0/src/agentic_blocks/__init__.py +0 -8
- {agentic_blocks-0.1.0 → agentic_blocks-0.1.2}/LICENSE +0 -0
- {agentic_blocks-0.1.0 → agentic_blocks-0.1.2}/README.md +0 -0
- {agentic_blocks-0.1.0 → agentic_blocks-0.1.2}/setup.cfg +0 -0
- {agentic_blocks-0.1.0 → agentic_blocks-0.1.2}/src/agentic_blocks/mcp_client.py +0 -0
- {agentic_blocks-0.1.0 → agentic_blocks-0.1.2}/src/agentic_blocks/messages.py +0 -0
- {agentic_blocks-0.1.0 → agentic_blocks-0.1.2}/src/agentic_blocks.egg-info/SOURCES.txt +0 -0
- {agentic_blocks-0.1.0 → agentic_blocks-0.1.2}/src/agentic_blocks.egg-info/dependency_links.txt +0 -0
- {agentic_blocks-0.1.0 → agentic_blocks-0.1.2}/src/agentic_blocks.egg-info/requires.txt +0 -0
- {agentic_blocks-0.1.0 → agentic_blocks-0.1.2}/src/agentic_blocks.egg-info/top_level.txt +0 -0
@@ -14,7 +14,7 @@ agentic_blocks = []
|
|
14
14
|
|
15
15
|
[project]
|
16
16
|
name = "agentic-blocks"
|
17
|
-
version = "0.1.
|
17
|
+
version = "0.1.2"
|
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"
|
@@ -0,0 +1,13 @@
|
|
1
|
+
"""Agentic Blocks - Building blocks for agentic systems."""
|
2
|
+
|
3
|
+
from .mcp_client import MCPClient, MCPEndpointError
|
4
|
+
from .messages import Messages
|
5
|
+
|
6
|
+
# Get version from package metadata
|
7
|
+
try:
|
8
|
+
from importlib.metadata import version
|
9
|
+
__version__ = version("agentic-blocks")
|
10
|
+
except Exception:
|
11
|
+
__version__ = "unknown"
|
12
|
+
|
13
|
+
__all__ = ["MCPClient", "MCPEndpointError", "Messages"]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{agentic_blocks-0.1.0 → agentic_blocks-0.1.2}/src/agentic_blocks.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|