Tahasaif3's picture
'code'
e103642
raw
history blame contribute delete
397 Bytes
"""AI Agent module for the Todo Chatbot.
This module provides the AI-powered chatbot functionality using:
- OpenAI Agents SDK with Gemini 2.0 Flash via OpenAI-compatible endpoint
- MCP (Model Context Protocol) tools for task operations
"""
from .prompts import SYSTEM_PROMPT
from .agent import run_agent, get_todo_agent
__all__ = [
"run_agent",
"get_todo_agent",
"SYSTEM_PROMPT",
]