idun-agent-schema 0.1.2__tar.gz → 0.1.3__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 (23) hide show
  1. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/PKG-INFO +1 -1
  2. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/pyproject.toml +1 -1
  3. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/engine/config.py +7 -3
  4. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/.gitignore +0 -0
  5. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/README.md +0 -0
  6. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/__init__.py +0 -0
  7. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/engine/__init__.py +0 -0
  8. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/engine/agent.py +0 -0
  9. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/engine/api.py +0 -0
  10. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/engine/haystack.py +0 -0
  11. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/engine/langgraph.py +0 -0
  12. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/engine/server.py +0 -0
  13. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/manager/__init__.py +0 -0
  14. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/manager/api.py +0 -0
  15. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/manager/deployments.py +0 -0
  16. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/manager/deps.py +0 -0
  17. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/manager/domain.py +0 -0
  18. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/manager/dto.py +0 -0
  19. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/manager/errors.py +0 -0
  20. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/manager/settings.py +0 -0
  21. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/py.typed +0 -0
  22. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/shared/__init__.py +0 -0
  23. {idun_agent_schema-0.1.2 → idun_agent_schema-0.1.3}/src/idun_agent_schema/shared/observability.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: idun-agent-schema
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: Centralized Pydantic schema library for Idun Agent Engine and Manager
5
5
  Project-URL: Homepage, https://github.com/geoffreyharrazi/idun-agent-platform
6
6
  Project-URL: Repository, https://github.com/geoffreyharrazi/idun-agent-platform
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "idun-agent-schema"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  description = "Centralized Pydantic schema library for Idun Agent Engine and Manager"
5
5
  authors = [{ name = "Idun Team", email = "team@idun.com" }]
6
6
  readme = "README.md"
@@ -4,6 +4,8 @@ from typing import Literal
4
4
 
5
5
  from pydantic import BaseModel, Field
6
6
 
7
+ from idun_agent_schema.engine.haystack import HaystackAgentConfig
8
+
7
9
  from .agent import BaseAgentConfig
8
10
  from .langgraph import LangGraphAgentConfig
9
11
  from .server import ServerConfig
@@ -13,9 +15,11 @@ class AgentConfig(BaseModel):
13
15
  """Configuration for agent specification and settings."""
14
16
 
15
17
  type: Literal["langgraph", "ADK", "CREWAI", "haystack"] = Field(default="langgraph")
16
- config: BaseAgentConfig | LangGraphAgentConfig = Field(
17
- default_factory=BaseAgentConfig
18
- )
18
+
19
+
20
+ config: BaseAgentConfig | HaystackAgentConfig | LangGraphAgentConfig = Field(
21
+ default_factory=BaseAgentConfig
22
+ )
19
23
 
20
24
 
21
25
  class EngineConfig(BaseModel):