mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
36ce0950e4
Remove linking, multicast, durable delivery, and host push machinery from the v1 hosting core. Keep those scenarios in a proposed follow-up ADR and update channel packages, samples, docs, tests, and workspace metadata around the smaller host/channel contract. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
27 lines
1.1 KiB
TOML
27 lines
1.1 KiB
TOML
[project]
|
|
name = "agent-framework-hosting-sample-advanced"
|
|
version = "0.0.1"
|
|
description = "Advanced multi-channel hosting sample (Responses + Telegram with @tool, FileHistoryProvider, hooks)."
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"agent-framework-foundry",
|
|
"agent-framework-hosting",
|
|
"agent-framework-hosting-responses",
|
|
"agent-framework-hosting-telegram",
|
|
"azure-identity",
|
|
"aiohttp>=3.13.5",
|
|
"hypercorn>=0.17",
|
|
"httpx>=0.27",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = ["openai>=1.99"]
|
|
|
|
[tool.uv]
|
|
package = false
|
|
|
|
[tool.uv.sources]
|
|
agent-framework-hosting = { git = "https://github.com/microsoft/agent-framework.git", branch = "feature/python-hosting", subdirectory = "python/packages/hosting" }
|
|
agent-framework-hosting-responses = { git = "https://github.com/microsoft/agent-framework.git", branch = "feature/python-hosting", subdirectory = "python/packages/hosting-responses" }
|
|
agent-framework-hosting-telegram = { git = "https://github.com/microsoft/agent-framework.git", branch = "feature/python-hosting", subdirectory = "python/packages/hosting-telegram" }
|