agent-runtime-core 0.5.0__tar.gz → 0.5.1__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 (47) hide show
  1. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/LICENSE +1 -1
  2. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/PKG-INFO +4 -4
  3. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/__init__.py +1 -1
  4. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/pyproject.toml +4 -4
  5. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/.gitignore +0 -0
  6. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/README.md +0 -0
  7. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/config.py +0 -0
  8. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/events/__init__.py +0 -0
  9. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/events/base.py +0 -0
  10. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/events/memory.py +0 -0
  11. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/events/redis.py +0 -0
  12. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/events/sqlite.py +0 -0
  13. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/interfaces.py +0 -0
  14. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/llm/__init__.py +0 -0
  15. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/llm/anthropic.py +0 -0
  16. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/llm/litellm_client.py +0 -0
  17. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/llm/openai.py +0 -0
  18. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/persistence/__init__.py +0 -0
  19. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/persistence/base.py +0 -0
  20. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/persistence/file.py +0 -0
  21. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/persistence/manager.py +0 -0
  22. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/queue/__init__.py +0 -0
  23. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/queue/base.py +0 -0
  24. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/queue/memory.py +0 -0
  25. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/queue/redis.py +0 -0
  26. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/queue/sqlite.py +0 -0
  27. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/registry.py +0 -0
  28. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/runner.py +0 -0
  29. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/state/__init__.py +0 -0
  30. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/state/base.py +0 -0
  31. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/state/memory.py +0 -0
  32. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/state/redis.py +0 -0
  33. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/state/sqlite.py +0 -0
  34. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/steps.py +0 -0
  35. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/testing.py +0 -0
  36. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/tracing/__init__.py +0 -0
  37. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/tracing/langfuse.py +0 -0
  38. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/agent_runtime_core/tracing/noop.py +0 -0
  39. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/tests/__init__.py +0 -0
  40. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/tests/test_events.py +0 -0
  41. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/tests/test_imports.py +0 -0
  42. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/tests/test_persistence.py +0 -0
  43. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/tests/test_queue.py +0 -0
  44. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/tests/test_state.py +0 -0
  45. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/tests/test_steps.py +0 -0
  46. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/tests/test_testing.py +0 -0
  47. {agent_runtime_core-0.5.0 → agent_runtime_core-0.5.1}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Chris Olstrom
3
+ Copyright (c) 2026 Chris Barry
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agent-runtime-core
3
- Version: 0.5.0
3
+ Version: 0.5.1
4
4
  Summary: Framework-agnostic Python library for executing AI agents with consistent patterns
5
- Project-URL: Homepage, https://github.com/colstrom/agent_runtime_core
6
- Project-URL: Repository, https://github.com/colstrom/agent_runtime_core
7
- Author: Chris Olstrom
5
+ Project-URL: Homepage, https://github.com/makemore/agent-runtime-core
6
+ Project-URL: Repository, https://github.com/makemore/agent-runtime-core
7
+ Author: Chris Barry
8
8
  License-Expression: MIT
9
9
  License-File: LICENSE
10
10
  Keywords: agents,ai,async,llm,runtime
@@ -34,7 +34,7 @@ Example usage:
34
34
  return RunResult(final_output={"message": "Hello!"})
35
35
  """
36
36
 
37
- __version__ = "0.5.0"
37
+ __version__ = "0.5.1"
38
38
 
39
39
  # Core interfaces
40
40
  from agent_runtime_core.interfaces import (
@@ -4,13 +4,13 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "agent-runtime-core"
7
- version = "0.5.0"
7
+ version = "0.5.1"
8
8
  description = "Framework-agnostic Python library for executing AI agents with consistent patterns"
9
9
  readme = "README.md"
10
10
  license = "MIT"
11
11
  requires-python = ">=3.11"
12
12
  authors = [
13
- { name = "Chris Olstrom" }
13
+ { name = "Chris Barry" }
14
14
  ]
15
15
  classifiers = [
16
16
  "Development Status :: 3 - Alpha",
@@ -48,8 +48,8 @@ dev = [
48
48
  ]
49
49
 
50
50
  [project.urls]
51
- Homepage = "https://github.com/colstrom/agent_runtime_core"
52
- Repository = "https://github.com/colstrom/agent_runtime_core"
51
+ Homepage = "https://github.com/makemore/agent-runtime-core"
52
+ Repository = "https://github.com/makemore/agent-runtime-core"
53
53
 
54
54
  [tool.hatch.build.targets.wheel]
55
55
  packages = ["agent_runtime_core"]