agent-runtime-core 0.1.2__py3-none-any.whl → 0.1.3__py3-none-any.whl
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/__init__.py +1 -1
- agent_runtime/interfaces.py +4 -0
- {agent_runtime_core-0.1.2.dist-info → agent_runtime_core-0.1.3.dist-info}/METADATA +1 -1
- {agent_runtime_core-0.1.2.dist-info → agent_runtime_core-0.1.3.dist-info}/RECORD +6 -6
- {agent_runtime_core-0.1.2.dist-info → agent_runtime_core-0.1.3.dist-info}/WHEEL +0 -0
- {agent_runtime_core-0.1.2.dist-info → agent_runtime_core-0.1.3.dist-info}/licenses/LICENSE +0 -0
agent_runtime/__init__.py
CHANGED
agent_runtime/interfaces.py
CHANGED
|
@@ -267,6 +267,10 @@ class ToolRegistry:
|
|
|
267
267
|
for tool in self._tools.values()
|
|
268
268
|
]
|
|
269
269
|
|
|
270
|
+
def get_tool_definitions(self) -> list[dict]:
|
|
271
|
+
"""Alias for to_openai_format() for backwards compatibility."""
|
|
272
|
+
return self.to_openai_format()
|
|
273
|
+
|
|
270
274
|
async def execute(self, name: str, arguments: dict) -> Any:
|
|
271
275
|
"""
|
|
272
276
|
Execute a tool by name.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-runtime-core
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
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
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
agent_runtime/__init__.py,sha256=
|
|
1
|
+
agent_runtime/__init__.py,sha256=KZxgCDGNeY8kXH-OGlTguIGwRHQPKz-fCgKQq_a0Ld8,2430
|
|
2
2
|
agent_runtime/config.py,sha256=ZRjpILjsjeh_kl7873DtV2g_zaTrfdkb3NgdQ6ndb5Y,4981
|
|
3
|
-
agent_runtime/interfaces.py,sha256=
|
|
3
|
+
agent_runtime/interfaces.py,sha256=_sRH34NfnD8AVtRLyDXq2NCAPjatJ8PC-MSjfAlQ37s,10265
|
|
4
4
|
agent_runtime/registry.py,sha256=sa0speDFxFCZlXoCge8cPNqWYUeWHyazs6tBer5Jg1w,1471
|
|
5
5
|
agent_runtime/runner.py,sha256=Sb2FfSJvATaL7ideQZy2JhVZp0sSYGVIov93E-gxODU,12741
|
|
6
6
|
agent_runtime/testing.py,sha256=aqN67RdbTdYf_rJfp5pEpn2s_tkeU-3oSpzTdADxH5g,11126
|
|
@@ -26,7 +26,7 @@ agent_runtime/state/sqlite.py,sha256=NwuiTBXELb2tyOoH91MZqRJaCk9h8PskyY2VUc5EMr0
|
|
|
26
26
|
agent_runtime/tracing/__init__.py,sha256=m4WzfgJpnV5XCCoMpBYZdJU_JTkAdhEhl7M7tpf62RY,1246
|
|
27
27
|
agent_runtime/tracing/langfuse.py,sha256=uThF0P6f1VJ1l1b7UuiFQ-oHZ-tCa9MbbHvTqkSuQ2A,3650
|
|
28
28
|
agent_runtime/tracing/noop.py,sha256=MOm5eTrnf3d4WhiWrwVU5Kd3GmJ1903V0U7U3Qwho7U,746
|
|
29
|
-
agent_runtime_core-0.1.
|
|
30
|
-
agent_runtime_core-0.1.
|
|
31
|
-
agent_runtime_core-0.1.
|
|
32
|
-
agent_runtime_core-0.1.
|
|
29
|
+
agent_runtime_core-0.1.3.dist-info/METADATA,sha256=BIGLruppweXY5x9EupTMY7Ru8KwiViIKyxuz92BLIqk,12478
|
|
30
|
+
agent_runtime_core-0.1.3.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
31
|
+
agent_runtime_core-0.1.3.dist-info/licenses/LICENSE,sha256=PcOO8aiOZ4H2MWYeKIis3o6xTCT1hNkDyCxHZhh1NeM,1070
|
|
32
|
+
agent_runtime_core-0.1.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|