idun-agent-engine 0.2.4__py3-none-any.whl → 0.2.6__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.4"
3
+ __version__ = "0.2.6"
@@ -139,7 +139,7 @@ class ConfigBuilder:
139
139
  langgraph_config = LangGraphAgentConfig.model_validate(agent_config_dict)
140
140
 
141
141
  # Create the agent config (store as strongly-typed model, not dict)
142
- self._agent_config = AgentConfig(type="langgraph", config=langgraph_config)
142
+ self._agent_config = AgentConfig(type=AgentFramework.LANGGRAPH, config=langgraph_config)
143
143
  return self
144
144
 
145
145
  def with_custom_agent(
@@ -160,12 +160,12 @@ class ConfigBuilder:
160
160
  """
161
161
  if agent_type == AgentFramework.LANGGRAPH:
162
162
  self._agent_config = AgentConfig(
163
- type="langgraph", config=LangGraphAgentConfig.model_validate(config)
163
+ type=AgentFramework.LANGGRAPH, config=LangGraphAgentConfig.model_validate(config)
164
164
  )
165
165
 
166
166
  elif agent_type == AgentFramework.HAYSTACK:
167
167
  self._agent_config = AgentConfig(
168
- type="haystack", config=HaystackAgentConfig.model_validate(config)
168
+ type=AgentFramework.HAYSTACK, config=HaystackAgentConfig.model_validate(config)
169
169
  )
170
170
  else:
171
171
  raise ValueError(f"Unsupported agent type: {agent_type}")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: idun-agent-engine
3
- Version: 0.2.4
3
+ Version: 0.2.6
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.4
30
+ Requires-Dist: idun-agent-schema<0.3.0,>=0.2.6
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=_vo9FjRTjqAXKkDLsg8ygKn7Wk6nRPHpPwPZtZGB6Nk,72
2
+ idun_agent_engine/_version.py,sha256=jFT6ls-HWdmskfvazh4Y97lUpXNfGjicAwVcU5G2mok,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
@@ -12,7 +12,7 @@ idun_agent_engine/agent/langgraph/langgraph.py,sha256=Fm6t-TeG_7s0tJHev5sIbKcD7g
12
12
  idun_agent_engine/cli/__init__.py,sha256=5S_Oo7n7YwKk5VPyqborrRqKVz6lvwODQ5olj70wbnQ,490
13
13
  idun_agent_engine/core/__init__.py,sha256=F0DMDlWcSWS_1dvh3xMbrdcVvZRHVnoAFFgREuSJfBI,408
14
14
  idun_agent_engine/core/app_factory.py,sha256=fqxX6n4huCAsEY5lzPQPtBb7nWWaxzvhYaPsRUbZuEY,2333
15
- idun_agent_engine/core/config_builder.py,sha256=nqlFEASHN9zlZhUnu5NAhRo2DeFkFVQ0rpx-yfnBuIw,16283
15
+ idun_agent_engine/core/config_builder.py,sha256=lLyAvnatPSWR5PqTj4sWPNxnMBKgXdtFuxzqAYzhxcY,16322
16
16
  idun_agent_engine/core/engine_config.py,sha256=pHa-qiYUS7mvzW2eb6sXJoxxJCxC5fwcNUTcqiO90c0,584
17
17
  idun_agent_engine/core/server_runner.py,sha256=01_aAJC-s0C5fdkEUQzwk4Vlf1SX4lsZwRTkVaJx0VE,4898
18
18
  idun_agent_engine/observability/__init__.py,sha256=Jei-E8SgYulxFu5HkJz9HfcorIfQ6O7WZWGzP41ZK-4,298
@@ -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=o5lAWQ-a5IVg4quJoAruCDaOBPcrdjssYuc8P3zph38,2525
38
+ idun_platform_cli/groups/agent/package.py,sha256=l47w89BrXqaYsWDo--X2ulfpyofSuHuxvUZci6e9bq4,2525
39
39
  idun_platform_cli/groups/agent/serve.py,sha256=IHC3vp_R45RW4enkNQCE-SP_J9GkmapAycktKcxT9Y8,3800
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,,
40
+ idun_agent_engine-0.2.6.dist-info/METADATA,sha256=1qXM-PDrBXoLDVK1xn2peLDL5-F5ncb5DVNCtemEdGc,8660
41
+ idun_agent_engine-0.2.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
42
+ idun_agent_engine-0.2.6.dist-info/entry_points.txt,sha256=XG3oxlSOaCrYKT1oyhKa0Ag1iJPMZ-WF6gaV_mzIJW4,52
43
+ idun_agent_engine-0.2.6.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.4 --system
43
- RUN uv pip install idun-agent-engine==0.2.4 --system
42
+ RUN uv pip install idun-agent-schema==0.2.6 --system
43
+ RUN uv pip install idun-agent-engine==0.2.6 --system
44
44
 
45
45
  COPY . .
46
46
  RUN uv pip install -r requirements.txt --system