TaskFlow / src /agents /__init__.py
BilalCode's picture
taskflow todo app
310260a
Raw
History Blame Contribute Delete
373 Bytes
"""
Agents package for AI-powered task management.
This package contains the TaskAgent class and configuration for
handling natural language task management conversations.
"""
from .task_agent import TaskAgent
from .agent_config import TASK_AGENT_SYSTEM_PROMPT, AGENT_CONFIG, TOOL_CONFIG
__all__ = ["TaskAgent", "TASK_AGENT_SYSTEM_PROMPT", "AGENT_CONFIG", "TOOL_CONFIG"]