Skip to content

Commit

Permalink
Merge pull request #64 from stephentoub/updatemeai
Browse files Browse the repository at this point in the history
Update M.E.AI to 9.1.0-preview.1.25064.3
  • Loading branch information
tghamm authored Jan 16, 2025
2 parents 8069137 + 3b4cce5 commit 10601ab
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Anthropic.SDK.Tests/Anthropic.SDK.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@

<ItemGroup>
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.AI" Version="9.0.1-preview.1.24570.5" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="Microsoft.SemanticKernel" Version="1.30.0" />
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.30.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.8" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.8" />
<PackageReference Include="Microsoft.Extensions.AI" Version="9.1.0-preview.1.25064.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="Microsoft.SemanticKernel" Version="1.33.0" />
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.33.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.7.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.7.1" />
<PackageReference Include="coverlet.collector" Version="3.1.2" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion Anthropic.SDK/Anthropic.SDK.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.AI.Abstractions" Version="9.0.1-preview.1.24570.5" />
<PackageReference Include="Microsoft.Extensions.AI.Abstractions" Version="9.1.0-preview.1.25064.3" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion Anthropic.SDK/Messaging/MessagesEndpoint.ChatClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ private static UsageDetails CreateUsageDetails(Usage usage) =>
{
InputTokenCount = usage.InputTokens,
OutputTokenCount = usage.OutputTokens,
AdditionalProperties = new()
AdditionalCounts = new()
{
[nameof(usage.CacheCreationInputTokens)] = usage.CacheCreationInputTokens,
[nameof(usage.CacheReadInputTokens)] = usage.CacheReadInputTokens,
Expand Down

0 comments on commit 10601ab

Please sign in to comment.