agent-runtime-core 0.7.1__py3-none-any.whl → 0.8.0__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agent-runtime-core
3
- Version: 0.7.1
3
+ Version: 0.8.0
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
@@ -19,10 +19,19 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
19
19
  Requires-Python: >=3.11
20
20
  Provides-Extra: all
21
21
  Requires-Dist: anthropic>=0.18.0; extra == 'all'
22
+ Requires-Dist: azure-ai-formrecognizer>=3.3.0; extra == 'all'
23
+ Requires-Dist: boto3>=1.34.0; extra == 'all'
22
24
  Requires-Dist: google-cloud-aiplatform>=1.38.0; extra == 'all'
25
+ Requires-Dist: google-cloud-vision>=3.0.0; extra == 'all'
26
+ Requires-Dist: google-generativeai>=0.4.0; extra == 'all'
23
27
  Requires-Dist: langfuse>=2.0.0; extra == 'all'
24
28
  Requires-Dist: litellm>=1.0.0; extra == 'all'
25
29
  Requires-Dist: openai>=1.0.0; extra == 'all'
30
+ Requires-Dist: openpyxl>=3.1.0; extra == 'all'
31
+ Requires-Dist: pillow>=10.0.0; extra == 'all'
32
+ Requires-Dist: pypdf>=4.0.0; extra == 'all'
33
+ Requires-Dist: pytesseract>=0.3.10; extra == 'all'
34
+ Requires-Dist: python-docx>=1.0.0; extra == 'all'
26
35
  Requires-Dist: redis>=5.0.0; extra == 'all'
27
36
  Requires-Dist: sqlite-vec>=0.1.0; extra == 'all'
28
37
  Provides-Extra: anthropic
@@ -33,10 +42,30 @@ Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
33
42
  Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
34
43
  Requires-Dist: pytest>=8.0.0; extra == 'dev'
35
44
  Requires-Dist: ruff>=0.1.0; extra == 'dev'
45
+ Provides-Extra: files
46
+ Requires-Dist: openpyxl>=3.1.0; extra == 'files'
47
+ Requires-Dist: pillow>=10.0.0; extra == 'files'
48
+ Requires-Dist: pypdf>=4.0.0; extra == 'files'
49
+ Requires-Dist: python-docx>=1.0.0; extra == 'files'
50
+ Provides-Extra: files-all
51
+ Requires-Dist: azure-ai-formrecognizer>=3.3.0; extra == 'files-all'
52
+ Requires-Dist: boto3>=1.34.0; extra == 'files-all'
53
+ Requires-Dist: google-cloud-vision>=3.0.0; extra == 'files-all'
54
+ Requires-Dist: google-generativeai>=0.4.0; extra == 'files-all'
55
+ Requires-Dist: openpyxl>=3.1.0; extra == 'files-all'
56
+ Requires-Dist: pillow>=10.0.0; extra == 'files-all'
57
+ Requires-Dist: pypdf>=4.0.0; extra == 'files-all'
58
+ Requires-Dist: pytesseract>=0.3.10; extra == 'files-all'
59
+ Requires-Dist: python-docx>=1.0.0; extra == 'files-all'
36
60
  Provides-Extra: langfuse
37
61
  Requires-Dist: langfuse>=2.0.0; extra == 'langfuse'
38
62
  Provides-Extra: litellm
39
63
  Requires-Dist: litellm>=1.0.0; extra == 'litellm'
64
+ Provides-Extra: ocr
65
+ Requires-Dist: azure-ai-formrecognizer>=3.3.0; extra == 'ocr'
66
+ Requires-Dist: boto3>=1.34.0; extra == 'ocr'
67
+ Requires-Dist: google-cloud-vision>=3.0.0; extra == 'ocr'
68
+ Requires-Dist: pytesseract>=0.3.10; extra == 'ocr'
40
69
  Provides-Extra: openai
41
70
  Requires-Dist: openai>=1.0.0; extra == 'openai'
42
71
  Provides-Extra: redis
@@ -45,6 +74,10 @@ Provides-Extra: sqlite-vec
45
74
  Requires-Dist: sqlite-vec>=0.1.0; extra == 'sqlite-vec'
46
75
  Provides-Extra: vertex
47
76
  Requires-Dist: google-cloud-aiplatform>=1.38.0; extra == 'vertex'
77
+ Provides-Extra: vision
78
+ Requires-Dist: anthropic>=0.18.0; extra == 'vision'
79
+ Requires-Dist: google-generativeai>=0.4.0; extra == 'vision'
80
+ Requires-Dist: openai>=1.0.0; extra == 'vision'
48
81
  Description-Content-Type: text/markdown
49
82
 
50
83
  # agent-runtime-core
@@ -59,6 +92,7 @@ A lightweight, framework-agnostic Python library for building AI agent systems.
59
92
 
60
93
  | Version | Date | Changes |
61
94
  |---------|------|---------|
95
+ | **0.8.0** | 2026-01-28 | **File Ingestion** - Pluggable file processors (PDF, images, DOCX, XLSX, CSV), OCR providers (Tesseract, Google Vision, AWS Textract, Azure), AI vision (OpenAI, Anthropic, Gemini), file read/write tools |
62
96
  | **0.7.1** | 2026-01-24 | RAG module, vector stores (sqlite-vec, Vertex AI), memory system, multi-agent support, agentic loop, JSON runtime |
63
97
  | **0.6.0** | 2025-01-23 | Enhanced registry with factory functions and class registration |
64
98
  | **0.5.2** | 2025-01-14 | Add ToolCallingAgent base class, execute_with_events helper |
@@ -1,4 +1,4 @@
1
- agent_runtime_core/__init__.py,sha256=fNQv_lSufnwrfGYKj6HduUOHzPtAZXqh5dUFShR9kGQ,7117
1
+ agent_runtime_core/__init__.py,sha256=Vn-32GMh-6S5k6e4fiejAbNxjnbsoskf-Um1Ni2dgog,7117
2
2
  agent_runtime_core/agentic_loop.py,sha256=DJ3RXaQLFlHMf-icQjpTJkAvdfjkPBSGN1S_iy3mf64,9635
3
3
  agent_runtime_core/config.py,sha256=WVfcIluFvf2zC_NKk2WuJhhPIGQNcuxmZV9TCg4t13o,7297
4
4
  agent_runtime_core/config_schema.py,sha256=1t2ZF5Rk2oRbeYpRATMdFgbvgTPtedIQO6xej4cELh0,10576
@@ -17,6 +17,12 @@ agent_runtime_core/events/base.py,sha256=NfHYyoczxr40Er5emROi_aY_07m5hDrKsn31pdW
17
17
  agent_runtime_core/events/memory.py,sha256=9z4tY8XB8xDg3ybHsIwilOcRo7HY-vB-8vxiz6O54BE,2491
18
18
  agent_runtime_core/events/redis.py,sha256=7PsUO2-iqrdGCJZUOq1IdzwDdNhqT5mwEnH5xy2Fklo,5874
19
19
  agent_runtime_core/events/sqlite.py,sha256=ZpGgeuQujYT8pkDsiXDoFXTcBf2KqzoWX4D4J9xkmeE,5097
20
+ agent_runtime_core/files/__init__.py,sha256=VKhFWGtIDeXUP96DT7Du_vHKvu8aRCogm-LLSbAtZT4,1840
21
+ agent_runtime_core/files/base.py,sha256=RxAx1msYWy11sV6IDn6J7eVim29n_mHV7FF0gLi5Rjc,9742
22
+ agent_runtime_core/files/ocr.py,sha256=K1RU1JYo10SEtzC7tQymahZhvELvO3L2R_5fXL-rbxo,12111
23
+ agent_runtime_core/files/processors.py,sha256=KudeacTDxaVyUtCjBpIg1OuByi4_71WP9RDpBGQdx3U,14527
24
+ agent_runtime_core/files/tools.py,sha256=Dky2CxFLUL8GICIwU1kbNV-IwnszWr1WXhJ3FItGRd4,10856
25
+ agent_runtime_core/files/vision.py,sha256=nM8xKx-yEblwPFr5tM9JRrFkitTPLDkLU1fSDHLvuW8,10119
20
26
  agent_runtime_core/llm/__init__.py,sha256=7-tA1FmPkhY1l-lHhzd84MQf2bjs26bcgb8oAlglc58,4605
21
27
  agent_runtime_core/llm/anthropic.py,sha256=AX2QJoQf-4uLDCxWFs71XfD11IMN6iI3gMPA25F3KrM,12239
22
28
  agent_runtime_core/llm/litellm_client.py,sha256=c-O-lE08cT3ne0xSOvSDezPL6hCiA69p3HnB451Ipe4,5193
@@ -51,7 +57,7 @@ agent_runtime_core/vectorstore/base.py,sha256=y1ZZCbAMkFkbHwOqzaK0JUBAVjbnNwwdSn
51
57
  agent_runtime_core/vectorstore/embeddings.py,sha256=WTTiId9Q6I7cxHuiInYHEV8EWS2HyRYRW1YDPALGUVY,7749
52
58
  agent_runtime_core/vectorstore/sqlite_vec.py,sha256=B4KPYdSkm-af-uqltqMga1uXslC19Uaeuy1sXfKOjyo,10552
53
59
  agent_runtime_core/vectorstore/vertex.py,sha256=a1Ps_gMYqTlWUkNALpgMVEX6r6Zw_8gN5pZ59-vH7Ww,9695
54
- agent_runtime_core-0.7.1.dist-info/METADATA,sha256=AXI1AH7ZFAVmiwpI7pCP3pq0fdJUzvzbES_G7QjpSLA,30560
55
- agent_runtime_core-0.7.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
56
- agent_runtime_core-0.7.1.dist-info/licenses/LICENSE,sha256=fDlWep3_mUrj8KHV_jk275tHVEW7_9sJRhkNuGCZ_TA,1068
57
- agent_runtime_core-0.7.1.dist-info/RECORD,,
60
+ agent_runtime_core-0.8.0.dist-info/METADATA,sha256=nC_KSql_QyKBPfaGxyakWQhTR_z15gj3X068l7viqqY,32431
61
+ agent_runtime_core-0.8.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
62
+ agent_runtime_core-0.8.0.dist-info/licenses/LICENSE,sha256=fDlWep3_mUrj8KHV_jk275tHVEW7_9sJRhkNuGCZ_TA,1068
63
+ agent_runtime_core-0.8.0.dist-info/RECORD,,