agent-runtime-core 0.1.4__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.
Files changed (40) hide show
  1. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/PKG-INFO +3 -3
  2. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/__init__.py +1 -1
  3. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/llm/anthropic.py +1 -1
  4. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/llm/litellm_client.py +1 -1
  5. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/llm/openai.py +1 -1
  6. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/tracing/langfuse.py +1 -1
  7. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/pyproject.toml +3 -3
  8. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/.gitignore +0 -0
  9. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/LICENSE +0 -0
  10. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/README.md +0 -0
  11. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/config.py +0 -0
  12. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/events/__init__.py +0 -0
  13. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/events/base.py +0 -0
  14. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/events/memory.py +0 -0
  15. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/events/redis.py +0 -0
  16. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/events/sqlite.py +0 -0
  17. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/interfaces.py +0 -0
  18. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/llm/__init__.py +0 -0
  19. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/queue/__init__.py +0 -0
  20. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/queue/base.py +0 -0
  21. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/queue/memory.py +0 -0
  22. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/queue/redis.py +0 -0
  23. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/queue/sqlite.py +0 -0
  24. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/registry.py +0 -0
  25. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/runner.py +0 -0
  26. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/state/__init__.py +0 -0
  27. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/state/base.py +0 -0
  28. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/state/memory.py +0 -0
  29. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/state/redis.py +0 -0
  30. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/state/sqlite.py +0 -0
  31. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/testing.py +0 -0
  32. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/tracing/__init__.py +0 -0
  33. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/agent_runtime/tracing/noop.py +0 -0
  34. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/tests/__init__.py +0 -0
  35. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/tests/test_events.py +0 -0
  36. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/tests/test_imports.py +0 -0
  37. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/tests/test_queue.py +0 -0
  38. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/tests/test_state.py +0 -0
  39. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/tests/test_testing.py +0 -0
  40. {agent_runtime_core-0.1.4 → agent_runtime_core-0.1.5}/uv.lock +0 -0
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agent-runtime-core
3
- Version: 0.1.4
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/agent_runtime
6
- Project-URL: Repository, https://github.com/colstrom/agent_runtime
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
@@ -34,7 +34,7 @@ Example usage:
34
34
  return RunResult(final_output={"message": "Hello!"})
35
35
  """
36
36
 
37
- __version__ = "0.1.4"
37
+ __version__ = "0.1.5"
38
38
 
39
39
  # Core interfaces
40
40
  from agent_runtime.interfaces import (
@@ -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 agent_runtime[anthropic]"
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 agent_runtime[litellm]"
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 agent_runtime[openai]"
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 agent_runtime[langfuse]"
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.4"
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/agent_runtime"
52
- Repository = "https://github.com/colstrom/agent_runtime"
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"]