agent_api/lambda_agent_api/__init__.py

19 lines
619 B
Python
Raw Permalink 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 lambda_agent_api.agent_api import AgentApi, AgentException
from lambda_agent_api.server import ServerMessage
from lambda_agent_api.client import ClientMessage
__all__ = [
"AgentApi",
"AgentException",
"ClientMessage",
"ServerMessage",
]