microsoft-agents-hosting-aiohttp 1.7.0.dev4__tar.gz → 1.7.0.dev6__tar.gz
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.
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4/microsoft_agents_hosting_aiohttp.egg-info → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/PKG-INFO +4 -3
- microsoft_agents_hosting_aiohttp-1.7.0.dev6/VERSION.txt +1 -0
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6/microsoft_agents_hosting_aiohttp.egg-info}/PKG-INFO +4 -3
- microsoft_agents_hosting_aiohttp-1.7.0.dev6/microsoft_agents_hosting_aiohttp.egg-info/requires.txt +2 -0
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/readme.md +2 -1
- microsoft_agents_hosting_aiohttp-1.7.0.dev4/VERSION.txt +0 -1
- microsoft_agents_hosting_aiohttp-1.7.0.dev4/microsoft_agents_hosting_aiohttp.egg-info/requires.txt +0 -2
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/LICENSE +0 -0
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/MANIFEST.in +0 -0
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/microsoft_agents/hosting/aiohttp/__init__.py +0 -0
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/microsoft_agents/hosting/aiohttp/_aiohttp_request_adapter.py +0 -0
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/microsoft_agents/hosting/aiohttp/_start_agent_process.py +0 -0
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/microsoft_agents/hosting/aiohttp/agent_http_adapter.py +0 -0
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/microsoft_agents/hosting/aiohttp/channel_service_route_table.py +0 -0
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/microsoft_agents/hosting/aiohttp/cloud_adapter.py +0 -0
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/microsoft_agents/hosting/aiohttp/jwt_authorization_middleware.py +0 -0
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/microsoft_agents/hosting/aiohttp/py.typed +0 -0
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/microsoft_agents_hosting_aiohttp.egg-info/SOURCES.txt +0 -0
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/microsoft_agents_hosting_aiohttp.egg-info/dependency_links.txt +0 -0
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/microsoft_agents_hosting_aiohttp.egg-info/top_level.txt +0 -0
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/pyproject.toml +0 -0
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/setup.cfg +0 -0
- {microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microsoft-agents-hosting-aiohttp
|
|
3
|
-
Version: 1.7.0.
|
|
3
|
+
Version: 1.7.0.dev6
|
|
4
4
|
Summary: Integration library for Microsoft Agents with aiohttp
|
|
5
5
|
Author: Microsoft Corporation
|
|
6
6
|
License-Expression: MIT
|
|
@@ -15,7 +15,7 @@ Classifier: Operating System :: OS Independent
|
|
|
15
15
|
Requires-Python: >=3.10
|
|
16
16
|
Description-Content-Type: text/markdown
|
|
17
17
|
License-File: LICENSE
|
|
18
|
-
Requires-Dist: microsoft-agents-hosting-core==1.7.0.
|
|
18
|
+
Requires-Dist: microsoft-agents-hosting-core==1.7.0.dev6
|
|
19
19
|
Requires-Dist: aiohttp>=3.11.11
|
|
20
20
|
Dynamic: license-file
|
|
21
21
|
Dynamic: requires-dist
|
|
@@ -209,7 +209,7 @@ ADAPTER = CloudAdapter(connection_manager=CONNECTION_MANAGER)
|
|
|
209
209
|
AUTHORIZATION = Authorization(STORAGE, CONNECTION_MANAGER, **agents_sdk_config)
|
|
210
210
|
|
|
211
211
|
AGENT_APP = AgentApplication[TurnState](
|
|
212
|
-
storage=STORAGE,
|
|
212
|
+
storage=STORAGE, authorization=AUTHORIZATION, **agents_sdk_config
|
|
213
213
|
)
|
|
214
214
|
|
|
215
215
|
@AGENT_APP.activity("message")
|
|
@@ -220,6 +220,7 @@ async def on_message(context: TurnContext, state: TurnState):
|
|
|
220
220
|
|
|
221
221
|
start_server(
|
|
222
222
|
agent_application=AGENT_APP,
|
|
223
|
+
adapter=ADAPTER,
|
|
223
224
|
auth_configuration=CONNECTION_MANAGER.get_default_connection_configuration(),
|
|
224
225
|
)
|
|
225
226
|
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.7.0.dev6
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microsoft-agents-hosting-aiohttp
|
|
3
|
-
Version: 1.7.0.
|
|
3
|
+
Version: 1.7.0.dev6
|
|
4
4
|
Summary: Integration library for Microsoft Agents with aiohttp
|
|
5
5
|
Author: Microsoft Corporation
|
|
6
6
|
License-Expression: MIT
|
|
@@ -15,7 +15,7 @@ Classifier: Operating System :: OS Independent
|
|
|
15
15
|
Requires-Python: >=3.10
|
|
16
16
|
Description-Content-Type: text/markdown
|
|
17
17
|
License-File: LICENSE
|
|
18
|
-
Requires-Dist: microsoft-agents-hosting-core==1.7.0.
|
|
18
|
+
Requires-Dist: microsoft-agents-hosting-core==1.7.0.dev6
|
|
19
19
|
Requires-Dist: aiohttp>=3.11.11
|
|
20
20
|
Dynamic: license-file
|
|
21
21
|
Dynamic: requires-dist
|
|
@@ -209,7 +209,7 @@ ADAPTER = CloudAdapter(connection_manager=CONNECTION_MANAGER)
|
|
|
209
209
|
AUTHORIZATION = Authorization(STORAGE, CONNECTION_MANAGER, **agents_sdk_config)
|
|
210
210
|
|
|
211
211
|
AGENT_APP = AgentApplication[TurnState](
|
|
212
|
-
storage=STORAGE,
|
|
212
|
+
storage=STORAGE, authorization=AUTHORIZATION, **agents_sdk_config
|
|
213
213
|
)
|
|
214
214
|
|
|
215
215
|
@AGENT_APP.activity("message")
|
|
@@ -220,6 +220,7 @@ async def on_message(context: TurnContext, state: TurnState):
|
|
|
220
220
|
|
|
221
221
|
start_server(
|
|
222
222
|
agent_application=AGENT_APP,
|
|
223
|
+
adapter=ADAPTER,
|
|
223
224
|
auth_configuration=CONNECTION_MANAGER.get_default_connection_configuration(),
|
|
224
225
|
)
|
|
225
226
|
```
|
|
@@ -187,7 +187,7 @@ ADAPTER = CloudAdapter(connection_manager=CONNECTION_MANAGER)
|
|
|
187
187
|
AUTHORIZATION = Authorization(STORAGE, CONNECTION_MANAGER, **agents_sdk_config)
|
|
188
188
|
|
|
189
189
|
AGENT_APP = AgentApplication[TurnState](
|
|
190
|
-
storage=STORAGE,
|
|
190
|
+
storage=STORAGE, authorization=AUTHORIZATION, **agents_sdk_config
|
|
191
191
|
)
|
|
192
192
|
|
|
193
193
|
@AGENT_APP.activity("message")
|
|
@@ -198,6 +198,7 @@ async def on_message(context: TurnContext, state: TurnState):
|
|
|
198
198
|
|
|
199
199
|
start_server(
|
|
200
200
|
agent_application=AGENT_APP,
|
|
201
|
+
adapter=ADAPTER,
|
|
201
202
|
auth_configuration=CONNECTION_MANAGER.get_default_connection_configuration(),
|
|
202
203
|
)
|
|
203
204
|
```
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
1.7.0.dev4
|
{microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{microsoft_agents_hosting_aiohttp-1.7.0.dev4 → microsoft_agents_hosting_aiohttp-1.7.0.dev6}/setup.py
RENAMED
|
File without changes
|