microsoft-agents-hosting-fastapi 0.6.0.dev16__tar.gz → 0.6.1__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 (26) hide show
  1. microsoft_agents_hosting_fastapi-0.6.1/MANIFEST.in +1 -0
  2. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/PKG-INFO +2 -2
  3. microsoft_agents_hosting_fastapi-0.6.1/VERSION.txt +1 -0
  4. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/microsoft_agents_hosting_fastapi.egg-info/PKG-INFO +2 -2
  5. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/microsoft_agents_hosting_fastapi.egg-info/SOURCES.txt +2 -0
  6. microsoft_agents_hosting_fastapi-0.6.1/microsoft_agents_hosting_fastapi.egg-info/requires.txt +2 -0
  7. microsoft_agents_hosting_fastapi-0.6.1/setup.py +18 -0
  8. microsoft_agents_hosting_fastapi-0.6.0.dev16/microsoft_agents_hosting_fastapi.egg-info/requires.txt +0 -2
  9. microsoft_agents_hosting_fastapi-0.6.0.dev16/setup.py +0 -12
  10. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/LICENSE +0 -0
  11. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/microsoft_agents/hosting/fastapi/__init__.py +0 -0
  12. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/microsoft_agents/hosting/fastapi/_start_agent_process.py +0 -0
  13. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/microsoft_agents/hosting/fastapi/agent_http_adapter.py +0 -0
  14. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/microsoft_agents/hosting/fastapi/app/__init__.py +0 -0
  15. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/microsoft_agents/hosting/fastapi/app/streaming/__init__.py +0 -0
  16. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/microsoft_agents/hosting/fastapi/app/streaming/citation.py +0 -0
  17. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/microsoft_agents/hosting/fastapi/app/streaming/citation_util.py +0 -0
  18. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/microsoft_agents/hosting/fastapi/app/streaming/streaming_response.py +0 -0
  19. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/microsoft_agents/hosting/fastapi/channel_service_route_table.py +0 -0
  20. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/microsoft_agents/hosting/fastapi/cloud_adapter.py +0 -0
  21. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/microsoft_agents/hosting/fastapi/jwt_authorization_middleware.py +0 -0
  22. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/microsoft_agents_hosting_fastapi.egg-info/dependency_links.txt +0 -0
  23. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/microsoft_agents_hosting_fastapi.egg-info/top_level.txt +0 -0
  24. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/pyproject.toml +0 -0
  25. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/readme.md +0 -0
  26. {microsoft_agents_hosting_fastapi-0.6.0.dev16 → microsoft_agents_hosting_fastapi-0.6.1}/setup.cfg +0 -0
@@ -0,0 +1 @@
1
+ include VERSION.txt
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: microsoft-agents-hosting-fastapi
3
- Version: 0.6.0.dev16
3
+ Version: 0.6.1
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==0.6.0.dev16
13
+ Requires-Dist: microsoft-agents-hosting-core==0.6.1
14
14
  Requires-Dist: fastapi>=0.104.0
15
15
  Dynamic: license-file
16
16
  Dynamic: requires-dist
@@ -0,0 +1 @@
1
+ 0.6.1
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: microsoft-agents-hosting-fastapi
3
- Version: 0.6.0.dev16
3
+ Version: 0.6.1
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==0.6.0.dev16
13
+ Requires-Dist: microsoft-agents-hosting-core==0.6.1
14
14
  Requires-Dist: fastapi>=0.104.0
15
15
  Dynamic: license-file
16
16
  Dynamic: requires-dist
@@ -0,0 +1,2 @@
1
+ microsoft-agents-hosting-core==0.6.1
2
+ fastapi>=0.104.0
@@ -0,0 +1,18 @@
1
+ from os import environ, path
2
+ from setuptools import setup
3
+
4
+ # Try to read from VERSION.txt file first, fall back to environment variable
5
+ version_file = path.join(path.dirname(__file__), "VERSION.txt")
6
+ if path.exists(version_file):
7
+ with open(version_file, "r", encoding="utf-8") as f:
8
+ package_version = f.read().strip()
9
+ else:
10
+ package_version = environ.get("PackageVersion", "0.0.0")
11
+
12
+ setup(
13
+ version=package_version,
14
+ install_requires=[
15
+ f"microsoft-agents-hosting-core=={package_version}",
16
+ "fastapi>=0.104.0",
17
+ ],
18
+ )
@@ -1,2 +0,0 @@
1
- microsoft-agents-hosting-core==0.6.0.dev16
2
- fastapi>=0.104.0
@@ -1,12 +0,0 @@
1
- from os import environ
2
- from setuptools import setup
3
-
4
- package_version = environ.get("PackageVersion", "0.0.0")
5
-
6
- setup(
7
- version=package_version,
8
- install_requires=[
9
- f"microsoft-agents-hosting-core=={package_version}",
10
- "fastapi>=0.104.0",
11
- ],
12
- )