mirror of
https://github.com/furyhawk/agent_delta.git
synced 2026-07-21 02:05:36 +00:00
11 lines
429 B
Python
11 lines
429 B
Python
"""AI Agents module using PydanticDeep.
|
|
|
|
This module contains a deep agentic coding assistant built with pydantic-deep.
|
|
PydanticDeep is built on PydanticAI and provides filesystem operations,
|
|
task management, subagent delegation, skills, memory, and Docker sandbox support.
|
|
"""
|
|
|
|
from app.agents.pydantic_deep_assistant import PydanticDeepAssistant, PydanticDeepContext
|
|
|
|
__all__ = ["PydanticDeepAssistant", "PydanticDeepContext"]
|