microsoft-agents-hosting-teams 0.5.0.dev5__py3-none-any.whl → 0.5.0.dev10__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.
@@ -0,0 +1,104 @@
1
+ Metadata-Version: 2.4
2
+ Name: microsoft-agents-hosting-teams
3
+ Version: 0.5.0.dev10
4
+ Summary: Integration library for Microsoft Agents with Teams
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: Operating System :: OS Independent
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Requires-Dist: microsoft-agents-hosting-core==0.5.0.dev10
14
+ Requires-Dist: aiohttp>=3.11.11
15
+ Dynamic: license-file
16
+ Dynamic: requires-dist
17
+
18
+ # Microsoft Agents Hosting - Teams
19
+
20
+ [![PyPI version](https://img.shields.io/pypi/v/microsoft-agents-hosting-teams)](https://pypi.org/project/microsoft-agents-hosting-teams/)
21
+
22
+ Integration library for building Microsoft Teams agents using the Microsoft 365 Agents SDK. This library provides specialized handlers and utilities for Teams-specific functionality like messaging extensions, task modules, adaptive cards, and meeting events.
23
+
24
+ This library extends the core hosting capabilities with Teams-specific features. It handles Teams' unique interaction patterns like messaging extensions, tab applications, task modules, and meeting integrations. Think of it as the bridge that makes your agent "Teams-native" rather than just a generic chatbot.
25
+
26
+ This library is still in flux, as the interfaces to Teams continue to evolve.
27
+
28
+ # What is this?
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
+ ## Packages Overview
32
+
33
+ We offer the following PyPI packages to create conversational experiences based on Agents:
34
+
35
+ | Package Name | PyPI Version | Description |
36
+ |--------------|-------------|-------------|
37
+ | `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. |
38
+ | `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. |
39
+ | `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. |
40
+ | `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. |
41
+ | `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. |
42
+ | `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. |
43
+ | `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. |
44
+
45
+ Additionally we provide a Copilot Studio Client, to interact with Agents created in CopilotStudio:
46
+
47
+ | Package Name | PyPI Version | Description |
48
+ |--------------|-------------|-------------|
49
+ | `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 |
50
+
51
+
52
+ ## Installation
53
+
54
+ ```bash
55
+ pip install microsoft-agents-hosting-teams
56
+ ```
57
+
58
+ ## Key Classes Reference
59
+
60
+ - **`TeamsActivityHandler`** - Main handler class with Teams-specific event methods
61
+ - **`TeamsInfo`** - Utility class for Teams operations (members, meetings, channels)
62
+ - **`MessagingExtensionQuery/Response`** - Handle search and messaging extensions
63
+ - **`TaskModuleRequest/Response`** - Interactive dialogs and forms
64
+ - **`TabRequest/Response`** - Tab application interactions
65
+
66
+ ## Features Supported
67
+
68
+ ✅ **Messaging Extensions** - Search and action-based extensions
69
+ ✅ **Task Modules** - Interactive dialogs and forms
70
+ ✅ **Adaptive Cards** - Rich card interactions
71
+ ✅ **Meeting Events** - Start, end, participant changes
72
+ ✅ **Team Management** - Member operations, channel messaging
73
+ ✅ **File Handling** - Upload/download with consent flow
74
+ ✅ **Tab Apps** - Personal and team tab interactions
75
+ ✅ **Proactive Messaging** - Send messages to channels/users
76
+
77
+ ## Migration from Bot Framework
78
+
79
+ | Bot Framework Teams | Microsoft Agents Teams |
80
+ |-------------------|------------------------|
81
+ | `TeamsActivityHandler` | `TeamsActivityHandler` |
82
+ | `TeamsInfo` | `TeamsInfo` |
83
+ | `on_teams_members_added` | `on_teams_members_added_activity` |
84
+ | `MessagingExtensionQuery` | `MessagingExtensionQuery` |
85
+ | `TaskModuleRequest` | `TaskModuleRequest` |
86
+
87
+ # Quick Links
88
+
89
+ - 📦 [All SDK Packages on PyPI](https://pypi.org/search/?q=microsoft-agents)
90
+ - 📖 [Complete Documentation](https://aka.ms/agents)
91
+ - 💡 [Python Samples Repository](https://github.com/microsoft/Agents/tree/main/samples/python)
92
+ - 🐛 [Report Issues](https://github.com/microsoft/Agents-for-python/issues)
93
+
94
+ # Sample Applications
95
+
96
+ |Name|Description|README|
97
+ |----|----|----|
98
+ |Quickstart|Simplest agent|[Quickstart](https://github.com/microsoft/Agents/blob/main/samples/python/quickstart/README.md)|
99
+ |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)|
100
+ |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)|
101
+ |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)|
102
+ |Streaming Agent|Streams OpenAI responses|[azure-ai-streaming](https://github.com/microsoft/Agents/blob/main/samples/python/azureai-streaming/README.md)|
103
+ |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)|
104
+ |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,9 @@
1
+ microsoft_agents/hosting/teams/__init__.py,sha256=dFygIL_ogurLI5uq9ikd5C-MZl7uXVw5rUVfi1_H5jY,140
2
+ microsoft_agents/hosting/teams/teams_activity_handler.py,sha256=a-uL8kH5QNDsoQoxH3t4x9luahfaWY38km6oBna2BO4,32762
3
+ microsoft_agents/hosting/teams/teams_cloud_adapter.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ microsoft_agents/hosting/teams/teams_info.py,sha256=SeVbxSCY6yZGamNkIDy5FAHIeKCeosia7zv31OG8t0Q,20756
5
+ microsoft_agents_hosting_teams-0.5.0.dev10.dist-info/licenses/LICENSE,sha256=ws_MuBL-SCEBqPBFl9_FqZkaaydIJmxHrJG2parhU4M,1141
6
+ microsoft_agents_hosting_teams-0.5.0.dev10.dist-info/METADATA,sha256=_mgbmJgwaFY9eIS5zhGhw-Jjn24bPc42on2s9t2ZlYo,6893
7
+ microsoft_agents_hosting_teams-0.5.0.dev10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
8
+ microsoft_agents_hosting_teams-0.5.0.dev10.dist-info/top_level.txt,sha256=lWKcT4v6fTA_NgsuHdNvuMjSrkiBMXohn64ApY7Xi8A,17
9
+ microsoft_agents_hosting_teams-0.5.0.dev10.dist-info/RECORD,,
@@ -1,15 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: microsoft-agents-hosting-teams
3
- Version: 0.5.0.dev5
4
- Summary: Integration library for Microsoft Agents with Teams
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: Operating System :: OS Independent
10
- Requires-Python: >=3.9
11
- License-File: LICENSE
12
- Requires-Dist: microsoft-agents-hosting-core==0.5.0.dev5
13
- Requires-Dist: aiohttp>=3.11.11
14
- Dynamic: license-file
15
- Dynamic: requires-dist
@@ -1,9 +0,0 @@
1
- microsoft_agents/hosting/teams/__init__.py,sha256=dFygIL_ogurLI5uq9ikd5C-MZl7uXVw5rUVfi1_H5jY,140
2
- microsoft_agents/hosting/teams/teams_activity_handler.py,sha256=a-uL8kH5QNDsoQoxH3t4x9luahfaWY38km6oBna2BO4,32762
3
- microsoft_agents/hosting/teams/teams_cloud_adapter.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- microsoft_agents/hosting/teams/teams_info.py,sha256=SeVbxSCY6yZGamNkIDy5FAHIeKCeosia7zv31OG8t0Q,20756
5
- microsoft_agents_hosting_teams-0.5.0.dev5.dist-info/licenses/LICENSE,sha256=ws_MuBL-SCEBqPBFl9_FqZkaaydIJmxHrJG2parhU4M,1141
6
- microsoft_agents_hosting_teams-0.5.0.dev5.dist-info/METADATA,sha256=iGhC5rZHNYauwXXc4MSM9V9TNLv31MI8MBY0JmS_6FQ,527
7
- microsoft_agents_hosting_teams-0.5.0.dev5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
8
- microsoft_agents_hosting_teams-0.5.0.dev5.dist-info/top_level.txt,sha256=lWKcT4v6fTA_NgsuHdNvuMjSrkiBMXohn64ApY7Xi8A,17
9
- microsoft_agents_hosting_teams-0.5.0.dev5.dist-info/RECORD,,