Spaces:
Sleeping
Sleeping
File size: 397 Bytes
e103642 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | """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",
]
|