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
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.42.0" />
<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 @@ -451,6 +451,10 @@ public TestAnthropicChatClient()

public IModelService Models => throw new NotImplementedException();

public IFileService Files => throw new NotImplementedException();

public ISkillService Skills => throw new NotImplementedException();

public IBetaService Beta => this.BetaService;

public IBetaService BetaService { get; }
Expand Down Expand Up @@ -503,6 +507,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
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ public TestAnthropicChatClient()

public IModelService Models => throw new NotImplementedException();

public IFileService Files => throw new NotImplementedException();

public ISkillService Skills => throw new NotImplementedException();

public IBetaService Beta => throw new NotImplementedException();

public IAnthropicClient WithOptions(Func<ClientOptions, ClientOptions> modifier)
Expand Down
Loading