agentfs-sdk 0.6.0rc3__tar.gz → 0.6.0rc4__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.
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/PKG-INFO +1 -1
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/agentfs_sdk/__init__.py +1 -1
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/agentfs_sdk.egg-info/PKG-INFO +1 -1
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/pyproject.toml +1 -1
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/MANIFEST.in +0 -0
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/README.md +0 -0
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/agentfs_sdk/agentfs.py +0 -0
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/agentfs_sdk/constants.py +0 -0
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/agentfs_sdk/errors.py +0 -0
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/agentfs_sdk/filesystem.py +0 -0
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/agentfs_sdk/guards.py +0 -0
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/agentfs_sdk/kvstore.py +0 -0
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/agentfs_sdk/toolcalls.py +0 -0
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/agentfs_sdk.egg-info/SOURCES.txt +0 -0
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/agentfs_sdk.egg-info/dependency_links.txt +0 -0
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/agentfs_sdk.egg-info/requires.txt +0 -0
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/agentfs_sdk.egg-info/top_level.txt +0 -0
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/setup.cfg +0 -0
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/tests/test_agentfs.py +0 -0
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/tests/test_basic.py +0 -0
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/tests/test_filesystem.py +0 -0
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/tests/test_kvstore.py +0 -0
- {agentfs_sdk-0.6.0rc3 → agentfs_sdk-0.6.0rc4}/tests/test_toolcalls.py +0 -0
|
@@ -9,7 +9,7 @@ from .filesystem import S_IFDIR, S_IFLNK, S_IFMT, S_IFREG, Filesystem, Stats
|
|
|
9
9
|
from .kvstore import KvStore
|
|
10
10
|
from .toolcalls import ToolCall, ToolCalls, ToolCallStats
|
|
11
11
|
|
|
12
|
-
__version__ = "0.6.0-pre.
|
|
12
|
+
__version__ = "0.6.0-pre.4"
|
|
13
13
|
|
|
14
14
|
__all__ = [
|
|
15
15
|
"AgentFS",
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "agentfs-sdk"
|
|
7
|
-
version = "0.6.0-pre.
|
|
7
|
+
version = "0.6.0-pre.4"
|
|
8
8
|
description = "AgentFS Python SDK - A filesystem and key-value store for AI agents"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
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
|