Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions dotnet/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
<PackageVersion Include="Aspire.Hosting.NodeJs" Version="9.5.2" />
<PackageVersion Include="CommunityToolkit.Aspire.Hosting.Dapr" Version="9.9.0" />
<PackageVersion Include="CommunityToolkit.Aspire.Hosting.NodeJS.Extensions" Version="9.9.0" />
<PackageVersion Include="Aspire.Hosting.Azure.Search" Version="13.3.0" />
<PackageVersion Include="Aspire.Hosting.Azure.Search" Version="13.4.6" />
<PackageVersion Include="MessagePack" Version="3.1.7" /> <!-- Transitive dependency of Aspire pinned to newer version due to vulnerability in 2.5.192 -->
<PackageVersion Include="AWSSDK.BedrockAgent" Version="4.0.8.5" />
<PackageVersion Include="AWSSDK.BedrockAgentRuntime" Version="4.0.8.5" />
<PackageVersion Include="AWSSDK.BedrockRuntime" Version="4.0.14.5" />
<PackageVersion Include="AWSSDK.Core" Version="4.0.6.1" />
<PackageVersion Include="AWSSDK.BedrockAgent" Version="4.0.100.7" />
<PackageVersion Include="AWSSDK.BedrockAgentRuntime" Version="4.0.100.7" />
<PackageVersion Include="AWSSDK.BedrockRuntime" Version="4.0.100.7" />
<PackageVersion Include="AWSSDK.Core" Version="4.0.100.9" />
<PackageVersion Include="AWSSDK.Extensions.Bedrock.MEAI" Version="4.0.5.3" />
<PackageVersion Include="AWSSDK.Extensions.NETCore.Setup" Version="4.0.3.19" />
<PackageVersion Include="AWSSDK.SecurityToken" Version="4.0.5.6" />
<PackageVersion Include="AWSSDK.Extensions.NETCore.Setup" Version="4.0.100.7" />
<PackageVersion Include="AWSSDK.SecurityToken" Version="4.0.100.7" />
<PackageVersion Include="Azure.AI.Agents.Persistent" Version="1.1.0" />
<PackageVersion Include="Azure.AI.ContentSafety" Version="1.0.0" />
<PackageVersion Include="Azure.AI.OpenAI" Version="2.9.0-beta.1" />
Expand Down
22 changes: 12 additions & 10 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ classifiers = [
]
dependencies = [
# azure agents
"azure-ai-projects >= 1.0,< 2.3",
"azure-ai-projects >= 1.0,< 2.5",
"azure-ai-agents >= 1.2.0b3",
"aiohttp ~= 3.8",
"cloudevents >=1,<3",
Expand All @@ -45,7 +45,7 @@ dependencies = [
# OpenTelemetry
"opentelemetry-api ~= 1.24",
"opentelemetry-sdk ~= 1.24",
"prance >= 23.6.21,< 25.4.9",
"prance >= 23.6.21,< 26.7.20",
# templating
"pybars4 ~= 0.9",
"jinja2 ~= 3.1",
Expand All @@ -56,7 +56,7 @@ dependencies = [
# Protobuf
# explicit typing extensions
"typing-extensions>=4.13",
"mcp>=1.26.0",
"mcp>=1.26.0,<2.0",
]

### Optional dependencies
Expand Down Expand Up @@ -91,19 +91,19 @@ google = [
"google-genai >= 1.51,< 1.75"
]
hugging_face = [
"transformers[torch] ~= 4.28",
"transformers[torch] >= 4.28,< 6.0",
"sentence-transformers >= 2.2,< 6.0",
"torch==2.13.0"
]
mcp = [
"mcp>=1.8",
"mcp>=1.8,<2.0",
]
milvus = [
"pymilvus >= 2.3,< 2.7",
"milvus >= 2.3,<2.3.8; platform_system != 'Windows'"
]
mistralai = [
"mistralai >= 1.2,< 2.4.6"
"mistralai >= 1.2,< 2.7.3"
]
mongo = [
"pymongo >= 4.8.0, < 4.17",
Expand All @@ -116,10 +116,11 @@ ollama = [
"ollama ~= 0.4"
]
onnx = [
# onnxruntime>=1.24.0 dropped Python 3.10 support; pin to last compatible version for 3.10.
# onnxruntime>=1.24.0 dropped Python 3.10 support; retain the last compatible runtime/genai pair for 3.10.
"onnxruntime==1.22.1; python_version == '3.10'",
"onnxruntime>=1.24.3; python_version > '3.10'",
"onnxruntime-genai==0.9.0"
"onnxruntime>=1.26.0; python_version > '3.10'",
"onnxruntime-genai==0.9.0; python_version == '3.10'",
"onnxruntime-genai==0.14.1; python_version > '3.10'"
]
oracledb = [
"oracledb >= 3.4.1"
Expand All @@ -128,7 +129,8 @@ pandas = [
"pandas ~= 2.2"
]
pinecone = [
"pinecone[asyncio, grpc] ~= 7.0"
"pinecone[asyncio, grpc] ~= 7.0; sys_platform == 'darwin' or sys_platform == 'linux'",
"pinecone[asyncio, grpc] ~= 7.3; sys_platform == 'win32'"
]
postgres = [
"psycopg[binary,pool] ~= 3.2"
Expand Down
Loading
Loading