microsoft-agents-hosting-fastapi 1.4.0.dev13__tar.gz → 1.5.0.dev8__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.
Files changed (23) hide show
  1. {microsoft_agents_hosting_fastapi-1.4.0.dev13/microsoft_agents_hosting_fastapi.egg-info → microsoft_agents_hosting_fastapi-1.5.0.dev8}/PKG-INFO +11 -2
  2. microsoft_agents_hosting_fastapi-1.5.0.dev8/VERSION.txt +1 -0
  3. {microsoft_agents_hosting_fastapi-1.4.0.dev13 → microsoft_agents_hosting_fastapi-1.5.0.dev8}/microsoft_agents/hosting/fastapi/cloud_adapter.py +6 -1
  4. microsoft_agents_hosting_fastapi-1.5.0.dev8/microsoft_agents/hosting/fastapi/py.typed +0 -0
  5. {microsoft_agents_hosting_fastapi-1.4.0.dev13 → microsoft_agents_hosting_fastapi-1.5.0.dev8/microsoft_agents_hosting_fastapi.egg-info}/PKG-INFO +11 -2
  6. {microsoft_agents_hosting_fastapi-1.4.0.dev13 → microsoft_agents_hosting_fastapi-1.5.0.dev8}/microsoft_agents_hosting_fastapi.egg-info/SOURCES.txt +1 -0
  7. microsoft_agents_hosting_fastapi-1.5.0.dev8/microsoft_agents_hosting_fastapi.egg-info/requires.txt +3 -0
  8. {microsoft_agents_hosting_fastapi-1.4.0.dev13 → microsoft_agents_hosting_fastapi-1.5.0.dev8}/pyproject.toml +4 -1
  9. {microsoft_agents_hosting_fastapi-1.4.0.dev13 → microsoft_agents_hosting_fastapi-1.5.0.dev8}/readme.md +9 -0
  10. microsoft_agents_hosting_fastapi-1.4.0.dev13/VERSION.txt +0 -1
  11. microsoft_agents_hosting_fastapi-1.4.0.dev13/microsoft_agents_hosting_fastapi.egg-info/requires.txt +0 -3
  12. {microsoft_agents_hosting_fastapi-1.4.0.dev13 → microsoft_agents_hosting_fastapi-1.5.0.dev8}/LICENSE +0 -0
  13. {microsoft_agents_hosting_fastapi-1.4.0.dev13 → microsoft_agents_hosting_fastapi-1.5.0.dev8}/MANIFEST.in +0 -0
  14. {microsoft_agents_hosting_fastapi-1.4.0.dev13 → microsoft_agents_hosting_fastapi-1.5.0.dev8}/microsoft_agents/hosting/fastapi/__init__.py +0 -0
  15. {microsoft_agents_hosting_fastapi-1.4.0.dev13 → microsoft_agents_hosting_fastapi-1.5.0.dev8}/microsoft_agents/hosting/fastapi/_fastapi_request_adapter.py +0 -0
  16. {microsoft_agents_hosting_fastapi-1.4.0.dev13 → microsoft_agents_hosting_fastapi-1.5.0.dev8}/microsoft_agents/hosting/fastapi/_start_agent_process.py +0 -0
  17. {microsoft_agents_hosting_fastapi-1.4.0.dev13 → microsoft_agents_hosting_fastapi-1.5.0.dev8}/microsoft_agents/hosting/fastapi/agent_http_adapter.py +0 -0
  18. {microsoft_agents_hosting_fastapi-1.4.0.dev13 → microsoft_agents_hosting_fastapi-1.5.0.dev8}/microsoft_agents/hosting/fastapi/channel_service_route_table.py +0 -0
  19. {microsoft_agents_hosting_fastapi-1.4.0.dev13 → microsoft_agents_hosting_fastapi-1.5.0.dev8}/microsoft_agents/hosting/fastapi/jwt_authorization_middleware.py +0 -0
  20. {microsoft_agents_hosting_fastapi-1.4.0.dev13 → microsoft_agents_hosting_fastapi-1.5.0.dev8}/microsoft_agents_hosting_fastapi.egg-info/dependency_links.txt +0 -0
  21. {microsoft_agents_hosting_fastapi-1.4.0.dev13 → microsoft_agents_hosting_fastapi-1.5.0.dev8}/microsoft_agents_hosting_fastapi.egg-info/top_level.txt +0 -0
  22. {microsoft_agents_hosting_fastapi-1.4.0.dev13 → microsoft_agents_hosting_fastapi-1.5.0.dev8}/setup.cfg +0 -0
  23. {microsoft_agents_hosting_fastapi-1.4.0.dev13 → microsoft_agents_hosting_fastapi-1.5.0.dev8}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: microsoft-agents-hosting-fastapi
3
- Version: 1.4.0.dev13
3
+ Version: 1.5.0.dev8
4
4
  Summary: Integration library for Microsoft Agents with FastAPI
5
5
  Author: Microsoft Corporation
6
6
  License-Expression: MIT
@@ -10,7 +10,7 @@ Classifier: Operating System :: OS Independent
10
10
  Requires-Python: >=3.10
11
11
  Description-Content-Type: text/markdown
12
12
  License-File: LICENSE
13
- Requires-Dist: microsoft-agents-hosting-core==1.4.0.dev13
13
+ Requires-Dist: microsoft-agents-hosting-core==1.5.0.dev8
14
14
  Requires-Dist: fastapi>=0.104.0
15
15
  Requires-Dist: starlette>=1.0.1
16
16
  Dynamic: license-file
@@ -27,6 +27,15 @@ This library provides FastAPI integration for Microsoft Agents, enabling you to
27
27
  <th style="width:20%">Date</th>
28
28
  <th style="width:60%">Release Notes</th>
29
29
  </tr>
30
+ <tr>
31
+ <td>1.4.0</td>
32
+ <td>2026-08-18</td>
33
+ <td>
34
+ <a href="https://github.com/microsoft/Agents-for-python/blob/main/changelog.md#microsoft-365-agents-sdk-for-python---release-notes-v140">
35
+ 1.4.0 Release Notes
36
+ </a>
37
+ </td>
38
+ </tr>
30
39
  <tr>
31
40
  <td>1.3.0</td>
32
41
  <td>2026-07-30</td>
@@ -0,0 +1 @@
1
+ 1.5.0.dev8
@@ -11,7 +11,10 @@ from microsoft_agents.hosting.core.authorization import Connections
11
11
  from microsoft_agents.hosting.core.http import (
12
12
  HttpResponse,
13
13
  )
14
- from microsoft_agents.hosting.core import ChannelServiceClientFactoryBase
14
+ from microsoft_agents.hosting.core import (
15
+ ChannelServiceClientFactoryBase,
16
+ OutboundHostValidator,
17
+ )
15
18
 
16
19
  from .agent_http_adapter import AgentHttpAdapter
17
20
  from ._fastapi_request_adapter import FastApiRequestAdapter
@@ -26,6 +29,7 @@ class CloudAdapter(HttpAdapterBase, AgentHttpAdapter):
26
29
  connection_manager: Connections | None = None,
27
30
  channel_service_client_factory: ChannelServiceClientFactoryBase | None = None,
28
31
  channel_service_client_factory_options: dict | None = None,
32
+ host_validator: OutboundHostValidator | None = None,
29
33
  ):
30
34
  """
31
35
  Initializes a new instance of the CloudAdapter class.
@@ -39,6 +43,7 @@ class CloudAdapter(HttpAdapterBase, AgentHttpAdapter):
39
43
  connection_manager=connection_manager,
40
44
  channel_service_client_factory=channel_service_client_factory,
41
45
  channel_service_client_factory_options=channel_service_client_factory_options,
46
+ host_validator=host_validator,
42
47
  )
43
48
 
44
49
  async def process(self, request: Request, agent: Agent) -> Optional[Response]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: microsoft-agents-hosting-fastapi
3
- Version: 1.4.0.dev13
3
+ Version: 1.5.0.dev8
4
4
  Summary: Integration library for Microsoft Agents with FastAPI
5
5
  Author: Microsoft Corporation
6
6
  License-Expression: MIT
@@ -10,7 +10,7 @@ Classifier: Operating System :: OS Independent
10
10
  Requires-Python: >=3.10
11
11
  Description-Content-Type: text/markdown
12
12
  License-File: LICENSE
13
- Requires-Dist: microsoft-agents-hosting-core==1.4.0.dev13
13
+ Requires-Dist: microsoft-agents-hosting-core==1.5.0.dev8
14
14
  Requires-Dist: fastapi>=0.104.0
15
15
  Requires-Dist: starlette>=1.0.1
16
16
  Dynamic: license-file
@@ -27,6 +27,15 @@ This library provides FastAPI integration for Microsoft Agents, enabling you to
27
27
  <th style="width:20%">Date</th>
28
28
  <th style="width:60%">Release Notes</th>
29
29
  </tr>
30
+ <tr>
31
+ <td>1.4.0</td>
32
+ <td>2026-08-18</td>
33
+ <td>
34
+ <a href="https://github.com/microsoft/Agents-for-python/blob/main/changelog.md#microsoft-365-agents-sdk-for-python---release-notes-v140">
35
+ 1.4.0 Release Notes
36
+ </a>
37
+ </td>
38
+ </tr>
30
39
  <tr>
31
40
  <td>1.3.0</td>
32
41
  <td>2026-07-30</td>
@@ -11,6 +11,7 @@ microsoft_agents/hosting/fastapi/agent_http_adapter.py
11
11
  microsoft_agents/hosting/fastapi/channel_service_route_table.py
12
12
  microsoft_agents/hosting/fastapi/cloud_adapter.py
13
13
  microsoft_agents/hosting/fastapi/jwt_authorization_middleware.py
14
+ microsoft_agents/hosting/fastapi/py.typed
14
15
  microsoft_agents_hosting_fastapi.egg-info/PKG-INFO
15
16
  microsoft_agents_hosting_fastapi.egg-info/SOURCES.txt
16
17
  microsoft_agents_hosting_fastapi.egg-info/dependency_links.txt
@@ -0,0 +1,3 @@
1
+ microsoft-agents-hosting-core==1.5.0.dev8
2
+ fastapi>=0.104.0
3
+ starlette>=1.0.1
@@ -1,5 +1,5 @@
1
1
  [build-system]
2
- requires = ["setuptools"]
2
+ requires = ["setuptools>=77"]
3
3
  build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
@@ -16,5 +16,8 @@ classifiers = [
16
16
  "Operating System :: OS Independent",
17
17
  ]
18
18
 
19
+ [tool.setuptools.package-data]
20
+ "microsoft_agents.hosting.fastapi" = ["py.typed"]
21
+
19
22
  [project.urls]
20
23
  "Homepage" = "https://github.com/microsoft/Agents"
@@ -9,6 +9,15 @@ This library provides FastAPI integration for Microsoft Agents, enabling you to
9
9
  <th style="width:20%">Date</th>
10
10
  <th style="width:60%">Release Notes</th>
11
11
  </tr>
12
+ <tr>
13
+ <td>1.4.0</td>
14
+ <td>2026-08-18</td>
15
+ <td>
16
+ <a href="https://github.com/microsoft/Agents-for-python/blob/main/changelog.md#microsoft-365-agents-sdk-for-python---release-notes-v140">
17
+ 1.4.0 Release Notes
18
+ </a>
19
+ </td>
20
+ </tr>
12
21
  <tr>
13
22
  <td>1.3.0</td>
14
23
  <td>2026-07-30</td>
@@ -1 +0,0 @@
1
- 1.4.0.dev13
@@ -1,3 +0,0 @@
1
- microsoft-agents-hosting-core==1.4.0.dev13
2
- fastapi>=0.104.0
3
- starlette>=1.0.1