agent_api/api/__init__.py

20 lines
586 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""
Библиотека для взаимодействия с AI-агентом через WebSocket.
Экспортирует:
- AgentApi: Основной класс клиента
- AgentException: Исключение для ошибок агента
- IM, OM, IncomingMessage, OutgoingMessage: Pydantic модели контракта
"""
from agent_api import AgentApi, AgentException
from models import IM, OM, IncomingMessage, OutgoingMessage
__all__ = [
"AgentApi",
"AgentException",
"IM",
"OM",
"IncomingMessage",
"OutgoingMessage",
]