14 lines
389 B
Python
14 lines
389 B
Python
"""ИИ-агенты для проекта Новая Планета."""
|
|
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",
|
|
]
|
|
|