microsoft-agents-activity 0.5.0.dev19__py3-none-any.whl → 0.5.2__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.
Potentially problematic release.
This version of microsoft-agents-activity might be problematic. Click here for more details.
- microsoft_agents/activity/channel_account.py +7 -7
- microsoft_agents/activity/conversation_account.py +5 -5
- microsoft_agents/activity/teams/teams_channel_account.py +1 -1
- {microsoft_agents_activity-0.5.0.dev19.dist-info → microsoft_agents_activity-0.5.2.dist-info}/METADATA +19 -1
- {microsoft_agents_activity-0.5.0.dev19.dist-info → microsoft_agents_activity-0.5.2.dist-info}/RECORD +8 -8
- {microsoft_agents_activity-0.5.0.dev19.dist-info → microsoft_agents_activity-0.5.2.dist-info}/WHEEL +0 -0
- {microsoft_agents_activity-0.5.0.dev19.dist-info → microsoft_agents_activity-0.5.2.dist-info}/licenses/LICENSE +0 -0
- {microsoft_agents_activity-0.5.0.dev19.dist-info → microsoft_agents_activity-0.5.2.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
2
2
|
# Licensed under the MIT License.
|
|
3
3
|
|
|
4
|
-
from typing import Any
|
|
4
|
+
from typing import Any, Optional
|
|
5
5
|
|
|
6
6
|
from pydantic import ConfigDict
|
|
7
7
|
from .agents_model import AgentsModel
|
|
@@ -12,7 +12,7 @@ class ChannelAccount(AgentsModel):
|
|
|
12
12
|
"""Channel account information needed to route a message.
|
|
13
13
|
|
|
14
14
|
:param id: Channel id for the user or agent on this channel (Example:
|
|
15
|
-
joe@smith.com
|
|
15
|
+
``joe@smith.com``, or ``@joesmith`` or ``123456``)
|
|
16
16
|
:type id: str
|
|
17
17
|
:param name: Display friendly name
|
|
18
18
|
:type name: str
|
|
@@ -27,11 +27,11 @@ class ChannelAccount(AgentsModel):
|
|
|
27
27
|
|
|
28
28
|
id: NonEmptyString = None
|
|
29
29
|
name: str = None
|
|
30
|
-
aad_object_id: NonEmptyString = None
|
|
31
|
-
role: NonEmptyString = None
|
|
32
|
-
agentic_user_id: NonEmptyString = None
|
|
33
|
-
agentic_app_id: NonEmptyString = None
|
|
34
|
-
tenant_id: NonEmptyString = None
|
|
30
|
+
aad_object_id: Optional[NonEmptyString] = None
|
|
31
|
+
role: Optional[NonEmptyString] = None
|
|
32
|
+
agentic_user_id: Optional[NonEmptyString] = None
|
|
33
|
+
agentic_app_id: Optional[NonEmptyString] = None
|
|
34
|
+
tenant_id: Optional[NonEmptyString] = None
|
|
35
35
|
|
|
36
36
|
@property
|
|
37
37
|
def properties(self) -> dict[str, Any]:
|
|
@@ -16,7 +16,7 @@ class ConversationAccount(AgentsModel):
|
|
|
16
16
|
channels that distinguish between conversation types
|
|
17
17
|
:type conversation_type: str
|
|
18
18
|
:param id: Channel id for the user or agent on this channel (Example:
|
|
19
|
-
joe@smith.com
|
|
19
|
+
``joe@smith.com``, or ``@joesmith`` or ``123456``)
|
|
20
20
|
:type id: str
|
|
21
21
|
:param name: Display friendly name
|
|
22
22
|
:type name: str
|
|
@@ -31,11 +31,11 @@ class ConversationAccount(AgentsModel):
|
|
|
31
31
|
:type properties: object
|
|
32
32
|
"""
|
|
33
33
|
|
|
34
|
-
is_group: bool = None
|
|
34
|
+
is_group: Optional[bool] = None
|
|
35
35
|
conversation_type: NonEmptyString = None
|
|
36
36
|
id: NonEmptyString
|
|
37
|
-
name: NonEmptyString = None
|
|
38
|
-
aad_object_id: NonEmptyString = None
|
|
39
|
-
role: NonEmptyString = None
|
|
37
|
+
name: Optional[NonEmptyString] = None
|
|
38
|
+
aad_object_id: Optional[NonEmptyString] = None
|
|
39
|
+
role: Optional[NonEmptyString] = None
|
|
40
40
|
tenant_id: Optional[NonEmptyString] = None
|
|
41
41
|
properties: object = None
|
|
@@ -9,7 +9,7 @@ from ..agents_model import AgentsModel
|
|
|
9
9
|
class TeamsChannelAccount(AgentsModel):
|
|
10
10
|
"""Teams channel account detailing user Azure Active Directory details.
|
|
11
11
|
|
|
12
|
-
:param id: Channel id for the user or bot on this channel (Example: joe@smith.com
|
|
12
|
+
:param id: Channel id for the user or bot on this channel (Example: ``joe@smith.com``, or ``@joesmith`` or ``123456``)
|
|
13
13
|
:type id: str
|
|
14
14
|
:param name: Display friendly name
|
|
15
15
|
:type name: str
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microsoft-agents-activity
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
4
4
|
Summary: A protocol library for Microsoft Agents
|
|
5
5
|
Author: Microsoft Corporation
|
|
6
6
|
License-Expression: MIT
|
|
@@ -28,6 +28,24 @@ Core types and schemas for building conversational AI agents that work across Mi
|
|
|
28
28
|
|
|
29
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
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
|
+
|
|
31
49
|
## Packages Overview
|
|
32
50
|
|
|
33
51
|
We offer the following PyPI packages to create conversational experiences based on Agents:
|
{microsoft_agents_activity-0.5.0.dev19.dist-info → microsoft_agents_activity-0.5.2.dist-info}/RECORD
RENAMED
|
@@ -23,12 +23,12 @@ microsoft_agents/activity/basic_card.py,sha256=vJ8NcMCmGyNp_LTo1ErE9xocO_e_zP8BL
|
|
|
23
23
|
microsoft_agents/activity/caller_id_constants.py,sha256=OPUjKk3iFb-5oBcFUPpgHMYwvLPaPuz5iJNzX77a4gU,315
|
|
24
24
|
microsoft_agents/activity/card_action.py,sha256=-c9VLUNVrRx1wYCSiCueZRvWOO5nWOA6xrGh6gHs7i0,1509
|
|
25
25
|
microsoft_agents/activity/card_image.py,sha256=2DCOErbmGm8dRhJrYhxDweQgH0ys-5_cRISxgJ7hx9k,640
|
|
26
|
-
microsoft_agents/activity/channel_account.py,sha256=
|
|
26
|
+
microsoft_agents/activity/channel_account.py,sha256=GDfD1mpCLQDxSgMeGkJ3a221js0M7Pga4zXebbaRjFM,1289
|
|
27
27
|
microsoft_agents/activity/channel_adapter_protocol.py,sha256=CQU9FhsR5UCzRib8DJVj9DO0131QB9Kn5euhHRKGCf4,2135
|
|
28
28
|
microsoft_agents/activity/channel_id.py,sha256=m59mGBfHQ5g3AdK2p_kMxIm9pC--okgOz3wopTmxFMs,3814
|
|
29
29
|
microsoft_agents/activity/channels.py,sha256=UC5MDF5C4PbW29rJhtXzfjA-4y4VqPXi1nK8oCmHM0o,4560
|
|
30
30
|
microsoft_agents/activity/contact_relation_update_action_types.py,sha256=6RIJbnVmr8agTPYYw84xTH9rx88QE0dvMbNwC0cpcG0,208
|
|
31
|
-
microsoft_agents/activity/conversation_account.py,sha256=
|
|
31
|
+
microsoft_agents/activity/conversation_account.py,sha256=7NrnnDsLQVZCSNdQFTQOoyMASVYTbeZUiWzcf-hN3WA,1588
|
|
32
32
|
microsoft_agents/activity/conversation_members.py,sha256=6-kBKO3W7rtpG1sbhKX5T6FDBDlQDzXdIIpjQALw1K4,552
|
|
33
33
|
microsoft_agents/activity/conversation_parameters.py,sha256=JwsoZeml90q8W_ngYBao218-q1FIMSAbIf3yUXz3yAg,1475
|
|
34
34
|
microsoft_agents/activity/conversation_reference.py,sha256=hcWDW8oi18KDX4HCcMfEOcsa9IJgj-_ymXPbg49LGsY,2657
|
|
@@ -186,7 +186,7 @@ microsoft_agents/activity/teams/task_module_task_info.py,sha256=hjqQK2ihIw0lnNDS
|
|
|
186
186
|
microsoft_agents/activity/teams/team_details.py,sha256=dEgqvQ_I6PhxvcSQS1zJfRsOLgDeiD0VN4Rz9TqaTx8,816
|
|
187
187
|
microsoft_agents/activity/teams/team_info.py,sha256=AsYyQwjOBA6C2sx-c54jJ-6ZVPBnimIfhQ7C_DWOV6c,469
|
|
188
188
|
microsoft_agents/activity/teams/teams_batch_operation_response.py,sha256=pzjiBAEYSCy92sNjNrLRqEyoVHVZ-1PHocPjNwcIiM4,622
|
|
189
|
-
microsoft_agents/activity/teams/teams_channel_account.py,sha256=
|
|
189
|
+
microsoft_agents/activity/teams/teams_channel_account.py,sha256=4qWy_MFmitJvb3ugqz8pYaH-NeiUXpBEXnkwerKR5_g,1371
|
|
190
190
|
microsoft_agents/activity/teams/teams_channel_data.py,sha256=HOhdGa8hH6lnJwJRSH6NYScS87Lp9KQXa7sexktsLzc,1700
|
|
191
191
|
microsoft_agents/activity/teams/teams_channel_data_settings.py,sha256=7T8duAUjfAazAuPaANGRZ_rpzAcYnEEfvzzdqxO1kuU,454
|
|
192
192
|
microsoft_agents/activity/teams/teams_meeting_info.py,sha256=zpCeeYxTNcxYdWeTjE1yLhiR0dkeO8Ds1uI0wh21mRc,310
|
|
@@ -196,8 +196,8 @@ microsoft_agents/activity/teams/teams_member.py,sha256=vRcLRHy6wTfH7DP6k6QbrKkOR
|
|
|
196
196
|
microsoft_agents/activity/teams/teams_paged_members_result.py,sha256=cG4eKHjA0u1EMioC2ErVpydnoPJrtTDcdhdzYET9xto,555
|
|
197
197
|
microsoft_agents/activity/teams/tenant_info.py,sha256=h8OxMd6LD5lWVj_LK2ut8z7SB0I7Gx74W1wwEiYOzXk,296
|
|
198
198
|
microsoft_agents/activity/teams/user_meeting_details.py,sha256=tvk2CWYf7Bo-DhK8NSojhanJDXEOGVrKXxJDca03CAo,467
|
|
199
|
-
microsoft_agents_activity-0.5.
|
|
200
|
-
microsoft_agents_activity-0.5.
|
|
201
|
-
microsoft_agents_activity-0.5.
|
|
202
|
-
microsoft_agents_activity-0.5.
|
|
203
|
-
microsoft_agents_activity-0.5.
|
|
199
|
+
microsoft_agents_activity-0.5.2.dist-info/licenses/LICENSE,sha256=ws_MuBL-SCEBqPBFl9_FqZkaaydIJmxHrJG2parhU4M,1141
|
|
200
|
+
microsoft_agents_activity-0.5.2.dist-info/METADATA,sha256=oRQWNW_f0nUmk88IqsA9xWV31GFvxvnbylkVAZZTj3o,8713
|
|
201
|
+
microsoft_agents_activity-0.5.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
202
|
+
microsoft_agents_activity-0.5.2.dist-info/top_level.txt,sha256=lWKcT4v6fTA_NgsuHdNvuMjSrkiBMXohn64ApY7Xi8A,17
|
|
203
|
+
microsoft_agents_activity-0.5.2.dist-info/RECORD,,
|
{microsoft_agents_activity-0.5.0.dev19.dist-info → microsoft_agents_activity-0.5.2.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|