azurefunctions-agents-runtime 0.0.0.dev1__tar.gz → 0.0.0.dev2__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 (25) hide show
  1. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/PKG-INFO +1 -1
  2. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/pyproject.toml +1 -1
  3. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/mcp.py +7 -1
  4. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azurefunctions_agents_runtime.egg-info/PKG-INFO +1 -1
  5. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/LICENSE.md +0 -0
  6. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/README.md +0 -0
  7. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/setup.cfg +0 -0
  8. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/__init__.py +0 -0
  9. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/app.py +0 -0
  10. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/arm.py +0 -0
  11. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/client_manager.py +0 -0
  12. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/config.py +0 -0
  13. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/connector_tool_cache.py +0 -0
  14. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/connector_tools.py +0 -0
  15. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/connectors.py +0 -0
  16. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/public/index.html +0 -0
  17. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/runner.py +0 -0
  18. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/sandbox.py +0 -0
  19. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/skills.py +0 -0
  20. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/tools.py +0 -0
  21. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azurefunctions_agents_runtime.egg-info/SOURCES.txt +0 -0
  22. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azurefunctions_agents_runtime.egg-info/dependency_links.txt +0 -0
  23. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azurefunctions_agents_runtime.egg-info/requires.txt +0 -0
  24. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azurefunctions_agents_runtime.egg-info/top_level.txt +0 -0
  25. {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/copilot_functions/__init__.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: azurefunctions-agents-runtime
3
- Version: 0.0.0.dev1
3
+ Version: 0.0.0.dev2
4
4
  Summary: A markdown-first programming model for building AI agents on Azure Functions with the GitHub Copilot SDK.
5
5
  License: MIT
6
6
  Requires-Python: >=3.10
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "azurefunctions-agents-runtime"
7
- version = "0.0.0dev1"
7
+ version = "0.0.0dev2"
8
8
  description = "A markdown-first programming model for building AI agents on Azure Functions with the GitHub Copilot SDK."
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
@@ -3,7 +3,13 @@ import logging
3
3
  import os
4
4
  from typing import Any, Dict, Optional
5
5
 
6
- from copilot.session import MCPLocalServerConfig, MCPRemoteServerConfig, MCPServerConfig
6
+ try:
7
+ from copilot.session import MCPLocalServerConfig, MCPRemoteServerConfig, MCPServerConfig
8
+ except ImportError:
9
+ # github-copilot-sdk>=0.3 renamed MCP config types.
10
+ from copilot.session import MCPStdioServerConfig as MCPLocalServerConfig
11
+ from copilot.session import MCPHTTPServerConfig as MCPRemoteServerConfig
12
+ from copilot.session import MCPServerConfig
7
13
 
8
14
  from .config import get_app_root
9
15
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: azurefunctions-agents-runtime
3
- Version: 0.0.0.dev1
3
+ Version: 0.0.0.dev2
4
4
  Summary: A markdown-first programming model for building AI agents on Azure Functions with the GitHub Copilot SDK.
5
5
  License: MIT
6
6
  Requires-Python: >=3.10