agent-runtime-core 0.1.3__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.
Files changed (40) hide show
  1. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/PKG-INFO +1 -1
  2. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/__init__.py +1 -1
  3. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/interfaces.py +6 -1
  4. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/pyproject.toml +1 -1
  5. agent_runtime_core-0.1.4/uv.lock +2416 -0
  6. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/.gitignore +0 -0
  7. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/LICENSE +0 -0
  8. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/README.md +0 -0
  9. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/config.py +0 -0
  10. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/events/__init__.py +0 -0
  11. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/events/base.py +0 -0
  12. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/events/memory.py +0 -0
  13. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/events/redis.py +0 -0
  14. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/events/sqlite.py +0 -0
  15. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/llm/__init__.py +0 -0
  16. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/llm/anthropic.py +0 -0
  17. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/llm/litellm_client.py +0 -0
  18. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/llm/openai.py +0 -0
  19. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/queue/__init__.py +0 -0
  20. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/queue/base.py +0 -0
  21. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/queue/memory.py +0 -0
  22. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/queue/redis.py +0 -0
  23. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/queue/sqlite.py +0 -0
  24. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/registry.py +0 -0
  25. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/runner.py +0 -0
  26. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/state/__init__.py +0 -0
  27. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/state/base.py +0 -0
  28. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/state/memory.py +0 -0
  29. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/state/redis.py +0 -0
  30. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/state/sqlite.py +0 -0
  31. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/testing.py +0 -0
  32. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/tracing/__init__.py +0 -0
  33. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/tracing/langfuse.py +0 -0
  34. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/agent_runtime/tracing/noop.py +0 -0
  35. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/tests/__init__.py +0 -0
  36. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/tests/test_events.py +0 -0
  37. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/tests/test_imports.py +0 -0
  38. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/tests/test_queue.py +0 -0
  39. {agent_runtime_core-0.1.3 → agent_runtime_core-0.1.4}/tests/test_state.py +0 -0
  40. {agent_runtime_core-0.1.3 → 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
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
@@ -34,7 +34,7 @@ Example usage:
34
34
  return RunResult(final_output={"message": "Hello!"})
35
35
  """
36
36
 
37
- __version__ = "0.1.3"
37
+ __version__ = "0.1.4"
38
38
 
39
39
  # Core interfaces
40
40
  from agent_runtime.interfaces import (
@@ -268,7 +268,12 @@ class ToolRegistry:
268
268
  ]
269
269
 
270
270
  def get_tool_definitions(self) -> list[dict]:
271
- """Alias for to_openai_format() for backwards compatibility."""
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:
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "agent-runtime-core"
7
- version = "0.1.3"
7
+ version = "0.1.4"
8
8
  description = "Framework-agnostic Python library for executing AI agents with consistent patterns"
9
9
  readme = "README.md"
10
10
  license = "MIT"