idun-agent-engine 0.2.2__py3-none-any.whl → 0.2.4__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.2"
3
+ __version__ = "0.2.4"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: idun-agent-engine
3
- Version: 0.2.2
3
+ Version: 0.2.4
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.2
30
+ Requires-Dist: idun-agent-schema<0.3.0,>=0.2.4
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=sutD0vvlsO_-Z21w6GYb8GcWqm_wIsNhNle8EYA9Mgg,72
2
+ idun_agent_engine/_version.py,sha256=_vo9FjRTjqAXKkDLsg8ygKn7Wk6nRPHpPwPZtZGB6Nk,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=yxDY9zZIof0OrNfJR0Qc6qT3aJAhpL64V93tLgOb8Bg,2602
38
+ idun_platform_cli/groups/agent/package.py,sha256=o5lAWQ-a5IVg4quJoAruCDaOBPcrdjssYuc8P3zph38,2525
39
39
  idun_platform_cli/groups/agent/serve.py,sha256=IHC3vp_R45RW4enkNQCE-SP_J9GkmapAycktKcxT9Y8,3800
40
- idun_agent_engine-0.2.2.dist-info/METADATA,sha256=aFxItmgfCjlWJ_NFPnfJIA0wcrrGf7e62dbTzVpPi7I,8660
41
- idun_agent_engine-0.2.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
42
- idun_agent_engine-0.2.2.dist-info/entry_points.txt,sha256=XG3oxlSOaCrYKT1oyhKa0Ag1iJPMZ-WF6gaV_mzIJW4,52
43
- idun_agent_engine-0.2.2.dist-info/RECORD,,
40
+ idun_agent_engine-0.2.4.dist-info/METADATA,sha256=SFXfIn4S6R5Op5rXxMo9ypaylUg5esNmTaMso0GBFXE,8660
41
+ idun_agent_engine-0.2.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
42
+ idun_agent_engine-0.2.4.dist-info/entry_points.txt,sha256=XG3oxlSOaCrYKT1oyhKa0Ag1iJPMZ-WF6gaV_mzIJW4,52
43
+ idun_agent_engine-0.2.4.dist-info/RECORD,,
@@ -38,17 +38,14 @@ def generate_dockerfile(dependency: Dependency) -> str:
38
38
  # TODO: use from file
39
39
  requirements_dockerfile = f"""FROM python:3.13-slim
40
40
  RUN apt-get update && pip install uv
41
- WORKDIR /app
42
41
 
43
- RUN uv pip install idun-agent-schema==0.2.2
44
- RUN uv pip install idun-agent-engine==0.2.2
42
+ RUN uv pip install idun-agent-schema==0.2.4 --system
43
+ RUN uv pip install idun-agent-engine==0.2.4 --system
45
44
 
46
- COPY requirements.txt ./
47
- COPY config.yaml ./
48
- COPY agent/ ./agent/
45
+ COPY . .
49
46
  RUN uv pip install -r requirements.txt --system
50
47
 
51
- CMD ["idun", "agent", "serve", "--source=file", "--path", "config.yaml"]
48
+ CMD ["idun", "agent", "serve", "--source=manager"]
52
49
  """
53
50
  return requirements_dockerfile
54
51
  if dependency == Dependency.PYPROJECT: