Added code samples for AI-Agents

This commit is contained in:
2025-12-17 20:22:46 +03:00
parent d66aed35d6
commit 0885618b25
29 changed files with 2007 additions and 0 deletions

13
agents/__init__.py Normal file
View File

@@ -0,0 +1,13 @@
"""ИИ-агенты для проекта Новая Планета."""
from agents.chat_agent import ChatAgent
from agents.gigachat_client import GigaChatClient
from agents.recommendation_engine import RecommendationEngine
from agents.schedule_generator import ScheduleGenerator
__all__ = [
"GigaChatClient",
"ScheduleGenerator",
"ChatAgent",
"RecommendationEngine",
]