azurefunctions-agents-runtime 0.0.0.dev1__py3-none-any.whl
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.
- azure_functions_agents/__init__.py +20 -0
- azure_functions_agents/app.py +720 -0
- azure_functions_agents/arm.py +95 -0
- azure_functions_agents/client_manager.py +84 -0
- azure_functions_agents/config.py +191 -0
- azure_functions_agents/connector_tool_cache.py +124 -0
- azure_functions_agents/connector_tools.py +267 -0
- azure_functions_agents/connectors.py +460 -0
- azure_functions_agents/mcp.py +87 -0
- azure_functions_agents/public/index.html +1504 -0
- azure_functions_agents/runner.py +406 -0
- azure_functions_agents/sandbox.py +288 -0
- azure_functions_agents/skills.py +24 -0
- azure_functions_agents/tools.py +316 -0
- azurefunctions_agents_runtime-0.0.0.dev1.dist-info/METADATA +386 -0
- azurefunctions_agents_runtime-0.0.0.dev1.dist-info/RECORD +20 -0
- azurefunctions_agents_runtime-0.0.0.dev1.dist-info/WHEEL +5 -0
- azurefunctions_agents_runtime-0.0.0.dev1.dist-info/licenses/LICENSE.md +21 -0
- azurefunctions_agents_runtime-0.0.0.dev1.dist-info/top_level.txt +2 -0
- copilot_functions/__init__.py +3 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from .app import create_function_app
|
|
2
|
+
from .config import resolve_config_dir, session_exists, set_app_root
|
|
3
|
+
from .connector_tool_cache import configure_connector_tools, get_connector_tools
|
|
4
|
+
from .runner import AgentResult, DEFAULT_MODEL, DEFAULT_TIMEOUT, run_copilot_agent, run_copilot_agent_stream
|
|
5
|
+
from .sandbox import create_sandbox_tools
|
|
6
|
+
|
|
7
|
+
__all__ = [
|
|
8
|
+
"AgentResult",
|
|
9
|
+
"DEFAULT_MODEL",
|
|
10
|
+
"DEFAULT_TIMEOUT",
|
|
11
|
+
"configure_connector_tools",
|
|
12
|
+
"create_sandbox_tools",
|
|
13
|
+
"create_function_app",
|
|
14
|
+
"get_connector_tools",
|
|
15
|
+
"resolve_config_dir",
|
|
16
|
+
"run_copilot_agent",
|
|
17
|
+
"run_copilot_agent_stream",
|
|
18
|
+
"session_exists",
|
|
19
|
+
"set_app_root",
|
|
20
|
+
]
|