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.
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/PKG-INFO +1 -1
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/pyproject.toml +1 -1
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/mcp.py +7 -1
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azurefunctions_agents_runtime.egg-info/PKG-INFO +1 -1
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/LICENSE.md +0 -0
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/README.md +0 -0
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/setup.cfg +0 -0
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/__init__.py +0 -0
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/app.py +0 -0
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/arm.py +0 -0
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/client_manager.py +0 -0
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/config.py +0 -0
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/connector_tool_cache.py +0 -0
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/connector_tools.py +0 -0
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/connectors.py +0 -0
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/public/index.html +0 -0
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/runner.py +0 -0
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/sandbox.py +0 -0
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/skills.py +0 -0
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azure_functions_agents/tools.py +0 -0
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azurefunctions_agents_runtime.egg-info/SOURCES.txt +0 -0
- {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
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/azurefunctions_agents_runtime.egg-info/requires.txt +0 -0
- {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
- {azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/src/copilot_functions/__init__.py +0 -0
{azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/pyproject.toml
RENAMED
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "azurefunctions-agents-runtime"
|
|
7
|
-
version = "0.0.
|
|
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
|
-
|
|
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
|
|
{azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/LICENSE.md
RENAMED
|
File without changes
|
{azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/README.md
RENAMED
|
File without changes
|
{azurefunctions_agents_runtime-0.0.0.dev1 → azurefunctions_agents_runtime-0.0.0.dev2}/setup.cfg
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|