-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path__init__.py
More file actions
40 lines (35 loc) · 889 Bytes
/
__init__.py
File metadata and controls
40 lines (35 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
"""
Microsoft Agent 365 Notifications
Notification and messaging extensions for AI agent applications.
This module provides utilities for handling agent notifications and routing.
"""
# Main notification handler class
from .agent_notification import (
AgentHandler,
AgentNotification,
)
# Import all models from the models subpackage
from .models import (
AgentLifecycleEvent,
AgentNotificationActivity,
AgentSubChannel,
EmailReference,
EmailResponse,
NotificationTypes,
WpxComment,
)
__all__ = [
# Main notification handler
"AgentNotification",
"AgentHandler",
# Models and data classes
"AgentNotificationActivity",
"EmailReference",
"WpxComment",
"EmailResponse",
"NotificationTypes",
"AgentSubChannel",
"AgentLifecycleEvent",
]