agent-runtime-core 0.1.3__tar.gz → 0.1.5__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.3 → agent_runtime_core-0.1.5}/PKG-INFO +3 -3
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/__init__.py +1 -1
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/interfaces.py +6 -1
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/llm/anthropic.py +1 -1
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/llm/litellm_client.py +1 -1
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/llm/openai.py +1 -1
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/tracing/langfuse.py +1 -1
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/pyproject.toml +3 -3
- agent_runtime_core-0.1.5/uv.lock +2416 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/.gitignore +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/LICENSE +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/README.md +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/config.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/events/__init__.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/events/base.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/events/memory.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/events/redis.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/events/sqlite.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/llm/__init__.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/queue/__init__.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/queue/base.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/queue/memory.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/queue/redis.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/queue/sqlite.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/registry.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/runner.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/state/__init__.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/state/base.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/state/memory.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/state/redis.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/state/sqlite.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/testing.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/tracing/__init__.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/agent_runtime/tracing/noop.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/tests/__init__.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/tests/test_events.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/tests/test_imports.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/tests/test_queue.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/tests/test_state.py +0 -0
- {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.5}/tests/test_testing.py +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-runtime-core
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5
|
|
4
4
|
Summary: Framework-agnostic Python library for executing AI agents with consistent patterns
|
|
5
|
-
Project-URL: Homepage, https://github.com/colstrom/
|
|
6
|
-
Project-URL: Repository, https://github.com/colstrom/
|
|
5
|
+
Project-URL: Homepage, https://github.com/colstrom/agent_runtime_core
|
|
6
|
+
Project-URL: Repository, https://github.com/colstrom/agent_runtime_core
|
|
7
7
|
Author: Chris Olstrom
|
|
8
8
|
License-Expression: MIT
|
|
9
9
|
License-File: LICENSE
|
|
@@ -268,7 +268,12 @@ class ToolRegistry:
|
|
|
268
268
|
]
|
|
269
269
|
|
|
270
270
|
def get_tool_definitions(self) -> list[dict]:
|
|
271
|
-
"""
|
|
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
|
+
"""
|
|
272
277
|
return self.to_openai_format()
|
|
273
278
|
|
|
274
279
|
async def execute(self, name: str, arguments: dict) -> Any:
|
|
@@ -40,7 +40,7 @@ class AnthropicClient(LLMClient):
|
|
|
40
40
|
if AsyncAnthropic is None:
|
|
41
41
|
raise ImportError(
|
|
42
42
|
"anthropic package is required for AnthropicClient. "
|
|
43
|
-
"Install it with: pip install
|
|
43
|
+
"Install it with: pip install agent-runtime-core[anthropic]"
|
|
44
44
|
)
|
|
45
45
|
|
|
46
46
|
from agent_runtime.config import get_config
|
|
@@ -38,7 +38,7 @@ class LiteLLMClient(LLMClient):
|
|
|
38
38
|
if litellm is None:
|
|
39
39
|
raise ImportError(
|
|
40
40
|
"litellm package is required for LiteLLMClient. "
|
|
41
|
-
"Install it with: pip install
|
|
41
|
+
"Install it with: pip install agent-runtime-core[litellm]"
|
|
42
42
|
)
|
|
43
43
|
|
|
44
44
|
from agent_runtime.config import get_config
|
|
@@ -42,7 +42,7 @@ class OpenAIClient(LLMClient):
|
|
|
42
42
|
if AsyncOpenAI is None:
|
|
43
43
|
raise ImportError(
|
|
44
44
|
"openai package is required for OpenAIClient. "
|
|
45
|
-
"Install it with: pip install
|
|
45
|
+
"Install it with: pip install agent-runtime-core[openai]"
|
|
46
46
|
)
|
|
47
47
|
|
|
48
48
|
from agent_runtime.config import get_config
|
|
@@ -37,7 +37,7 @@ class LangfuseTraceSink(TraceSink):
|
|
|
37
37
|
if Langfuse is None:
|
|
38
38
|
raise ImportError(
|
|
39
39
|
"langfuse package is required for LangfuseTraceSink. "
|
|
40
|
-
"Install with: pip install
|
|
40
|
+
"Install with: pip install agent-runtime-core[langfuse]"
|
|
41
41
|
)
|
|
42
42
|
|
|
43
43
|
self._client = Langfuse(
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "agent-runtime-core"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.5"
|
|
8
8
|
description = "Framework-agnostic Python library for executing AI agents with consistent patterns"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -48,8 +48,8 @@ dev = [
|
|
|
48
48
|
]
|
|
49
49
|
|
|
50
50
|
[project.urls]
|
|
51
|
-
Homepage = "https://github.com/colstrom/
|
|
52
|
-
Repository = "https://github.com/colstrom/
|
|
51
|
+
Homepage = "https://github.com/colstrom/agent_runtime_core"
|
|
52
|
+
Repository = "https://github.com/colstrom/agent_runtime_core"
|
|
53
53
|
|
|
54
54
|
[tool.hatch.build.targets.wheel]
|
|
55
55
|
packages = ["agent_runtime"]
|