idun-agent-schema 0.1.4__tar.gz → 0.1.41__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.4 → idun_agent_schema-0.1.41}/PKG-INFO +1 -1
  2. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/pyproject.toml +1 -1
  3. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/src/idun_agent_schema/engine/config.py +1 -2
  4. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/.gitignore +0 -0
  5. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/README.md +0 -0
  6. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/src/idun_agent_schema/__init__.py +0 -0
  7. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/src/idun_agent_schema/engine/__init__.py +0 -0
  8. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/src/idun_agent_schema/engine/agent.py +0 -0
  9. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/src/idun_agent_schema/engine/api.py +0 -0
  10. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/src/idun_agent_schema/engine/haystack.py +0 -0
  11. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/src/idun_agent_schema/engine/langgraph.py +0 -0
  12. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/src/idun_agent_schema/engine/server.py +0 -0
  13. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/src/idun_agent_schema/manager/__init__.py +0 -0
  14. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/src/idun_agent_schema/manager/api.py +0 -0
  15. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/src/idun_agent_schema/manager/deployments.py +0 -0
  16. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/src/idun_agent_schema/manager/deps.py +0 -0
  17. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/src/idun_agent_schema/manager/domain.py +0 -0
  18. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/src/idun_agent_schema/manager/dto.py +0 -0
  19. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/src/idun_agent_schema/manager/errors.py +0 -0
  20. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/src/idun_agent_schema/manager/settings.py +0 -0
  21. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/src/idun_agent_schema/py.typed +0 -0
  22. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/src/idun_agent_schema/shared/__init__.py +0 -0
  23. {idun_agent_schema-0.1.4 → idun_agent_schema-0.1.41}/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.4
3
+ Version: 0.1.41
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.4"
3
+ version = "0.1.41"
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"
@@ -1,6 +1,6 @@
1
1
  """Top-level engine configuration models."""
2
2
 
3
- from typing import Literal, Any
3
+ from typing import Literal
4
4
 
5
5
  from pydantic import BaseModel, Field
6
6
 
@@ -15,7 +15,6 @@ class AgentConfig(BaseModel):
15
15
  """Configuration for agent specification and settings."""
16
16
 
17
17
  type: Literal["langgraph", "ADK", "CREWAI", "haystack"] = Field(default="langgraph")
18
- config: Any = Field(description="Specific agent config")
19
18
 
20
19
 
21
20
  config: BaseAgentConfig | HaystackAgentConfig | LangGraphAgentConfig = Field(