microsoft-agents-activity 0.7.0.dev0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (208) hide show
  1. microsoft_agents/activity/__init__.py +200 -0
  2. microsoft_agents/activity/_channel_id_field_mixin.py +95 -0
  3. microsoft_agents/activity/_load_configuration.py +33 -0
  4. microsoft_agents/activity/_model_utils.py +64 -0
  5. microsoft_agents/activity/_type_aliases.py +7 -0
  6. microsoft_agents/activity/_utils/__init__.py +6 -0
  7. microsoft_agents/activity/_utils/_deferred_string.py +34 -0
  8. microsoft_agents/activity/action_types.py +17 -0
  9. microsoft_agents/activity/activity.py +787 -0
  10. microsoft_agents/activity/activity_event_names.py +9 -0
  11. microsoft_agents/activity/activity_importance.py +10 -0
  12. microsoft_agents/activity/activity_types.py +25 -0
  13. microsoft_agents/activity/adaptive_card_invoke_action.py +27 -0
  14. microsoft_agents/activity/adaptive_card_invoke_response.py +23 -0
  15. microsoft_agents/activity/adaptive_card_invoke_value.py +25 -0
  16. microsoft_agents/activity/agents_model.py +49 -0
  17. microsoft_agents/activity/animation_card.py +57 -0
  18. microsoft_agents/activity/attachment.py +27 -0
  19. microsoft_agents/activity/attachment_data.py +24 -0
  20. microsoft_agents/activity/attachment_info.py +22 -0
  21. microsoft_agents/activity/attachment_layout_types.py +9 -0
  22. microsoft_agents/activity/attachment_view.py +18 -0
  23. microsoft_agents/activity/audio_card.py +57 -0
  24. microsoft_agents/activity/basic_card.py +33 -0
  25. microsoft_agents/activity/caller_id_constants.py +10 -0
  26. microsoft_agents/activity/card_action.py +42 -0
  27. microsoft_agents/activity/card_image.py +22 -0
  28. microsoft_agents/activity/channel_account.py +39 -0
  29. microsoft_agents/activity/channel_adapter_protocol.py +79 -0
  30. microsoft_agents/activity/channel_id.py +95 -0
  31. microsoft_agents/activity/channels.py +161 -0
  32. microsoft_agents/activity/contact_relation_update_action_types.py +9 -0
  33. microsoft_agents/activity/conversation_account.py +41 -0
  34. microsoft_agents/activity/conversation_members.py +19 -0
  35. microsoft_agents/activity/conversation_parameters.py +40 -0
  36. microsoft_agents/activity/conversation_reference.py +69 -0
  37. microsoft_agents/activity/conversation_resource_response.py +22 -0
  38. microsoft_agents/activity/conversation_update_types.py +18 -0
  39. microsoft_agents/activity/conversations_result.py +20 -0
  40. microsoft_agents/activity/delivery_modes.py +12 -0
  41. microsoft_agents/activity/end_of_conversation_codes.py +13 -0
  42. microsoft_agents/activity/entity/__init__.py +36 -0
  43. microsoft_agents/activity/entity/ai_entity.py +111 -0
  44. microsoft_agents/activity/entity/entity.py +41 -0
  45. microsoft_agents/activity/entity/entity_types.py +14 -0
  46. microsoft_agents/activity/entity/geo_coordinates.py +33 -0
  47. microsoft_agents/activity/entity/mention.py +24 -0
  48. microsoft_agents/activity/entity/place.py +33 -0
  49. microsoft_agents/activity/entity/product_info.py +20 -0
  50. microsoft_agents/activity/entity/thing.py +21 -0
  51. microsoft_agents/activity/error.py +22 -0
  52. microsoft_agents/activity/error_response.py +15 -0
  53. microsoft_agents/activity/errors/__init__.py +14 -0
  54. microsoft_agents/activity/errors/error_message.py +64 -0
  55. microsoft_agents/activity/errors/error_resources.py +52 -0
  56. microsoft_agents/activity/expected_replies.py +16 -0
  57. microsoft_agents/activity/fact.py +21 -0
  58. microsoft_agents/activity/hero_card.py +33 -0
  59. microsoft_agents/activity/inner_http_error.py +17 -0
  60. microsoft_agents/activity/input_hints.py +10 -0
  61. microsoft_agents/activity/installation_update_action_types.py +9 -0
  62. microsoft_agents/activity/invoke_response.py +27 -0
  63. microsoft_agents/activity/media_card.py +57 -0
  64. microsoft_agents/activity/media_event_value.py +15 -0
  65. microsoft_agents/activity/media_url.py +19 -0
  66. microsoft_agents/activity/message_reaction.py +16 -0
  67. microsoft_agents/activity/message_reaction_types.py +14 -0
  68. microsoft_agents/activity/message_update_types.py +10 -0
  69. microsoft_agents/activity/oauth_card.py +27 -0
  70. microsoft_agents/activity/paged_members_result.py +19 -0
  71. microsoft_agents/activity/receipt_card.py +39 -0
  72. microsoft_agents/activity/receipt_item.py +38 -0
  73. microsoft_agents/activity/resource_response.py +15 -0
  74. microsoft_agents/activity/role_types.py +12 -0
  75. microsoft_agents/activity/semantic_action.py +21 -0
  76. microsoft_agents/activity/semantic_actions_states.py +10 -0
  77. microsoft_agents/activity/sign_in_constants.py +13 -0
  78. microsoft_agents/activity/sign_in_resource.py +17 -0
  79. microsoft_agents/activity/signin_card.py +19 -0
  80. microsoft_agents/activity/suggested_actions.py +21 -0
  81. microsoft_agents/activity/teams/__init__.py +198 -0
  82. microsoft_agents/activity/teams/app_based_link_query.py +18 -0
  83. microsoft_agents/activity/teams/batch_failed_entries_response.py +15 -0
  84. microsoft_agents/activity/teams/batch_failed_entry.py +16 -0
  85. microsoft_agents/activity/teams/batch_operation_response.py +13 -0
  86. microsoft_agents/activity/teams/batch_operation_state_response.py +24 -0
  87. microsoft_agents/activity/teams/bot_config_auth.py +18 -0
  88. microsoft_agents/activity/teams/cache_info.py +18 -0
  89. microsoft_agents/activity/teams/cancel_operation_response.py +19 -0
  90. microsoft_agents/activity/teams/channel_info.py +21 -0
  91. microsoft_agents/activity/teams/config_auth_response.py +17 -0
  92. microsoft_agents/activity/teams/config_response.py +18 -0
  93. microsoft_agents/activity/teams/config_response_base.py +14 -0
  94. microsoft_agents/activity/teams/config_task_response.py +18 -0
  95. microsoft_agents/activity/teams/conversation_list.py +17 -0
  96. microsoft_agents/activity/teams/file_consent_card.py +24 -0
  97. microsoft_agents/activity/teams/file_consent_card_response.py +21 -0
  98. microsoft_agents/activity/teams/file_download_info.py +24 -0
  99. microsoft_agents/activity/teams/file_info_card.py +21 -0
  100. microsoft_agents/activity/teams/file_upload_info.py +26 -0
  101. microsoft_agents/activity/teams/meeting_details.py +23 -0
  102. microsoft_agents/activity/teams/meeting_details_base.py +21 -0
  103. microsoft_agents/activity/teams/meeting_end_event_details.py +15 -0
  104. microsoft_agents/activity/teams/meeting_event_details.py +15 -0
  105. microsoft_agents/activity/teams/meeting_info.py +24 -0
  106. microsoft_agents/activity/teams/meeting_notification.py +15 -0
  107. microsoft_agents/activity/teams/meeting_notification_base.py +14 -0
  108. microsoft_agents/activity/teams/meeting_notification_channel_data.py +16 -0
  109. microsoft_agents/activity/teams/meeting_notification_recipient_failure_info.py +20 -0
  110. microsoft_agents/activity/teams/meeting_notification_response.py +20 -0
  111. microsoft_agents/activity/teams/meeting_participant_info.py +18 -0
  112. microsoft_agents/activity/teams/meeting_participants_event_details.py +16 -0
  113. microsoft_agents/activity/teams/meeting_stage_surface.py +25 -0
  114. microsoft_agents/activity/teams/meeting_start_event_details.py +15 -0
  115. microsoft_agents/activity/teams/meeting_tab_icon_surface.py +15 -0
  116. microsoft_agents/activity/teams/message_actions_payload.py +70 -0
  117. microsoft_agents/activity/teams/message_actions_payload_app.py +29 -0
  118. microsoft_agents/activity/teams/message_actions_payload_attachment.py +30 -0
  119. microsoft_agents/activity/teams/message_actions_payload_body.py +17 -0
  120. microsoft_agents/activity/teams/message_actions_payload_conversation.py +20 -0
  121. microsoft_agents/activity/teams/message_actions_payload_from.py +25 -0
  122. microsoft_agents/activity/teams/message_actions_payload_mention.py +23 -0
  123. microsoft_agents/activity/teams/message_actions_payload_reaction.py +23 -0
  124. microsoft_agents/activity/teams/message_actions_payload_user.py +27 -0
  125. microsoft_agents/activity/teams/messaging_extension_action.py +37 -0
  126. microsoft_agents/activity/teams/messaging_extension_action_response.py +24 -0
  127. microsoft_agents/activity/teams/messaging_extension_attachment.py +32 -0
  128. microsoft_agents/activity/teams/messaging_extension_parameter.py +17 -0
  129. microsoft_agents/activity/teams/messaging_extension_query.py +27 -0
  130. microsoft_agents/activity/teams/messaging_extension_query_options.py +17 -0
  131. microsoft_agents/activity/teams/messaging_extension_response.py +21 -0
  132. microsoft_agents/activity/teams/messaging_extension_result.py +34 -0
  133. microsoft_agents/activity/teams/messaging_extension_suggested_action.py +17 -0
  134. microsoft_agents/activity/teams/notification_info.py +21 -0
  135. microsoft_agents/activity/teams/o365_connector_card.py +32 -0
  136. microsoft_agents/activity/teams/o365_connector_card_action_base.py +21 -0
  137. microsoft_agents/activity/teams/o365_connector_card_action_card.py +30 -0
  138. microsoft_agents/activity/teams/o365_connector_card_action_query.py +15 -0
  139. microsoft_agents/activity/teams/o365_connector_card_date_input.py +30 -0
  140. microsoft_agents/activity/teams/o365_connector_card_fact.py +17 -0
  141. microsoft_agents/activity/teams/o365_connector_card_http_post.py +25 -0
  142. microsoft_agents/activity/teams/o365_connector_card_image.py +18 -0
  143. microsoft_agents/activity/teams/o365_connector_card_input_base.py +28 -0
  144. microsoft_agents/activity/teams/o365_connector_card_multichoice_input.py +40 -0
  145. microsoft_agents/activity/teams/o365_connector_card_multichoice_input_choice.py +17 -0
  146. microsoft_agents/activity/teams/o365_connector_card_open_uri.py +26 -0
  147. microsoft_agents/activity/teams/o365_connector_card_open_uri_target.py +17 -0
  148. microsoft_agents/activity/teams/o365_connector_card_section.py +42 -0
  149. microsoft_agents/activity/teams/o365_connector_card_text_input.py +31 -0
  150. microsoft_agents/activity/teams/o365_connector_card_view_action.py +25 -0
  151. microsoft_agents/activity/teams/on_behalf_of.py +23 -0
  152. microsoft_agents/activity/teams/read_receipt_info.py +47 -0
  153. microsoft_agents/activity/teams/signin_state_verification_query.py +14 -0
  154. microsoft_agents/activity/teams/surface.py +18 -0
  155. microsoft_agents/activity/teams/tab_context.py +14 -0
  156. microsoft_agents/activity/teams/tab_entity_context.py +15 -0
  157. microsoft_agents/activity/teams/tab_request.py +22 -0
  158. microsoft_agents/activity/teams/tab_response.py +16 -0
  159. microsoft_agents/activity/teams/tab_response_card.py +14 -0
  160. microsoft_agents/activity/teams/tab_response_cards.py +17 -0
  161. microsoft_agents/activity/teams/tab_response_payload.py +25 -0
  162. microsoft_agents/activity/teams/tab_submit.py +23 -0
  163. microsoft_agents/activity/teams/tab_submit_data.py +18 -0
  164. microsoft_agents/activity/teams/tab_suggested_actions.py +17 -0
  165. microsoft_agents/activity/teams/targeted_meeting_notification.py +19 -0
  166. microsoft_agents/activity/teams/targeted_meeting_notification_value.py +19 -0
  167. microsoft_agents/activity/teams/task_module_card_response.py +15 -0
  168. microsoft_agents/activity/teams/task_module_continue_response.py +19 -0
  169. microsoft_agents/activity/teams/task_module_message_response.py +18 -0
  170. microsoft_agents/activity/teams/task_module_request.py +25 -0
  171. microsoft_agents/activity/teams/task_module_request_context.py +15 -0
  172. microsoft_agents/activity/teams/task_module_response.py +20 -0
  173. microsoft_agents/activity/teams/task_module_response_base.py +17 -0
  174. microsoft_agents/activity/teams/task_module_task_info.py +30 -0
  175. microsoft_agents/activity/teams/team_details.py +29 -0
  176. microsoft_agents/activity/teams/team_info.py +20 -0
  177. microsoft_agents/activity/teams/teams_batch_operation_response.py +19 -0
  178. microsoft_agents/activity/teams/teams_channel_account.py +44 -0
  179. microsoft_agents/activity/teams/teams_channel_data.py +43 -0
  180. microsoft_agents/activity/teams/teams_channel_data_settings.py +15 -0
  181. microsoft_agents/activity/teams/teams_meeting_info.py +14 -0
  182. microsoft_agents/activity/teams/teams_meeting_member.py +19 -0
  183. microsoft_agents/activity/teams/teams_meeting_participant.py +24 -0
  184. microsoft_agents/activity/teams/teams_member.py +14 -0
  185. microsoft_agents/activity/teams/teams_paged_members_result.py +19 -0
  186. microsoft_agents/activity/teams/tenant_info.py +14 -0
  187. microsoft_agents/activity/teams/user_meeting_details.py +17 -0
  188. microsoft_agents/activity/text_format_types.py +10 -0
  189. microsoft_agents/activity/text_highlight.py +19 -0
  190. microsoft_agents/activity/thumbnail_card.py +33 -0
  191. microsoft_agents/activity/thumbnail_url.py +18 -0
  192. microsoft_agents/activity/token_exchange_invoke_request.py +24 -0
  193. microsoft_agents/activity/token_exchange_invoke_response.py +24 -0
  194. microsoft_agents/activity/token_exchange_resource.py +16 -0
  195. microsoft_agents/activity/token_exchange_state.py +41 -0
  196. microsoft_agents/activity/token_or_sign_in_resource_response.py +21 -0
  197. microsoft_agents/activity/token_post_resource.py +14 -0
  198. microsoft_agents/activity/token_request.py +19 -0
  199. microsoft_agents/activity/token_response.py +46 -0
  200. microsoft_agents/activity/token_status.py +32 -0
  201. microsoft_agents/activity/transcript.py +16 -0
  202. microsoft_agents/activity/turn_context_protocol.py +68 -0
  203. microsoft_agents/activity/video_card.py +57 -0
  204. microsoft_agents_activity-0.7.0.dev0.dist-info/METADATA +173 -0
  205. microsoft_agents_activity-0.7.0.dev0.dist-info/RECORD +208 -0
  206. microsoft_agents_activity-0.7.0.dev0.dist-info/WHEEL +5 -0
  207. microsoft_agents_activity-0.7.0.dev0.dist-info/licenses/LICENSE +21 -0
  208. microsoft_agents_activity-0.7.0.dev0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,57 @@
1
+ # Copyright (c) Microsoft Corporation. All rights reserved.
2
+ # Licensed under the MIT License.
3
+
4
+ from .thumbnail_url import ThumbnailUrl
5
+ from .media_url import MediaUrl
6
+ from .card_action import CardAction
7
+ from .agents_model import AgentsModel
8
+ from ._type_aliases import NonEmptyString
9
+
10
+
11
+ class VideoCard(AgentsModel):
12
+ """Video card.
13
+
14
+ :param title: Title of this card
15
+ :type title: str
16
+ :param subtitle: Subtitle of this card
17
+ :type subtitle: str
18
+ :param text: Text of this card
19
+ :type text: str
20
+ :param image: Thumbnail placeholder
21
+ :type image: ~microsoft_agents.activity.ThumbnailUrl
22
+ :param media: Media URLs for this card. When this field contains more than
23
+ one URL, each URL is an alternative format of the same content.
24
+ :type media: list[~microsoft_agents.activity.MediaUrl]
25
+ :param buttons: Actions on this card
26
+ :type buttons: list[~microsoft_agents.activity.CardAction]
27
+ :param shareable: This content may be shared with others (default:true)
28
+ :type shareable: bool
29
+ :param autoloop: Should the client loop playback at end of content
30
+ (default:true)
31
+ :type autoloop: bool
32
+ :param autostart: Should the client automatically start playback of media
33
+ in this card (default:true)
34
+ :type autostart: bool
35
+ :param aspect: Aspect ratio of thumbnail/media placeholder. Allowed values
36
+ are "16:9" and "4:3"
37
+ :type aspect: str
38
+ :param duration: Describes the length of the media content without
39
+ requiring a receiver to open the content. Formatted as an ISO 8601
40
+ Duration field.
41
+ :type duration: str
42
+ :param value: Supplementary parameter for this card
43
+ :type value: object
44
+ """
45
+
46
+ title: NonEmptyString = None
47
+ subtitle: NonEmptyString = None
48
+ text: str = None
49
+ image: ThumbnailUrl = None
50
+ media: list[MediaUrl] = None
51
+ buttons: list[CardAction] = None
52
+ shareable: bool = None
53
+ autoloop: bool = None
54
+ autostart: bool = None
55
+ aspect: NonEmptyString = None
56
+ duration: NonEmptyString = None
57
+ value: object = None
@@ -0,0 +1,173 @@
1
+ Metadata-Version: 2.4
2
+ Name: microsoft-agents-activity
3
+ Version: 0.7.0.dev0
4
+ Summary: A protocol library for Microsoft Agents
5
+ Author: Microsoft Corporation
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/microsoft/Agents
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.10
10
+ Classifier: Programming Language :: Python :: 3.11
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Programming Language :: Python :: 3.13
13
+ Classifier: Programming Language :: Python :: 3.14
14
+ Classifier: Operating System :: OS Independent
15
+ Requires-Python: >=3.10
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+ Requires-Dist: pydantic>=2.10.4
19
+ Dynamic: license-file
20
+
21
+ # Microsoft Agents Activity
22
+
23
+ [![PyPI version](https://img.shields.io/pypi/v/microsoft-agents-activity)](https://pypi.org/project/microsoft-agents-activity/)
24
+
25
+ Core types and schemas for building conversational AI agents that work across Microsoft 365 platforms like Teams, Copilot Studio, and Webchat.
26
+
27
+ # What is this?
28
+
29
+ This library is part of the **Microsoft 365 Agents SDK for Python** - a comprehensive framework for building enterprise-grade conversational AI agents. The SDK enables developers to create intelligent agents that work across multiple platforms including Microsoft Teams, M365 Copilot, Copilot Studio, and web chat, with support for third-party integrations like Slack, Facebook Messenger, and Twilio.
30
+
31
+ ## Release Notes
32
+ <table style="width:100%">
33
+ <tr>
34
+ <th style="width:20%">Version</th>
35
+ <th style="width:20%">Date</th>
36
+ <th style="width:60%">Release Notes</th>
37
+ </tr>
38
+ <tr>
39
+ <td>0.5.0</td>
40
+ <td>2025-10-22</td>
41
+ <td>
42
+ <a href="https://github.com/microsoft/Agents-for-python/blob/main/changelog.md">
43
+ 0.5.0 Release Notes
44
+ </a>
45
+ </td>
46
+ </tr>
47
+ </table>
48
+
49
+ ## Packages Overview
50
+
51
+ We offer the following PyPI packages to create conversational experiences based on Agents:
52
+
53
+ | Package Name | PyPI Version | Description |
54
+ |--------------|-------------|-------------|
55
+ | `microsoft-agents-activity` | [![PyPI](https://img.shields.io/pypi/v/microsoft-agents-activity)](https://pypi.org/project/microsoft-agents-activity/) | Types and validators implementing the Activity protocol spec. |
56
+ | `microsoft-agents-hosting-core` | [![PyPI](https://img.shields.io/pypi/v/microsoft-agents-hosting-core)](https://pypi.org/project/microsoft-agents-hosting-core/) | Core library for Microsoft Agents hosting. |
57
+ | `microsoft-agents-hosting-aiohttp` | [![PyPI](https://img.shields.io/pypi/v/microsoft-agents-hosting-aiohttp)](https://pypi.org/project/microsoft-agents-hosting-aiohttp/) | Configures aiohttp to run the Agent. |
58
+ | `microsoft-agents-hosting-teams` | [![PyPI](https://img.shields.io/pypi/v/microsoft-agents-hosting-teams)](https://pypi.org/project/microsoft-agents-hosting-teams/) | Provides classes to host an Agent for Teams. |
59
+ | `microsoft-agents-storage-blob` | [![PyPI](https://img.shields.io/pypi/v/microsoft-agents-storage-blob)](https://pypi.org/project/microsoft-agents-storage-blob/) | Extension to use Azure Blob as storage. |
60
+ | `microsoft-agents-storage-cosmos` | [![PyPI](https://img.shields.io/pypi/v/microsoft-agents-storage-cosmos)](https://pypi.org/project/microsoft-agents-storage-cosmos/) | Extension to use CosmosDB as storage. |
61
+ | `microsoft-agents-authentication-msal` | [![PyPI](https://img.shields.io/pypi/v/microsoft-agents-authentication-msal)](https://pypi.org/project/microsoft-agents-authentication-msal/) | MSAL-based authentication for Microsoft Agents. |
62
+
63
+ Additionally we provide a Copilot Studio Client, to interact with Agents created in CopilotStudio:
64
+
65
+ | Package Name | PyPI Version | Description |
66
+ |--------------|-------------|-------------|
67
+ | `microsoft-agents-copilotstudio-client` | [![PyPI](https://img.shields.io/pypi/v/microsoft-agents-copilotstudio-client)](https://pypi.org/project/microsoft-agents-copilotstudio-client/) | Direct to Engine client to interact with Agents created in CopilotStudio |
68
+
69
+ ## Architecture
70
+
71
+ The SDK follows a modular architecture:
72
+ - **Activity Layer**: Protocol definitions for cross-platform messaging
73
+ - **Hosting Layer**: Core agent lifecycle, middleware, and web hosting
74
+ - **Storage Layer**: Persistent state management with Azure backends
75
+ - **Authentication Layer**: Secure identity and token management
76
+ - **Integration Layer**: Platform-specific adapters (Teams, Copilot Studio)
77
+
78
+ ## Installation
79
+
80
+ ```bash
81
+ pip install microsoft-agents-activity
82
+ ```
83
+
84
+ ## Quick Start
85
+ Code below taken from the [Quick Start](https://github.com/microsoft/Agents/tree/main/samples/python/quickstart) sample.
86
+ ```python
87
+ @AGENT_APP.conversation_update("membersAdded")
88
+ async def on_members_added(context: TurnContext, _state: TurnState):
89
+ await context.send_activity(
90
+ "Welcome to the empty agent! "
91
+ "This agent is designed to be a starting point for your own agent development."
92
+ )
93
+ return True
94
+
95
+
96
+ @AGENT_APP.message(re.compile(r"^hello$"))
97
+ async def on_hello(context: TurnContext, _state: TurnState):
98
+ await context.send_activity("Hello!")
99
+
100
+
101
+ @AGENT_APP.activity("message")
102
+ async def on_message(context: TurnContext, _state: TurnState):
103
+ await context.send_activity(f"you said: {context.activity.text}")
104
+ ```
105
+
106
+ ## Common Use Cases
107
+
108
+ ### Rich Messages with Cards
109
+ Code below taken from the [Cards](https://github.com/microsoft/Agents/tree/main/samples/python/cards) sample.
110
+
111
+
112
+ ```python
113
+ @staticmethod
114
+ async def send_animation_card(context: TurnContext):
115
+ card = CardFactory.animation_card(
116
+ AnimationCard(
117
+ title="Microsoft Agents Framework",
118
+ image=ThumbnailUrl(
119
+ url="https://i.giphy.com/Ki55RUbOV5njy.gif", alt="Cute Robot"
120
+ ),
121
+ media=[MediaUrl(url="https://i.giphy.com/Ki55RUbOV5njy.gif")],
122
+ subtitle="Animation Card",
123
+ text="This is an example of an animation card using a gif.",
124
+ aspect="16:9",
125
+ duration="PT2M",
126
+ )
127
+ )
128
+ await CardMessages.send_activity(context, card)
129
+
130
+ @staticmethod
131
+ async def send_activity(context: TurnContext, card: Attachment):
132
+ activity = Activity(type=ActivityTypes.message, attachments=[card])
133
+ await context.send_activity(activity)
134
+ ```
135
+
136
+ ## Activity Types
137
+
138
+ The library supports different types of communication:
139
+
140
+ - **Message** - Regular chat messages with text, cards, attachments
141
+ - **Typing** - Show typing indicators
142
+ - **ConversationUpdate** - People joining/leaving chats
143
+ - **Event** - Custom events and notifications
144
+ - **Invoke** - Direct function calls
145
+ - **EndOfConversation** - End chat sessions
146
+
147
+ ## Key Features
148
+
149
+ ✅ **Type-safe** - Built with Pydantic for automatic validation
150
+ ✅ **Rich content** - Support for cards, images, videos, and interactive elements
151
+ ✅ **Teams ready** - Full Microsoft Teams integration
152
+ ✅ **Cross-platform** - Works across all Microsoft 365 chat platforms
153
+ ✅ **Migration friendly** - Easy upgrade from Bot Framework
154
+
155
+ # Quick Links
156
+
157
+ - 📦 [All SDK Packages on PyPI](https://pypi.org/search/?q=microsoft-agents)
158
+ - 📖 [Complete Documentation](https://aka.ms/agents)
159
+ - 💡 [Python Samples Repository](https://github.com/microsoft/Agents/tree/main/samples/python)
160
+ - 🐛 [Report Issues](https://github.com/microsoft/Agents-for-python/issues)
161
+
162
+ # Sample Applications
163
+ Explore working examples in the [Python samples repository](https://github.com/microsoft/Agents/tree/main/samples/python):
164
+
165
+ |Name|Description|README|
166
+ |----|----|----|
167
+ |Quickstart|Simplest agent|[Quickstart](https://github.com/microsoft/Agents/blob/main/samples/python/quickstart/README.md)|
168
+ |Auto Sign In|Simple OAuth agent using Graph and GitHub|[auto-signin](https://github.com/microsoft/Agents/blob/main/samples/python/auto-signin/README.md)|
169
+ |OBO Authorization|OBO flow to access a Copilot Studio Agent|[obo-authorization](https://github.com/microsoft/Agents/blob/main/samples/python/obo-authorization/README.md)|
170
+ |Semantic Kernel Integration|A weather agent built with Semantic Kernel|[semantic-kernel-multiturn](https://github.com/microsoft/Agents/blob/main/samples/python/semantic-kernel-multiturn/README.md)|
171
+ |Streaming Agent|Streams OpenAI responses|[azure-ai-streaming](https://github.com/microsoft/Agents/blob/main/samples/python/azureai-streaming/README.md)|
172
+ |Copilot Studio Client|Console app to consume a Copilot Studio Agent|[copilotstudio-client](https://github.com/microsoft/Agents/blob/main/samples/python/copilotstudio-client/README.md)|
173
+ |Cards Agent|Agent that uses rich cards to enhance conversation design |[cards](https://github.com/microsoft/Agents/blob/main/samples/python/cards/README.md)|
@@ -0,0 +1,208 @@
1
+ microsoft_agents/activity/__init__.py,sha256=BYUTF2A_YEw5Ql_hPS7MLBGEsmvey6vrMGh9hpsB7EA,6378
2
+ microsoft_agents/activity/_channel_id_field_mixin.py,sha256=YRgxAiDFp8kYBVaOBUJG3hdxCSbo1N2iiaiS9gvaYso,3218
3
+ microsoft_agents/activity/_load_configuration.py,sha256=ztmv1wOBDE9hUYPPzWexc-qi0eiBmxnay1skJpKVEcY,1125
4
+ microsoft_agents/activity/_model_utils.py,sha256=gUAKCOl98jA9tt95o5G7LoMuHgROvrW6lY9s0CzQu6k,2004
5
+ microsoft_agents/activity/_type_aliases.py,sha256=kP5tYxEKSgcgBT3bucdluVVxxopwrUaGqKL7X_TQ0Og,229
6
+ microsoft_agents/activity/action_types.py,sha256=nslx3hvQAd120NPdXZXdprwdjj3I3d4MWXV1b-Igr_o,419
7
+ microsoft_agents/activity/activity.py,sha256=dnHYuKhiES8BjNMwThHmNHtM03DSMvtHCrR6-CHFb3w,32636
8
+ microsoft_agents/activity/activity_event_names.py,sha256=dmtE1w50nnemTC_s1QG7IqTbnocpiczK_CG31JpgoJ4,254
9
+ microsoft_agents/activity/activity_importance.py,sha256=cRIlyz8EjmztPmfcgdqZ6Csp6Vp2rQhXt4ZWIDXdt_s,212
10
+ microsoft_agents/activity/activity_types.py,sha256=dm4vTVSoa-8_aPY_kZuU6C_FWQAURgZRassR1o8o9qQ,762
11
+ microsoft_agents/activity/adaptive_card_invoke_action.py,sha256=IW-XBE7bF4s9Tx8vr1vwSXOwv4R6VpVBqiRWzgX2aKw,874
12
+ microsoft_agents/activity/adaptive_card_invoke_response.py,sha256=Uu5pJ9CkPAla1fNQ6xZc5kKt8_aMVSVv427taNsJzfI,735
13
+ microsoft_agents/activity/adaptive_card_invoke_value.py,sha256=tmyiEarxqjjnu8k06mh9ahjuPLha2YCgARLWdzeK35g,1134
14
+ microsoft_agents/activity/agents_model.py,sha256=VkuOFU4Z7M9NzJ00OiXqFGiyTmcHKjvsSzVvwVo27-k,1585
15
+ microsoft_agents/activity/animation_card.py,sha256=SoArDB1mRl3LjNNNAnMsTivdsYzmNyhbndLoYUQdcHk,2089
16
+ microsoft_agents/activity/attachment.py,sha256=A4VIApR6E2agWJoFEVpDXgbxGHqe2aAqnr8CnfVoxlU,822
17
+ microsoft_agents/activity/attachment_data.py,sha256=j3Lbht8VyotEovSrthU9x5H0tGXdAj4HyPsXPbZxqP8,671
18
+ microsoft_agents/activity/attachment_info.py,sha256=hCN2EbW-cIygBiZ2-6fSi8lvoF7DKhsYkwYHu7-vSzE,631
19
+ microsoft_agents/activity/attachment_layout_types.py,sha256=rzj01fXS1woVc__Mlfx_JsUdpIevxBhKycC5Bm2x4qg,203
20
+ microsoft_agents/activity/attachment_view.py,sha256=BVDzJAlgSqIrbNWYMnlttaefXTwx_MNLCn9ER2CRCFE,440
21
+ microsoft_agents/activity/audio_card.py,sha256=EVNOZ-Pgr3NVpQvNRjkQSq18TfBuW9_N_9qOP_F6rb8,2048
22
+ microsoft_agents/activity/basic_card.py,sha256=vJ8NcMCmGyNp_LTo1ErE9xocO_e_zP8BL-ekVltal-I,1051
23
+ microsoft_agents/activity/caller_id_constants.py,sha256=OPUjKk3iFb-5oBcFUPpgHMYwvLPaPuz5iJNzX77a4gU,315
24
+ microsoft_agents/activity/card_action.py,sha256=-c9VLUNVrRx1wYCSiCueZRvWOO5nWOA6xrGh6gHs7i0,1509
25
+ microsoft_agents/activity/card_image.py,sha256=2DCOErbmGm8dRhJrYhxDweQgH0ys-5_cRISxgJ7hx9k,640
26
+ microsoft_agents/activity/channel_account.py,sha256=GDfD1mpCLQDxSgMeGkJ3a221js0M7Pga4zXebbaRjFM,1289
27
+ microsoft_agents/activity/channel_adapter_protocol.py,sha256=CQU9FhsR5UCzRib8DJVj9DO0131QB9Kn5euhHRKGCf4,2135
28
+ microsoft_agents/activity/channel_id.py,sha256=d3AGcrlFmcUlaDFfgpTD-YYKaHcjxId0gcwtlVTJc8A,3824
29
+ microsoft_agents/activity/channels.py,sha256=UC5MDF5C4PbW29rJhtXzfjA-4y4VqPXi1nK8oCmHM0o,4560
30
+ microsoft_agents/activity/contact_relation_update_action_types.py,sha256=6RIJbnVmr8agTPYYw84xTH9rx88QE0dvMbNwC0cpcG0,208
31
+ microsoft_agents/activity/conversation_account.py,sha256=rrjH-6wDp7PsjDTLyh1up2lTCghmtaT_wMApu2nrSVo,1598
32
+ microsoft_agents/activity/conversation_members.py,sha256=6-kBKO3W7rtpG1sbhKX5T6FDBDlQDzXdIIpjQALw1K4,552
33
+ microsoft_agents/activity/conversation_parameters.py,sha256=JwsoZeml90q8W_ngYBao218-q1FIMSAbIf3yUXz3yAg,1475
34
+ microsoft_agents/activity/conversation_reference.py,sha256=hcWDW8oi18KDX4HCcMfEOcsa9IJgj-_ymXPbg49LGsY,2657
35
+ microsoft_agents/activity/conversation_resource_response.py,sha256=du_lE0AFPo_PEWj2a5gilsYFD8wfDidPh9LmUHQJVyA,652
36
+ microsoft_agents/activity/conversation_update_types.py,sha256=l57bE-oXKEYyrTLPmcYCioZD_VSfXQLUl9l29Pkw_7w,568
37
+ microsoft_agents/activity/conversations_result.py,sha256=GK_l5ou-veMnM7eQgiTQ1eUnf52KKEi6okUzf_ybeNc,617
38
+ microsoft_agents/activity/delivery_modes.py,sha256=7-etKNmYpfx5IU_q5MhqN04eEJw6UmS3tkcpI1ngvFk,294
39
+ microsoft_agents/activity/end_of_conversation_codes.py,sha256=kxSmn6yLnbM2obpjC1CdmAzXy0pWJGX5DcjuvmbZqFc,396
40
+ microsoft_agents/activity/error.py,sha256=FcnHfuqSI8Gebts6ygm1hOC0YXzJrzMAyzGWVz9y-yw,646
41
+ microsoft_agents/activity/error_response.py,sha256=w159KeFGZCYYt7quV5XwgiKZNdRDI6dzkZTeCqIWzko,339
42
+ microsoft_agents/activity/expected_replies.py,sha256=aNLOTBqaYDPukcEbCsZwWiWGQ0CWqFvzEF9_EeS4-Gk,438
43
+ microsoft_agents/activity/fact.py,sha256=pBxUcHBiw6IxmivJVFDWMV0ox5DvHI43zwadlz78mqc,644
44
+ microsoft_agents/activity/hero_card.py,sha256=MTmP813-R-p4oEm5wuN15hHkDz32mtwcrHPhUq8wPk0,1083
45
+ microsoft_agents/activity/inner_http_error.py,sha256=M-TT0YgX9VcuxGL-H2V7GT61JoGSgAdLj-f3MdYBs5s,428
46
+ microsoft_agents/activity/input_hints.py,sha256=14us7b1Km-uApAQUpjC5VYnm12QaD-NhpwBQZwwRg0o,263
47
+ microsoft_agents/activity/installation_update_action_types.py,sha256=vpvepQ9IbuYWcjOa2d4ruG0PWIUb15Z4hZsaU6wl8Sw,205
48
+ microsoft_agents/activity/invoke_response.py,sha256=VIfYldqx0NKb8N8NtVh-GBUbkOsg3C_KTSMwh07FQnY,956
49
+ microsoft_agents/activity/media_card.py,sha256=g2N1a6es9En4EnhQ_NwLumIVZvdS-Xlo2hDWXjKaYYM,2048
50
+ microsoft_agents/activity/media_event_value.py,sha256=FhyXD-n8SGPK7X0qUc30USFrcFOXSAOZovA_5ioWgmQ,409
51
+ microsoft_agents/activity/media_url.py,sha256=9EyYu4V4winHoEl_uz8SsLObiGXA-DVSBSln3S7GA08,496
52
+ microsoft_agents/activity/message_reaction.py,sha256=qynq4661vyDlAhejLtqUa042Zajt0JrP3UWvQcLaNRY,439
53
+ microsoft_agents/activity/message_reaction_types.py,sha256=bSZxOLXT9R76EC9BI2PJwwg6IXgBJY8b9bfLUnuGinI,314
54
+ microsoft_agents/activity/message_update_types.py,sha256=DOA-Y8bzj2uwr75cFIgbupnocHRfA9u_iVM5P3yXUac,276
55
+ microsoft_agents/activity/oauth_card.py,sha256=Y-dJ6sRnoUTNibWRve6zIjG_P8Y2lJJJ62mVawsDr1E,952
56
+ microsoft_agents/activity/paged_members_result.py,sha256=l85Qw32maNTxonaPS_vGqoq7p-wXLyEP2N_D_XSOguM,568
57
+ microsoft_agents/activity/receipt_card.py,sha256=tHoG7Lzpr82o2WhP2oBcZyy_-uidOdv9046zCOfTS7M,1340
58
+ microsoft_agents/activity/receipt_item.py,sha256=t2JyzseVHE97EzalICJLfjBb4kTqqzwpHkV8oRZLOUg,1202
59
+ microsoft_agents/activity/resource_response.py,sha256=Ft3SHgpkRSIqRoIGtXhuMB4UrI-CIoJscM0d8OKWpCs,350
60
+ microsoft_agents/activity/role_types.py,sha256=DH39jBc-xjB_y0vCOvROtujIBOi9DTZf1ABtELrzZZQ,280
61
+ microsoft_agents/activity/semantic_action.py,sha256=A4ek2zMvBHzNpuKymSmH3k6WxlVDCZH0WB2dtMIlQ8U,738
62
+ microsoft_agents/activity/semantic_actions_states.py,sha256=8uD9w9Za-ZUGnhol63LGkzhPyCbF0VSzQ3qlbTlhjAc,244
63
+ microsoft_agents/activity/sign_in_constants.py,sha256=3juR-nSfP0vr3TvFPhQ2foEivt1lLgWxsG6LQmWhhkc,534
64
+ microsoft_agents/activity/sign_in_resource.py,sha256=7aT7m7eSLVuW6veD3OxAM_IcSxVqFaK3zu31SSSEE1w,541
65
+ microsoft_agents/activity/signin_card.py,sha256=3sc9ECFIS7JP3iIkQOHvG2WEaHg3MBnXWFwrnDQ7STU,537
66
+ microsoft_agents/activity/suggested_actions.py,sha256=IsLG-_zDsAL2-Y6zxvCSpzcsqQzNh14cNA7N29A6ni4,682
67
+ microsoft_agents/activity/text_format_types.py,sha256=9e1uJTe0mRojA60xJo7D2JLmxJRFHNtIUdvIQZ1BZmA,215
68
+ microsoft_agents/activity/text_highlight.py,sha256=uqh7N248SWgQIu3ZYmx2ZIJRL3LJMfj8enWxFTefBgI,525
69
+ microsoft_agents/activity/thumbnail_card.py,sha256=v828NtmqRmVx5Bcvl1ijZYQwcm4bTCH8Zte4AaFP-9Y,1103
70
+ microsoft_agents/activity/thumbnail_url.py,sha256=PL20G49kzfr5-Oh58j9uooV_NnGBsvGSwGrUXtLA8k0,478
71
+ microsoft_agents/activity/token_exchange_invoke_request.py,sha256=PF7x1RaRRUNkY0ghGfeWNgLZF-e6td6yJk5bj-N9eW0,726
72
+ microsoft_agents/activity/token_exchange_invoke_response.py,sha256=pri_QGLfZyyOcQaw3GqO3jt7anTAjpS9oYDfgWrWQiM,763
73
+ microsoft_agents/activity/token_exchange_resource.py,sha256=EJxcMf4TkKXvOVuyy7DL2Q2-09zEYbRZjqCY6ddJ54M,391
74
+ microsoft_agents/activity/token_exchange_state.py,sha256=w9N1KAsHUfS_aUFa9oLHM8Y6xl9NpahzkL924WmJtlI,1547
75
+ microsoft_agents/activity/token_or_sign_in_resource_response.py,sha256=UUD2K58E6qB5oi-14Q2e9OLRsYXx07RWjLD5lpqfpmw,743
76
+ microsoft_agents/activity/token_post_resource.py,sha256=IpUXDuCkbHnOWm6aDXBUpKWrgck_x97IpWnRAgM5bFY,321
77
+ microsoft_agents/activity/token_request.py,sha256=suHLdXi1MiQq__7lCUu0eq0Fa1zLVgikU3N9LDqVi38,543
78
+ microsoft_agents/activity/token_response.py,sha256=Zv-9uZ4UvB4TcS6NPklSoONv8WEbTwAkKROZi3UFglI,1413
79
+ microsoft_agents/activity/token_status.py,sha256=o3pGTKRjuqEndRWClMe91Cmox6cW8aDrOTvE3_k5jFI,1174
80
+ microsoft_agents/activity/transcript.py,sha256=vV0p-JEt62UPp3D4gmz1Fn1vq45vpjc01x2p5iCzKsw,423
81
+ microsoft_agents/activity/turn_context_protocol.py,sha256=S1lJi_pT-o3w0RNB9p4WDiOEL7SHBf_gojRfY9CBwF4,1787
82
+ microsoft_agents/activity/video_card.py,sha256=6ZYvTYCsIsACbR3KJBhfwFJ1GTYbjKJWvBsqw0pyyWA,2048
83
+ microsoft_agents/activity/_utils/__init__.py,sha256=GM-i-Cw49__7zSb7OMzS5S4KFkKU1uEf5LlINUgipmY,172
84
+ microsoft_agents/activity/_utils/_deferred_string.py,sha256=4FGBIExyfmncr-jxgsARWct9cy-5nnPll2nUD-UYkXw,1124
85
+ microsoft_agents/activity/entity/__init__.py,sha256=nq9ySwflvNeFWKxZmvb4XenYwB_ATDbeOikkk860UfY,826
86
+ microsoft_agents/activity/entity/ai_entity.py,sha256=VOjU9Y6m68vkiKUHnqG5XmNPRu4KCSKmd0XPDCJ6B0s,3280
87
+ microsoft_agents/activity/entity/entity.py,sha256=FmJ23emzoEiV66JjpkOwCQoJReFB_5whihj3PFdRtKk,1105
88
+ microsoft_agents/activity/entity/entity_types.py,sha256=_oqG6O2Ds0BHmY65KN_elaXly6rporMmUYcaWEjqi3s,336
89
+ microsoft_agents/activity/entity/geo_coordinates.py,sha256=xLc8SGGmjmJL3m-ionTicC_rL4x09_0hWa28Ed5JKLs,1080
90
+ microsoft_agents/activity/entity/mention.py,sha256=Gpjy4o7_5EQ1flkADPMzJw6nOU92uzf5Gt54Rj7Oi-c,714
91
+ microsoft_agents/activity/entity/place.py,sha256=uw-YUdbhkgawjor92vZwz7qmdcSIVDhYG0L5CphfFrI,995
92
+ microsoft_agents/activity/entity/product_info.py,sha256=bFacwylgKbLuebM5zVpMyud32SCvH6_pJ4n6_wWYMdg,529
93
+ microsoft_agents/activity/entity/thing.py,sha256=u-uWCHgZrrjh_d7pje1GszNmiDfLRKbM26PJnel8Ye8,527
94
+ microsoft_agents/activity/errors/__init__.py,sha256=BWpGgu9jXxsfSjKx40CHPy0g5BW5odQGGaj3LbkKGuk,389
95
+ microsoft_agents/activity/errors/error_message.py,sha256=UTEsUaIoISZjDjGgr-bwQqKmqA8AN1jE-cjN9U8921Y,2102
96
+ microsoft_agents/activity/errors/error_resources.py,sha256=Fi7_yEbmrkZI7PO6SpWMqRr4-V1fNQYxTA3uj1nMk4M,1319
97
+ microsoft_agents/activity/teams/__init__.py,sha256=pdcnd_Ud92Eox_fHSgm1kwzwFmG8LVeatF9MRI8IaVY,8532
98
+ microsoft_agents/activity/teams/app_based_link_query.py,sha256=-2uuPbyElN0DbU5R_mTJ_o7jphBNFr1ZFlLeziXuxn0,462
99
+ microsoft_agents/activity/teams/batch_failed_entries_response.py,sha256=Q6Mgbdu_OdFGEKmaMu3jr71BSfwNtAgCMLyDSrfLf7I,439
100
+ microsoft_agents/activity/teams/batch_failed_entry.py,sha256=Zu9UaPJj2oIO5ZgLDS2wFuKIQIy7Rx0Mtf51gQO2XJM,399
101
+ microsoft_agents/activity/teams/batch_operation_response.py,sha256=AxHlwC5M3SzebzQuKYWrUNSi0pwBgwhmkJSOnaB0iJM,320
102
+ microsoft_agents/activity/teams/batch_operation_state_response.py,sha256=OaLNvEfs7yypVWJ8zglP5IYWPaSiiSdm6nJV4twzYLM,796
103
+ microsoft_agents/activity/teams/bot_config_auth.py,sha256=MMOqM7uuuEvlKQhY3Fom8lDo3RXyaBUGIJazzJHHQVs,554
104
+ microsoft_agents/activity/teams/cache_info.py,sha256=AwnBAK6kdffzhp40uhs-oJigQZWps9NHcBxFdaH-_Ag,531
105
+ microsoft_agents/activity/teams/cancel_operation_response.py,sha256=ACKR0ifabsVp8wOJdl2I7qzg9mgXLx-xOTiQGZXELrw,618
106
+ microsoft_agents/activity/teams/channel_info.py,sha256=tldwe5AJFutP9SW5jTGgfFFxey3jRlp0RGhYrgo0WsI,570
107
+ microsoft_agents/activity/teams/config_auth_response.py,sha256=ck0ZxPb056n0IBu9r1Icovd_0NpvfTW5tc6phrM_yco,511
108
+ microsoft_agents/activity/teams/config_response.py,sha256=G7vMyzFdSMF3-dLTAhTM8ob-wBDphHyXn8MP21rhu-Q,527
109
+ microsoft_agents/activity/teams/config_response_base.py,sha256=lV2j9-4gzV4_ikY-EcHwFakcmaq4UhJOdz0EQws0GqI,367
110
+ microsoft_agents/activity/teams/config_task_response.py,sha256=7C8idRQJAUEUUr6j9OHI6VnoxJzkG3PYl71cCs1hidg,513
111
+ microsoft_agents/activity/teams/conversation_list.py,sha256=KXcMedIZQY3pwiD9T-eMQqaQZSbjjVYfLk35fM7cxMY,419
112
+ microsoft_agents/activity/teams/file_consent_card.py,sha256=nCCClWrqt8t2t3nYhcDFB2HRHli50esZDF6xLANlBPA,752
113
+ microsoft_agents/activity/teams/file_consent_card_response.py,sha256=A8lygz940-PUxX8wh4A-iQjV16tmg1_k0ZDN33l3wfg,765
114
+ microsoft_agents/activity/teams/file_download_info.py,sha256=j5ws8LaikpetQLj1X4o17YWAMHP5CElq1agyLViTHdY,603
115
+ microsoft_agents/activity/teams/file_info_card.py,sha256=iGs9BztpXQRJCwsg2ygPGUQBupUImuWn5WOriO6U7Ng,490
116
+ microsoft_agents/activity/teams/file_upload_info.py,sha256=ljbY1JMNN-JIY_SCz-sonL8T_JKms1etLx_9Nr-tOvg,714
117
+ microsoft_agents/activity/teams/meeting_details.py,sha256=ECuEfsRRvMvuhz_zDIwlNkn_Sg_D2IkR1_pKHYnex2Q,766
118
+ microsoft_agents/activity/teams/meeting_details_base.py,sha256=7oZJHDBmDxCjBmzv3xPTwtXCzFlYUBNj5sAI1_ijPKE,570
119
+ microsoft_agents/activity/teams/meeting_end_event_details.py,sha256=nSJ-EqFzwRMFcZJpADHj3cqn7byAUra6MxZZA1F5Pxo,376
120
+ microsoft_agents/activity/teams/meeting_event_details.py,sha256=UVzPaGX2Lrlsd_vslF1coV23AQxETq_Nwaz1QTYIXKQ,374
121
+ microsoft_agents/activity/teams/meeting_info.py,sha256=pAMgH2q8aCvMutKDVfxvF-_2NzO-seiO1xY-WDgcNAY,807
122
+ microsoft_agents/activity/teams/meeting_notification.py,sha256=bJ58uClstIBYUIF0dsaRaDJYcPJ1UNul5HQ3J4NX6HM,541
123
+ microsoft_agents/activity/teams/meeting_notification_base.py,sha256=xSrhUjj7bOf5vJHqSNAJL0neAFBay3aWblKjl3wM_Vk,362
124
+ microsoft_agents/activity/teams/meeting_notification_channel_data.py,sha256=hXItBsPXhA2BGu4tjuLab4g8lcpjNhnr0h7DpxGhgOg,495
125
+ microsoft_agents/activity/teams/meeting_notification_recipient_failure_info.py,sha256=ZrXKxogP25asFlcUtuHjjrSNQmHk6xNZyCHOs0X7eqw,696
126
+ microsoft_agents/activity/teams/meeting_notification_response.py,sha256=ZN_NpvrxP32PlxuXzyCD4ysCDH_GQnSV5PS5cgLJMgA,691
127
+ microsoft_agents/activity/teams/meeting_participant_info.py,sha256=9rRrzJjHJoP9dZPE8vd1qtpY97DZw9mude2lI2PrWQM,508
128
+ microsoft_agents/activity/teams/meeting_participants_event_details.py,sha256=WwmtBofu6KbxanUGIx4a9iSmDn_XL4qmI0ujqk4JM9M,471
129
+ microsoft_agents/activity/teams/meeting_stage_surface.py,sha256=lRlxly0KReF035rp6RpMdWj3hySGugfIf33bZyCicQ0,626
130
+ microsoft_agents/activity/teams/meeting_start_event_details.py,sha256=7G2sOEsMUOFAgXLnKq_TVDLzu4yXzjSjzX4T4MtC9qM,388
131
+ microsoft_agents/activity/teams/meeting_tab_icon_surface.py,sha256=jQHBPVE3gR6kEW_-DNNamPEAsDvuDx1vo4PsNuVnlV8,417
132
+ microsoft_agents/activity/teams/message_actions_payload.py,sha256=r8zbKj8RXu-reCZGrGm93uPZnKM8N_SPofRlvoFhtaI,3195
133
+ microsoft_agents/activity/teams/message_actions_payload_app.py,sha256=zt4hnaw4BM0fk4tULRli2-VZPWceJbzPjeU5d6hwqhE,955
134
+ microsoft_agents/activity/teams/message_actions_payload_attachment.py,sha256=IKoEkmCYlL0tMkIhj2yVULOyY9645L-mjU9AIT43wg0,1099
135
+ microsoft_agents/activity/teams/message_actions_payload_body.py,sha256=oZE97w_2J7j1tn1gMxeS1rbIS1ci7oDkXNw-EzRFV5k,495
136
+ microsoft_agents/activity/teams/message_actions_payload_conversation.py,sha256=gLzH9AT-R4TT4owErcrlfj9WzxguRuAGmnG-i6sdHzw,644
137
+ microsoft_agents/activity/teams/message_actions_payload_from.py,sha256=IRD_Kz1IbrlwqcmqjJyMHVegVfmly4poB8GgIG5kd_k,1061
138
+ microsoft_agents/activity/teams/message_actions_payload_mention.py,sha256=vZDVyoknt01mQt6zEsrh7ArPb8rzdBcs8IqRWEVKeb8,779
139
+ microsoft_agents/activity/teams/message_actions_payload_reaction.py,sha256=_hUy5bbTbXsfobLjOD7YifvcJ5gKVv7nWDoEqYfzFh8,894
140
+ microsoft_agents/activity/teams/message_actions_payload_user.py,sha256=XShr0xGc-8cYhu1xPQDjXaa-Zr-7vQFaWToyayHl9qg,882
141
+ microsoft_agents/activity/teams/messaging_extension_action.py,sha256=ktcmD7ktsADEN3PfxdTI4rNNSqNZXJC_CFPz_-CPkKY,1537
142
+ microsoft_agents/activity/teams/messaging_extension_action_response.py,sha256=CVsox4boihpfSAMjWR-2W8YOEkcDVpgfAcYa8iXGUTA,881
143
+ microsoft_agents/activity/teams/messaging_extension_attachment.py,sha256=zhZh8Sv6TElaeqZZ6Pnk4k_iyLkZrz-Q_qtZeaOPzbo,933
144
+ microsoft_agents/activity/teams/messaging_extension_parameter.py,sha256=CaBXoluvtMorlf87xPO94qQN40XNXQlTMtwPJlZuuZg,406
145
+ microsoft_agents/activity/teams/messaging_extension_query.py,sha256=6Mo14r0KZMlbGnSfFNk2Cd39v7czjbr_8CCnV4OwC-E,1014
146
+ microsoft_agents/activity/teams/messaging_extension_query_options.py,sha256=PRi4QxJNp0BF8f61PfwOniH3Aldg2EZP05z1hCxYIpM,413
147
+ microsoft_agents/activity/teams/messaging_extension_response.py,sha256=z69aU_wzlPuvjVn0c1MP7coUpX_TRanUoSNs-yJYa84,706
148
+ microsoft_agents/activity/teams/messaging_extension_result.py,sha256=XB-5wVTvrv5Tx3928U3dPiMeR_S2CZqPCKbHW5X7ez0,1461
149
+ microsoft_agents/activity/teams/messaging_extension_suggested_action.py,sha256=8JiMl15dVGqgrdS2H82zc3Pr1qDbf5k1MhUA76ZGUM8,430
150
+ microsoft_agents/activity/teams/notification_info.py,sha256=1gY97Dsbjx5fvPOV3viUjOk3Qvx-r_clprNY4Q8eAQs,764
151
+ microsoft_agents/activity/teams/o365_connector_card.py,sha256=wAzj5-5LM9i2JA821SHO1UtUTaYN9WaNwqPmZfOKcDE,1187
152
+ microsoft_agents/activity/teams/o365_connector_card_action_base.py,sha256=TKl6QzOw-nNSV6TX2Ezwkl1tjwuQ0PeKiCVQ25-31b8,629
153
+ microsoft_agents/activity/teams/o365_connector_card_action_card.py,sha256=RF8a4vFMc7Q1B4NSsGI6FWTQOfJ5UjrWSHkVwE_3xsY,1143
154
+ microsoft_agents/activity/teams/o365_connector_card_action_query.py,sha256=J-cyiiRQadNacaNx3FcV5xzrz6PyECvXkE9japc6h1c,346
155
+ microsoft_agents/activity/teams/o365_connector_card_date_input.py,sha256=AdzLPe6_KmAf4TP0UNrIxXIBkbb4MSsJ4b1dlcWUwXA,1038
156
+ microsoft_agents/activity/teams/o365_connector_card_fact.py,sha256=D633JwrOQmHAeCHL7I00Gg6PpOXIsCkOIfRlvYgF7c4,392
157
+ microsoft_agents/activity/teams/o365_connector_card_http_post.py,sha256=hv-GQm1q-JeWMXTpDlCpJJVIzlsSiC9h68oFiLl2flY,710
158
+ microsoft_agents/activity/teams/o365_connector_card_image.py,sha256=TgmEeGUy9OWDO2O9TvyLVaz9E2kSdBAVQnuZCDVGMIs,432
159
+ microsoft_agents/activity/teams/o365_connector_card_input_base.py,sha256=EKnH76_SPTvCU0H8kElhwWdlM11DfApLpTA1fS2onUA,991
160
+ microsoft_agents/activity/teams/o365_connector_card_multichoice_input.py,sha256=aPy-kYMaKxA-lQetFrEC21ZjeMYZNz_547in5lDCvU4,1592
161
+ microsoft_agents/activity/teams/o365_connector_card_multichoice_input_choice.py,sha256=mWt5GbDKoh4Xx--qdvVsgcgEUZRl8qMJYT8XPFknMd0,438
162
+ microsoft_agents/activity/teams/o365_connector_card_open_uri.py,sha256=qH9NHKsnGJFOL1kqiPXOYSaPEb32vj4Zp01q15mI74Y,846
163
+ microsoft_agents/activity/teams/o365_connector_card_open_uri_target.py,sha256=nMROdPp1CECO1KrFo6jFkBVKEP9TYnrsxmJWa2dGsBU,448
164
+ microsoft_agents/activity/teams/o365_connector_card_section.py,sha256=UuVT50ral2aXYC4hVwFeJ5yTKGCe3g1OBbh5RBucY7g,1706
165
+ microsoft_agents/activity/teams/o365_connector_card_text_input.py,sha256=YXWsC_YtUttZlOFA4D8wADNLmUYGHXwSyajFZij7Rog,1120
166
+ microsoft_agents/activity/teams/o365_connector_card_view_action.py,sha256=06X2OhFxx3Lsmlvo9VxfOdS0GxgUfuksVd9oc72JbXE,732
167
+ microsoft_agents/activity/teams/on_behalf_of.py,sha256=2vEpGiPN5CGV9D-3ARN22ag_gqfnduXt94hfG-Pzjck,683
168
+ microsoft_agents/activity/teams/read_receipt_info.py,sha256=qIm_0YPM3VcoFM0XH0OCSOfnD9_W7_bSnZkYwSRIVU0,1892
169
+ microsoft_agents/activity/teams/signin_state_verification_query.py,sha256=AYgOvYThkXzIrD7ZsZ2MazgVMwwsf4ZWYwcT2DkdfIc,355
170
+ microsoft_agents/activity/teams/surface.py,sha256=EE8gJVcAMXS_JMUeM1aeoC7bOMhHxQ85MD6TMFMvptA,419
171
+ microsoft_agents/activity/teams/tab_context.py,sha256=C5QCnmoBHQjzfMH1PhdF9HTgxUiZ8rhd6XpxvKfvuDA,338
172
+ microsoft_agents/activity/teams/tab_entity_context.py,sha256=ZEgYTIC01qFJ37FJvCEOzK73PSB-wBtPWN2jjtebGcs,365
173
+ microsoft_agents/activity/teams/tab_request.py,sha256=AS0SyD3eYqqR6N5tTYDknD8_zXC-AGDX9G7Qeriljvw,739
174
+ microsoft_agents/activity/teams/tab_response.py,sha256=hQhFkU8DB5BTLxrUgu6bKck4O0tNJsln-IKe1wk2Fzc,425
175
+ microsoft_agents/activity/teams/tab_response_card.py,sha256=eevi3foLXv9ovPejfhMSF3G5GINqLN69ZRZ9qDidcWo,346
176
+ microsoft_agents/activity/teams/tab_response_cards.py,sha256=KBiUMKuJhlFClPyl2KmsbSVS01AQ02KdeJYHVIiLG_s,490
177
+ microsoft_agents/activity/teams/tab_response_payload.py,sha256=2-nGmu5tSrYdne8bz8-w8hun-tPMhgTtztRlLRcUIbk,932
178
+ microsoft_agents/activity/teams/tab_submit.py,sha256=8u8cz4hsg76wNCudyykyh2EkZL_6H5WjKjeJlkRWbBE,828
179
+ microsoft_agents/activity/teams/tab_submit_data.py,sha256=GtA2NkE_LFhLhFKQujl3yP9QB_bbFU7vgDZYh1uUAsY,542
180
+ microsoft_agents/activity/teams/tab_suggested_actions.py,sha256=1E2sb8sMdvW5MJH21gOb46_0tVdLwAlVDiQI1oNVNf0,468
181
+ microsoft_agents/activity/teams/targeted_meeting_notification.py,sha256=Qjdo4J8floVil5qMKQPvE07C8GLmub_RnYrkkxTQobY,777
182
+ microsoft_agents/activity/teams/targeted_meeting_notification_value.py,sha256=VdK3-8xntAGYlnHuCyUdN1KxM-8CQlh9KpkxFt7wP-4,567
183
+ microsoft_agents/activity/teams/task_module_card_response.py,sha256=XinpZw5b6xUsTjslpG9QVqTuIfQwemQwxgEj8UA3KcI,407
184
+ microsoft_agents/activity/teams/task_module_continue_response.py,sha256=CWKwFD-Vgk4hGnIGuq_c9M6ct9QIvp4zG0ylxNlb5Ik,561
185
+ microsoft_agents/activity/teams/task_module_message_response.py,sha256=TAXmozW-U8OPst5GSXg2nFcJtMtO3wF-6voU_nx5gwg,482
186
+ microsoft_agents/activity/teams/task_module_request.py,sha256=Zl5gJi55jz1-pbTEXG-BJMR4wktOtq01tpqpMFlM-to,887
187
+ microsoft_agents/activity/teams/task_module_request_context.py,sha256=HaKRkQYUhm414D_snxUlj9Xw7tJaT3JzZKAYuTrCHLw,368
188
+ microsoft_agents/activity/teams/task_module_response.py,sha256=c0Th_IUPXDzDwKmkTU3pR0v-Szd1vmZB4iYglLnkkho,693
189
+ microsoft_agents/activity/teams/task_module_response_base.py,sha256=xISwRTRS9jaOvV6ZQm6AVb9iM5JNdrP8YU7zcM1dxjc,392
190
+ microsoft_agents/activity/teams/task_module_task_info.py,sha256=hjqQK2ihIw0lnNDSqQXp6Bix0qoEqDzdmLL8dT0DP0w,803
191
+ microsoft_agents/activity/teams/team_details.py,sha256=dEgqvQ_I6PhxvcSQS1zJfRsOLgDeiD0VN4Rz9TqaTx8,816
192
+ microsoft_agents/activity/teams/team_info.py,sha256=AsYyQwjOBA6C2sx-c54jJ-6ZVPBnimIfhQ7C_DWOV6c,469
193
+ microsoft_agents/activity/teams/teams_batch_operation_response.py,sha256=pzjiBAEYSCy92sNjNrLRqEyoVHVZ-1PHocPjNwcIiM4,622
194
+ microsoft_agents/activity/teams/teams_channel_account.py,sha256=4qWy_MFmitJvb3ugqz8pYaH-NeiUXpBEXnkwerKR5_g,1371
195
+ microsoft_agents/activity/teams/teams_channel_data.py,sha256=HOhdGa8hH6lnJwJRSH6NYScS87Lp9KQXa7sexktsLzc,1700
196
+ microsoft_agents/activity/teams/teams_channel_data_settings.py,sha256=7T8duAUjfAazAuPaANGRZ_rpzAcYnEEfvzzdqxO1kuU,454
197
+ microsoft_agents/activity/teams/teams_meeting_info.py,sha256=zpCeeYxTNcxYdWeTjE1yLhiR0dkeO8Ds1uI0wh21mRc,310
198
+ microsoft_agents/activity/teams/teams_meeting_member.py,sha256=i6MR1m_Ab4uLRhgjha2uPY3Kj_8zf88AggmbH_GX7XY,573
199
+ microsoft_agents/activity/teams/teams_meeting_participant.py,sha256=Y7T2WFR4LUdT8mXEarv1fhPk_5ZjunPzX4w_r4gvfrc,950
200
+ microsoft_agents/activity/teams/teams_member.py,sha256=vRcLRHy6wTfH7DP6k6QbrKkORWcO76uhDG9zvUMm09g,316
201
+ microsoft_agents/activity/teams/teams_paged_members_result.py,sha256=cG4eKHjA0u1EMioC2ErVpydnoPJrtTDcdhdzYET9xto,555
202
+ microsoft_agents/activity/teams/tenant_info.py,sha256=h8OxMd6LD5lWVj_LK2ut8z7SB0I7Gx74W1wwEiYOzXk,296
203
+ microsoft_agents/activity/teams/user_meeting_details.py,sha256=tvk2CWYf7Bo-DhK8NSojhanJDXEOGVrKXxJDca03CAo,467
204
+ microsoft_agents_activity-0.7.0.dev0.dist-info/licenses/LICENSE,sha256=ws_MuBL-SCEBqPBFl9_FqZkaaydIJmxHrJG2parhU4M,1141
205
+ microsoft_agents_activity-0.7.0.dev0.dist-info/METADATA,sha256=1IQgjcyjIxfXiyA0H9aoVX5-TTM5VOmFritHKwz25ic,8718
206
+ microsoft_agents_activity-0.7.0.dev0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
207
+ microsoft_agents_activity-0.7.0.dev0.dist-info/top_level.txt,sha256=lWKcT4v6fTA_NgsuHdNvuMjSrkiBMXohn64ApY7Xi8A,17
208
+ microsoft_agents_activity-0.7.0.dev0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) Microsoft Corporation.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE
@@ -0,0 +1 @@
1
+ microsoft_agents