idun-agent-engine 0.2.3__py3-none-any.whl → 0.2.5__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,3 +1,3 @@
1
1
  """Version information for Idun Agent Engine."""
2
2
 
3
- __version__ = "0.2.3"
3
+ __version__ = "0.2.5"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: idun-agent-engine
3
- Version: 0.2.3
3
+ Version: 0.2.5
4
4
  Summary: Python SDK and runtime to serve AI agents with FastAPI, LangGraph, and observability.
5
5
  Project-URL: Homepage, https://github.com/geoffreyharrazi/idun-agent-platform
6
6
  Project-URL: Repository, https://github.com/geoffreyharrazi/idun-agent-platform
@@ -27,7 +27,7 @@ Requires-Dist: click>=8.2.1
27
27
  Requires-Dist: fastapi<0.117.0,>=0.116.1
28
28
  Requires-Dist: google-adk<2.0.0,>=1.9.0
29
29
  Requires-Dist: httpx<0.29.0,>=0.28.1
30
- Requires-Dist: idun-agent-schema<0.3.0,>=0.2.3
30
+ Requires-Dist: idun-agent-schema<0.3.0,>=0.2.5
31
31
  Requires-Dist: langchain-core<0.4.0,>=0.3.72
32
32
  Requires-Dist: langchain-google-vertexai<3.0.0,>=2.0.27
33
33
  Requires-Dist: langchain<0.4,>=0.3.27
@@ -1,5 +1,5 @@
1
1
  idun_agent_engine/__init__.py,sha256=PhOL6foq5V0eXaoXw7xKUeCWXIWrOHrAFB8OuJnBqyM,550
2
- idun_agent_engine/_version.py,sha256=1v6S8Eup4AYt6C8Zu5chU9dxZ1d6kTNM_PjYAaS09vk,72
2
+ idun_agent_engine/_version.py,sha256=I5-7-uhpm_19BECbYd0Vlz1Feg_ET0sWIZldIalT69c,72
3
3
  idun_agent_engine/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  idun_agent_engine/agent/__init__.py,sha256=foyOoRdI_04q1b6f2A5EXEpWSCKjZxpgWMWrKcsHNl8,220
5
5
  idun_agent_engine/agent/base.py,sha256=xzuHIV_P7EwGyK7V2qbFUZccpm5xHaAjAkIxJL4tAwo,2856
@@ -35,9 +35,9 @@ idun_platform_cli/main.py,sha256=jWL7Ob0p4KdRUqgPTP_EB68n7z2LyMKC2DeUsfWlBO4,200
35
35
  idun_platform_cli/groups/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
36
  idun_platform_cli/groups/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
37
  idun_platform_cli/groups/agent/main.py,sha256=QMGQi3JZ76SeFI3miIjVWpMt0L-hGz5FwxtTPQX4-Uw,301
38
- idun_platform_cli/groups/agent/package.py,sha256=1E_C_9ODKrPH0OqQa3v9lTehKcmxNBcuKyuxArCRIms,2525
38
+ idun_platform_cli/groups/agent/package.py,sha256=5VuEHSkcAqTbNQjwRy3tBz1sbm9kaJHqIhshFhRc19Q,2525
39
39
  idun_platform_cli/groups/agent/serve.py,sha256=IHC3vp_R45RW4enkNQCE-SP_J9GkmapAycktKcxT9Y8,3800
40
- idun_agent_engine-0.2.3.dist-info/METADATA,sha256=g157X6JL2zpprBDJKgrlcUwmkKUDexxXZVSW_FWzTaI,8660
41
- idun_agent_engine-0.2.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
42
- idun_agent_engine-0.2.3.dist-info/entry_points.txt,sha256=XG3oxlSOaCrYKT1oyhKa0Ag1iJPMZ-WF6gaV_mzIJW4,52
43
- idun_agent_engine-0.2.3.dist-info/RECORD,,
40
+ idun_agent_engine-0.2.5.dist-info/METADATA,sha256=3xUtr_6v8iNIg2vSd5-TTEhAYIAes5sCkV03KD5nyNo,8660
41
+ idun_agent_engine-0.2.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
42
+ idun_agent_engine-0.2.5.dist-info/entry_points.txt,sha256=XG3oxlSOaCrYKT1oyhKa0Ag1iJPMZ-WF6gaV_mzIJW4,52
43
+ idun_agent_engine-0.2.5.dist-info/RECORD,,
@@ -39,8 +39,8 @@ def generate_dockerfile(dependency: Dependency) -> str:
39
39
  requirements_dockerfile = f"""FROM python:3.13-slim
40
40
  RUN apt-get update && pip install uv
41
41
 
42
- RUN uv pip install idun-agent-schema==0.2.3 --system
43
- RUN uv pip install idun-agent-engine==0.2.3 --system
42
+ RUN uv pip install idun-agent-schema==0.2.5 --system
43
+ RUN uv pip install idun-agent-engine==0.2.5 --system
44
44
 
45
45
  COPY . .
46
46
  RUN uv pip install -r requirements.txt --system