/
githubmirror
/
UFO
Обзор
Документация
Войти
/
githubmirror
/
UFO
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
aip/protocol/__init__.py
26 строк
666 B
vyokky
aip first implemetation
04 ноя 2025, 10:10
04 ноя 2025, 10:10
6f5b713
Код
Авторство
О чём код?
# Copyright (c) Microsoft Corporation. # Licensed under the MIT License. """ AIP Protocol Layer Implements the core protocol logic for the Agent Interaction Protocol. """ from .base import AIPProtocol, MessageHandler, ProtocolHandler from .command import CommandProtocol from .device_info import DeviceInfoProtocol from .heartbeat import HeartbeatProtocol from .registration import RegistrationProtocol from .task_execution import TaskExecutionProtocol __all__ = [ "AIPProtocol", "MessageHandler", "ProtocolHandler", "RegistrationProtocol", "TaskExecutionProtocol", "HeartbeatProtocol", "DeviceInfoProtocol", "CommandProtocol", ]