Skip to content

Commit 881b526

Browse files
committed
MAF 1.5.0 (except for Google)
1 parent be3f504 commit 881b526

21 files changed

Lines changed: 37 additions & 29 deletions

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog - Agent Framework Toolkit
22

3+
## Version 1.5.0 (14th of May 2026)
4+
- Updated Agent Framework from 1.4.0 to 1.5.0 [NOTE: Due to dependency incompatibility there is no package in this release that target Google; it will return once Google update their dependencies]
5+
- Updated all NuGet packages to the latest
6+
7+
--
8+
39
## Version 1.4.0 (5th of May 2026)
410
- Updated Agent Framework from 1.3.0 to 1.4.0
511
- Fix that AgentSkills License/Compatibility/AllowedTools information was not correctly included ([PR#64](https://github.com/rwjdk/AgentFrameworkToolkit/pull/64) - Thank you to [UrienZhang](https://github.com/UrienZhang))

Directory.Packages.props

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55
</PropertyGroup>
66
<ItemGroup>
77
<!-- Microsoft Agents AI Framework -->
8-
<PackageVersion Include="Microsoft.Agents.AI" Version="1.4.0" />
9-
<PackageVersion Include="Microsoft.Agents.AI.OpenAI" Version="1.4.0" />
10-
<PackageVersion Include="Microsoft.Agents.AI.Anthropic" Version="1.3.0-preview.260423.1" />
8+
<PackageVersion Include="Anthropic" Version="12.20.0" />
9+
<PackageVersion Include="Microsoft.Agents.AI" Version="1.5.0" />
10+
<PackageVersion Include="Microsoft.Agents.AI.OpenAI" Version="1.5.0" />
11+
<PackageVersion Include="Microsoft.Agents.AI.Anthropic" Version="1.5.0-preview.260507.1" />
1112
<!-- Azure -->
1213
<PackageVersion Include="Azure.Identity" Version="1.21.0" />
1314
<PackageVersion Include="Azure.AI.OpenAI" Version="2.9.0-beta.1" />
@@ -18,9 +19,9 @@
1819
<!-- Third-party AI SDKs -->
1920
<PackageVersion Include="Google.GenAI" Version="1.6.1" />
2021
<PackageVersion Include="Mistral.SDK" Version="2.3.1" />
21-
<PackageVersion Include="ModelContextProtocol" Version="1.2.0" />
22+
<PackageVersion Include="ModelContextProtocol" Version="1.3.0" />
2223
<PackageVersion Include="AWSSDK.BedrockRuntime" Version="4.0.17.6" />
23-
<PackageVersion Include="AWSSDK.Extensions.Bedrock.MEAI" Version="4.0.7" />
24+
<PackageVersion Include="AWSSDK.Extensions.Bedrock.MEAI" Version="4.0.8" />
2425
<!-- Code analysis -->
2526
<PackageVersion Include="JetBrains.Annotations" Version="2025.2.4" />
2627
<!-- Testing -->

development/Sandbox/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
Console.Clear();
77

88
Console.OutputEncoding = Encoding.UTF8;
9-
//await Sandbox.Providers.Anthropic.RunAsync();
9+
await Sandbox.Providers.Anthropic.RunAsync();
1010
//await Sandbox.Providers.AmazonBedrock.RunAsync();
1111
//await Sandbox.Providers.OpenAI.RunAsync();
1212
//await Sandbox.Providers.GitHub.RunAsync();
13-
await AzureOpenAI.RunAsync();
13+
//await AzureOpenAI.RunAsync();
1414
//await Sandbox.Providers.Mistral.RunAsync();
1515
//await Sandbox.Providers.Google.RunAsync();
1616
//await Sandbox.Providers.XAI.RunAsync();

development/Tests/CerebrasTests.cs renamed to development/Tests/FreeModels/CerebrasTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Microsoft.Extensions.DependencyInjection;
33
using Secrets;
44

5-
namespace AgentFrameworkToolkit.Tests;
5+
namespace AgentFrameworkToolkit.Tests.FreeModels;
66

77
public sealed class CerebrasTests : TestsBase
88
{

development/Tests/CohereTests.cs renamed to development/Tests/FreeModels/CohereTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Microsoft.Extensions.DependencyInjection;
33
using Secrets;
44

5-
namespace AgentFrameworkToolkit.Tests;
5+
namespace AgentFrameworkToolkit.Tests.FreeModels;
66

77
public sealed class CohereTests : TestsBase
88
{

development/Tests/GitHubTests.cs renamed to development/Tests/FreeModels/GitHubTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Microsoft.Extensions.DependencyInjection;
33
using Secrets;
44

5-
namespace AgentFrameworkToolkit.Tests;
5+
namespace AgentFrameworkToolkit.Tests.FreeModels;
66

77
public sealed class GitHubTests : TestsBase
88
{

development/Tests/AmazonBedrockTests.cs renamed to development/Tests/PaidModels/AmazonBedrockTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Microsoft.Extensions.DependencyInjection;
44
using Secrets;
55

6-
namespace AgentFrameworkToolkit.Tests;
6+
namespace AgentFrameworkToolkit.Tests.PaidModels;
77

88
public sealed class AmazonBedrockTests : TestsBase
99
{

development/Tests/AnthropicTests.cs renamed to development/Tests/PaidModels/AnthropicTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Microsoft.Extensions.DependencyInjection;
33
using Secrets;
44

5-
namespace AgentFrameworkToolkit.Tests;
5+
namespace AgentFrameworkToolkit.Tests.PaidModels;
66

77
public sealed class AnthropicTests : TestsBase
88
{

development/Tests/AzureOpenAITests.cs renamed to development/Tests/PaidModels/AzureOpenAITests.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
1-
using System.Text.Json.Nodes;
21
using AgentFrameworkToolkit.AzureOpenAI;
3-
using AgentFrameworkToolkit.AzureOpenAI.Batching;
42
using AgentFrameworkToolkit.OpenAI;
5-
using AgentFrameworkToolkit.OpenAI.Batching;
6-
using Azure.AI.OpenAI;
73
using JetBrains.Annotations;
84
using Microsoft.Extensions.AI;
95
using Microsoft.Extensions.DependencyInjection;
106
using Secrets;
117

128
#pragma warning disable OPENAI001
139

14-
namespace AgentFrameworkToolkit.Tests;
10+
namespace AgentFrameworkToolkit.Tests.PaidModels;
1511

1612
public sealed class AzureOpenAITests : TestsBase
1713
{

development/Tests/GoogleTests.cs renamed to development/Tests/PaidModels/GoogleTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Microsoft.Extensions.DependencyInjection;
44
using Secrets;
55

6-
namespace AgentFrameworkToolkit.Tests;
6+
namespace AgentFrameworkToolkit.Tests.PaidModels;
77

88
public sealed class GoogleTests : TestsBase
99
{

0 commit comments

Comments
 (0)