idun-agent-schema 0.1.5__tar.gz → 0.1.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.

Potentially problematic release.


This version of idun-agent-schema might be problematic. Click here for more details.

Files changed (23) hide show
  1. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/PKG-INFO +1 -1
  2. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/pyproject.toml +1 -1
  3. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/src/idun_agent_schema/engine/config.py +3 -4
  4. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/.gitignore +0 -0
  5. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/README.md +0 -0
  6. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/src/idun_agent_schema/__init__.py +0 -0
  7. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/src/idun_agent_schema/engine/__init__.py +0 -0
  8. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/src/idun_agent_schema/engine/agent.py +0 -0
  9. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/src/idun_agent_schema/engine/api.py +0 -0
  10. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/src/idun_agent_schema/engine/haystack.py +0 -0
  11. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/src/idun_agent_schema/engine/langgraph.py +0 -0
  12. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/src/idun_agent_schema/engine/server.py +0 -0
  13. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/src/idun_agent_schema/manager/__init__.py +0 -0
  14. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/src/idun_agent_schema/manager/api.py +0 -0
  15. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/src/idun_agent_schema/manager/deployments.py +0 -0
  16. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/src/idun_agent_schema/manager/deps.py +0 -0
  17. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/src/idun_agent_schema/manager/domain.py +0 -0
  18. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/src/idun_agent_schema/manager/dto.py +0 -0
  19. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/src/idun_agent_schema/manager/errors.py +0 -0
  20. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/src/idun_agent_schema/manager/settings.py +0 -0
  21. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/src/idun_agent_schema/py.typed +0 -0
  22. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/src/idun_agent_schema/shared/__init__.py +0 -0
  23. {idun_agent_schema-0.1.5 → idun_agent_schema-0.1.6}/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.5
3
+ Version: 0.1.6
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.5"
3
+ version = "0.1.6"
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,9 +4,10 @@ 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
- from .haystack import HaystackAgentConfig
10
11
  from .server import ServerConfig
11
12
 
12
13
 
@@ -14,9 +15,7 @@ class AgentConfig(BaseModel):
14
15
  """Configuration for agent specification and settings."""
15
16
 
16
17
  type: Literal["langgraph", "ADK", "CREWAI", "haystack"] = Field(default="langgraph")
17
- config: BaseAgentConfig | HaystackAgentConfig | LangGraphAgentConfig = Field(
18
- default_factory=BaseAgentConfig
19
- )
18
+ config: BaseAgentConfig | HaystackAgentConfig | LangGraphAgentConfig
20
19
 
21
20
 
22
21
  class EngineConfig(BaseModel):