idun-agent-engine 0.2.4__tar.gz → 0.2.6__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 (43) hide show
  1. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/PKG-INFO +2 -2
  2. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/pyproject.toml +2 -2
  3. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/_version.py +1 -1
  4. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/core/config_builder.py +3 -3
  5. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_platform_cli/groups/agent/package.py +2 -2
  6. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/.gitignore +0 -0
  7. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/README.md +0 -0
  8. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/__init__.py +0 -0
  9. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/agent/__init__.py +0 -0
  10. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/agent/base.py +0 -0
  11. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/agent/haystack/__init__.py +0 -0
  12. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/agent/haystack/haystack.py +0 -0
  13. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/agent/haystack/haystack_model.py +0 -0
  14. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/agent/haystack/utils.py +0 -0
  15. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/agent/langgraph/__init__.py +0 -0
  16. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/agent/langgraph/langgraph.py +0 -0
  17. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/cli/__init__.py +0 -0
  18. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/core/__init__.py +0 -0
  19. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/core/app_factory.py +0 -0
  20. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/core/engine_config.py +0 -0
  21. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/core/server_runner.py +0 -0
  22. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/observability/__init__.py +0 -0
  23. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/observability/base.py +0 -0
  24. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/observability/langfuse/__init__.py +0 -0
  25. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/observability/langfuse/langfuse_handler.py +0 -0
  26. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/observability/phoenix/__init__.py +0 -0
  27. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/observability/phoenix/phoenix_handler.py +0 -0
  28. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/observability/phoenix_local/__init__.py +0 -0
  29. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/observability/phoenix_local/phoenix_local_handler.py +0 -0
  30. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/py.typed +0 -0
  31. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/server/__init__.py +0 -0
  32. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/server/dependencies.py +0 -0
  33. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/server/lifespan.py +0 -0
  34. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/server/routers/__init__.py +0 -0
  35. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/server/routers/agent.py +0 -0
  36. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/server/routers/base.py +0 -0
  37. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_agent_engine/server/server_config.py +0 -0
  38. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_platform_cli/__init__.py +0 -0
  39. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_platform_cli/groups/__init__.py +0 -0
  40. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_platform_cli/groups/agent/__init__.py +0 -0
  41. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_platform_cli/groups/agent/main.py +0 -0
  42. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_platform_cli/groups/agent/serve.py +0 -0
  43. {idun_agent_engine-0.2.4 → idun_agent_engine-0.2.6}/src/idun_platform_cli/main.py +0 -0
@@ -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,6 +1,6 @@
1
1
  [project]
2
2
  name = "idun-agent-engine"
3
- version = "0.2.4"
3
+ version = "0.2.6"
4
4
  description = "Python SDK and runtime to serve AI agents with FastAPI, LangGraph, and observability."
5
5
  authors = [{ name = "Geoffrey HARRAZI", email = "geoffreyharrazi@gmail.com" }]
6
6
  requires-python = ">=3.12,<3.14"
@@ -44,7 +44,7 @@ dependencies = [
44
44
  "langchain>=0.3.27,<0.4",
45
45
  # Pin <12: 12.x currently depends on placeholder jmespath==99.99.99 and fails in Docker
46
46
  "arize-phoenix>=11.22.0,<12.0.0",
47
- "idun-agent-schema>=0.2.4,<0.3.0",
47
+ "idun-agent-schema>=0.2.6,<0.3.0",
48
48
  "langfuse-haystack>=2.3.0",
49
49
  "python-dotenv>=1.1.1",
50
50
  "click>=8.2.1",
@@ -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}")
@@ -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