agent-runtime-core 0.1.2__tar.gz → 0.1.4__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.
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/PKG-INFO +1 -1
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/__init__.py +1 -1
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/interfaces.py +9 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/pyproject.toml +1 -1
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/tests/test_imports.py +1 -1
- agent_runtime_core-0.1.4/uv.lock +2416 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/.gitignore +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/LICENSE +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/README.md +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/config.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/events/__init__.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/events/base.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/events/memory.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/events/redis.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/events/sqlite.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/llm/__init__.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/llm/anthropic.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/llm/litellm_client.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/llm/openai.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/queue/__init__.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/queue/base.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/queue/memory.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/queue/redis.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/queue/sqlite.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/registry.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/runner.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/state/__init__.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/state/base.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/state/memory.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/state/redis.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/state/sqlite.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/testing.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/tracing/__init__.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/tracing/langfuse.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/agent_runtime/tracing/noop.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/tests/__init__.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/tests/test_events.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/tests/test_queue.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/tests/test_state.py +0 -0
- {agent_runtime_core-0.1.2 → agent_runtime_core-0.1.4}/tests/test_testing.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-runtime-core
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Framework-agnostic Python library for executing AI agents with consistent patterns
|
|
5
5
|
Project-URL: Homepage, https://github.com/colstrom/agent_runtime
|
|
6
6
|
Project-URL: Repository, https://github.com/colstrom/agent_runtime
|
|
@@ -267,6 +267,15 @@ class ToolRegistry:
|
|
|
267
267
|
for tool in self._tools.values()
|
|
268
268
|
]
|
|
269
269
|
|
|
270
|
+
def get_tool_definitions(self) -> list[dict]:
|
|
271
|
+
"""
|
|
272
|
+
Alias for to_openai_format() - more intuitive/discoverable name.
|
|
273
|
+
|
|
274
|
+
Both method names are supported to prevent interface mismatches
|
|
275
|
+
when working from memory or creating fallback implementations.
|
|
276
|
+
"""
|
|
277
|
+
return self.to_openai_format()
|
|
278
|
+
|
|
270
279
|
async def execute(self, name: str, arguments: dict) -> Any:
|
|
271
280
|
"""
|
|
272
281
|
Execute a tool by name.
|