agent-runtime-core 0.9.1__tar.gz → 0.9.2__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 (82) hide show
  1. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/PKG-INFO +85 -3
  2. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/pyproject.toml +3 -3
  3. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/.gitignore +0 -0
  4. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/LICENSE +0 -0
  5. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/README.md +0 -0
  6. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/__init__.py +0 -0
  7. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/agentic_loop.py +0 -0
  8. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/config.py +0 -0
  9. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/config_schema.py +0 -0
  10. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/contexts.py +0 -0
  11. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/events/__init__.py +0 -0
  12. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/events/base.py +0 -0
  13. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/events/memory.py +0 -0
  14. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/events/redis.py +0 -0
  15. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/events/sqlite.py +0 -0
  16. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/files/__init__.py +0 -0
  17. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/files/base.py +0 -0
  18. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/files/ocr.py +0 -0
  19. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/files/processors.py +0 -0
  20. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/files/tools.py +0 -0
  21. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/files/vision.py +0 -0
  22. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/interfaces.py +0 -0
  23. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/json_runtime.py +0 -0
  24. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/llm/__init__.py +0 -0
  25. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/llm/anthropic.py +0 -0
  26. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/llm/litellm_client.py +0 -0
  27. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/llm/models_config.py +0 -0
  28. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/llm/openai.py +0 -0
  29. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/memory/__init__.py +0 -0
  30. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/memory/manager.py +0 -0
  31. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/memory/mixin.py +0 -0
  32. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/multi_agent.py +0 -0
  33. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/persistence/__init__.py +0 -0
  34. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/persistence/base.py +0 -0
  35. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/persistence/file.py +0 -0
  36. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/persistence/manager.py +0 -0
  37. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/privacy.py +0 -0
  38. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/queue/__init__.py +0 -0
  39. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/queue/base.py +0 -0
  40. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/queue/memory.py +0 -0
  41. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/queue/redis.py +0 -0
  42. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/queue/sqlite.py +0 -0
  43. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/rag/__init__.py +0 -0
  44. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/rag/chunking.py +0 -0
  45. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/rag/indexer.py +0 -0
  46. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/rag/retriever.py +0 -0
  47. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/registry.py +0 -0
  48. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/runner.py +0 -0
  49. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/state/__init__.py +0 -0
  50. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/state/base.py +0 -0
  51. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/state/memory.py +0 -0
  52. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/state/redis.py +0 -0
  53. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/state/sqlite.py +0 -0
  54. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/steps.py +0 -0
  55. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/testing.py +0 -0
  56. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/tool_calling_agent.py +0 -0
  57. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/tools.py +0 -0
  58. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/tracing/__init__.py +0 -0
  59. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/tracing/langfuse.py +0 -0
  60. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/tracing/noop.py +0 -0
  61. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/vectorstore/__init__.py +0 -0
  62. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/vectorstore/base.py +0 -0
  63. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/vectorstore/embeddings.py +0 -0
  64. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/vectorstore/sqlite_vec.py +0 -0
  65. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/agent_runtime_core/vectorstore/vertex.py +0 -0
  66. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/tests/__init__.py +0 -0
  67. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/tests/test_contexts.py +0 -0
  68. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/tests/test_events.py +0 -0
  69. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/tests/test_imports.py +0 -0
  70. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/tests/test_llm_anthropic.py +0 -0
  71. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/tests/test_memory.py +0 -0
  72. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/tests/test_multi_agent.py +0 -0
  73. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/tests/test_persistence.py +0 -0
  74. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/tests/test_privacy.py +0 -0
  75. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/tests/test_queue.py +0 -0
  76. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/tests/test_rag.py +0 -0
  77. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/tests/test_state.py +0 -0
  78. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/tests/test_steps.py +0 -0
  79. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/tests/test_testing.py +0 -0
  80. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/tests/test_tools.py +0 -0
  81. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/tests/test_vectorstore.py +0 -0
  82. {agent_runtime_core-0.9.1 → agent_runtime_core-0.9.2}/uv.lock +0 -0
@@ -1,16 +1,98 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agent-runtime-core
3
- Version: 0.9.1
3
+ Version: 0.9.2
4
4
  Summary: Framework-agnostic Python library for executing AI agents with consistent patterns
5
5
  Project-URL: Homepage, https://github.com/makemore/agent-runtime-core
6
6
  Project-URL: Repository, https://github.com/makemore/agent-runtime-core
7
7
  Author: Chris Barry
8
- License-Expression: MIT
8
+ License: Business Source License 1.1
9
+
10
+ License text copyright (c) 2017 MariaDB Corporation Ab, All Rights Reserved.
11
+ "Business Source License" is a trademark of MariaDB Corporation Ab.
12
+
13
+ Parameters
14
+
15
+ Licensor: Chris Barry
16
+ Licensed Work: agent-runtime-core
17
+ The Licensed Work is (c) 2025 Chris Barry
18
+ Additional Use Grant: You may use the Licensed Work for non-production purposes,
19
+ including development, testing, and evaluation. Production
20
+ use requires a commercial license from the Licensor.
21
+ Change Date: 2029-01-24
22
+ Change License: MIT
23
+
24
+ Terms
25
+
26
+ The Licensor hereby grants you the right to copy, modify, create derivative
27
+ works, redistribute, and make non-production use of the Licensed Work. The
28
+ Licensor may make an Additional Use Grant, above, permitting limited production
29
+ use.
30
+
31
+ Effective on the Change Date, or the fourth anniversary of the first publicly
32
+ available distribution of a specific version of the Licensed Work under this
33
+ License, whichever comes first, the Licensor hereby grants you rights under
34
+ the terms of the Change License, and the rights granted in the paragraph above
35
+ terminate.
36
+
37
+ If your use of the Licensed Work does not comply with the requirements
38
+ currently in effect as described in this License, you must purchase a
39
+ commercial license from the Licensor, its affiliated entities, or authorized
40
+ resellers, or you must refrain from using the Licensed Work.
41
+
42
+ All copies of the original and modified Licensed Work, and derivative works
43
+ of the Licensed Work, are subject to this License. This License applies
44
+ separately for each version of the Licensed Work and the Change Date may vary
45
+ for each version of the Licensed Work released by Licensor.
46
+
47
+ You must conspicuously display this License on each original or modified copy
48
+ of the Licensed Work. If you receive the Licensed Work in original or
49
+ modified form from a third party, the terms and conditions set forth in this
50
+ License apply to your use of that work.
51
+
52
+ Any use of the Licensed Work in violation of this License will automatically
53
+ terminate your rights under this License for the current and all other
54
+ versions of the Licensed Work.
55
+
56
+ This License does not grant you any right in any trademark or logo of
57
+ Licensor or its affiliates (provided that you may use a trademark or logo of
58
+ Licensor as expressly required by this License).
59
+
60
+ TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON
61
+ AN "AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS,
62
+ EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF
63
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND
64
+ TITLE.
65
+
66
+ MariaDB hereby grants you permission to use this License's text to license
67
+ your works, and to refer to it using the trademark "Business Source License",
68
+ as long as you comply with the Covenants of Licensor below.
69
+
70
+ Covenants of Licensor
71
+
72
+ In consideration of the right to use this License's text and the "Business
73
+ Source License" name and trademark, Licensor covenants to MariaDB, and to all
74
+ other recipients of the licensed work to be provided by Licensor:
75
+
76
+ 1. To specify as the Change License the GPL Version 2.0 or any later version,
77
+ or a license that is compatible with GPL Version 2.0 or a later version,
78
+ where "compatible" means that software provided under the Change License can
79
+ be included in a program with software provided under GPL Version 2.0 or a
80
+ later version. Licensor may specify additional Change Licenses without
81
+ limitation.
82
+
83
+ 2. To either: (a) specify an additional grant of rights to use that does not
84
+ impose any additional restriction on the right granted in this License, as
85
+ the Additional Use Grant; or (b) insert the text "None".
86
+
87
+ 3. To specify a Change Date.
88
+
89
+ 4. Not to modify this License in any other way.
90
+
9
91
  License-File: LICENSE
10
92
  Keywords: agents,ai,async,llm,runtime
11
93
  Classifier: Development Status :: 3 - Alpha
12
94
  Classifier: Intended Audience :: Developers
13
- Classifier: License :: OSI Approved :: MIT License
95
+ Classifier: License :: Other/Proprietary License
14
96
  Classifier: Programming Language :: Python :: 3
15
97
  Classifier: Programming Language :: Python :: 3.11
16
98
  Classifier: Programming Language :: Python :: 3.12
@@ -4,10 +4,10 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "agent-runtime-core"
7
- version = "0.9.1"
7
+ version = "0.9.2"
8
8
  description = "Framework-agnostic Python library for executing AI agents with consistent patterns"
9
9
  readme = "README.md"
10
- license = "MIT"
10
+ license = {file = "LICENSE"}
11
11
  requires-python = ">=3.11"
12
12
  authors = [
13
13
  { name = "Chris Barry" }
@@ -15,7 +15,7 @@ authors = [
15
15
  classifiers = [
16
16
  "Development Status :: 3 - Alpha",
17
17
  "Intended Audience :: Developers",
18
- "License :: OSI Approved :: MIT License",
18
+ "License :: Other/Proprietary License",
19
19
  "Programming Language :: Python :: 3",
20
20
  "Programming Language :: Python :: 3.11",
21
21
  "Programming Language :: Python :: 3.12",