Skip to content
Closed
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
2 changes: 1 addition & 1 deletion dotnet/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</PropertyGroup>
<ItemGroup>
<!-- Aspire.* -->
<PackageVersion Include="Anthropic" Version="12.35.1" />
<PackageVersion Include="Anthropic" Version="12.36.0" />
Comment thread
rogerbarreto marked this conversation as resolved.
<PackageVersion Include="Anthropic.Foundry" Version="0.7.1" />
<PackageVersion Include="Aspire.Hosting" Version="$(AspireAppHostSdkVersion)" />
<PackageVersion Include="Aspire.Azure.AI.OpenAI" Version="13.0.0-preview.1.25560.3" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,10 @@ public TestBetaService(IAnthropicClient client)

public global::Anthropic.Services.Beta.IUserProfileService UserProfiles => throw new NotImplementedException();

public global::Anthropic.Services.Beta.IDreamService Dreams => throw new NotImplementedException();

public global::Anthropic.Services.Beta.ITunnelService Tunnels => throw new NotImplementedException();

public IBetaService WithOptions(Func<ClientOptions, ClientOptions> modifier)
{
throw new NotImplementedException();
Expand Down
Loading