mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 21:13:37 +00:00
262 lines
12 KiB
C#
262 lines
12 KiB
C#
using System.Runtime.CompilerServices;
|
|
using System.Text;
|
|
using System.Text.Json;
|
|
|
|
using AIStudio.Chat;
|
|
using AIStudio.Provider.OpenAI;
|
|
using AIStudio.Settings;
|
|
using AIStudio.Tools.Rust;
|
|
using AIStudio.Tools.ToolCallingSystem;
|
|
using AIStudio.Tools.ToolCallingSystem.Harness;
|
|
|
|
namespace AIStudio.Provider.Anthropic;
|
|
|
|
public sealed class ProviderAnthropic() : BaseProvider(LLMProviders.ANTHROPIC, new Uri("https://api.anthropic.com/v1/"), ExternalHttpTrustPolicy.SYSTEM_TRUST_ONLY, LOGGER)
|
|
{
|
|
private static readonly ILogger<ProviderAnthropic> LOGGER = Program.LOGGER_FACTORY.CreateLogger<ProviderAnthropic>();
|
|
#region Implementation of IProvider
|
|
|
|
/// <inheritdoc />
|
|
public override string Id => LLMProviders.ANTHROPIC.ToSecretId();
|
|
|
|
/// <inheritdoc />
|
|
public override string InstanceName { get; set; } = "Anthropic";
|
|
|
|
/// <inheritdoc />
|
|
public override bool HasModelLoadingCapability => true;
|
|
|
|
/// <inheritdoc />
|
|
public override async IAsyncEnumerable<ContentStreamChunk> StreamChatCompletion(Model chatModel, ChatThread chatThread, SettingsManager settingsManager, [EnumeratorCancellation] CancellationToken token = default)
|
|
{
|
|
// Get the API key:
|
|
var requestedSecret = await Program.RUST_SERVICE.GetAPIKey(this, SecretStoreType.LLM_PROVIDER);
|
|
if(!requestedSecret.Success)
|
|
yield break;
|
|
|
|
// Parse the API parameters:
|
|
var apiParameters = this.ParseAdditionalApiParameters("system");
|
|
var maxTokens = 4_096;
|
|
if (TryPopIntParameter(apiParameters, "max_tokens", out var parsedMaxTokens))
|
|
maxTokens = parsedMaxTokens;
|
|
|
|
// Build the list of messages:
|
|
var messages = await chatThread.Blocks.BuildMessagesAsync(
|
|
this.Provider, chatModel,
|
|
|
|
// Anthropic-specific role mapping:
|
|
role => role switch
|
|
{
|
|
ChatRole.USER => "user",
|
|
ChatRole.AI => "assistant",
|
|
ChatRole.AGENT => "assistant",
|
|
|
|
_ => "user",
|
|
},
|
|
|
|
// Anthropic uses the standard text sub-content:
|
|
text => new SubContentText
|
|
{
|
|
Text = text,
|
|
},
|
|
|
|
// Anthropic-specific image sub-content:
|
|
async attachment => new SubContentImage
|
|
{
|
|
Source = new SubContentBase64Image
|
|
{
|
|
Data = await attachment.TryAsBase64(token: token) is (true, var base64Content)
|
|
? base64Content
|
|
: string.Empty,
|
|
|
|
MediaType = attachment.DetermineMimeType(),
|
|
}
|
|
}
|
|
);
|
|
|
|
//
|
|
// Prepare the tools we want to use. When the model may call one, the conversation runs
|
|
// through the harness instead of being streamed straight away: tool rounds are not
|
|
// streamed, only the final answer is.
|
|
//
|
|
var toolRegistry = Program.SERVICE_PROVIDER.GetService<ToolRegistry>();
|
|
var toolExecutor = Program.SERVICE_PROVIDER.GetService<ToolExecutor>();
|
|
var currentAssistantContent = chatThread.Blocks.LastOrDefault(x => x.Role is ChatRole.AI)?.Content as ContentText;
|
|
currentAssistantContent?.ToolInvocations.Clear();
|
|
|
|
var providerSettings = this.CreateSettingsProvider(chatModel);
|
|
var runnableTools = toolRegistry is null
|
|
? []
|
|
: await toolRegistry.GetRunnableToolsAsync(providerSettings, chatThread.RuntimeComponent, chatThread.RuntimeSelectedToolIds,
|
|
this.Provider.GetConfidence(settingsManager).Level, chatThread.MayRunTools(settingsManager));
|
|
|
|
var systemPrompt = chatThread.PrepareSystemPrompt(settingsManager, runnableTools.Select(x => x.Definition));
|
|
if (toolExecutor is not null && runnableTools.Count > 0)
|
|
{
|
|
var adapter = new AnthropicToolCallingAdapter(chatModel, [..messages], systemPrompt, maxTokens, apiParameters, runnableTools,
|
|
(requestDto, requestToken) => this.ExecuteMessagesRequest(requestDto, requestedSecret, requestToken));
|
|
|
|
var loop = Program.SERVICE_PROVIDER.GetRequiredService<IToolCallingLoop>();
|
|
var loopContext = new ToolCallingLoopContext
|
|
{
|
|
ChatThread = chatThread,
|
|
RunnableTools = runnableTools,
|
|
ToolExecutor = toolExecutor,
|
|
Provider = this,
|
|
CurrentAssistantContent = currentAssistantContent,
|
|
ProviderInstanceName = this.InstanceName,
|
|
ProviderType = this.Provider,
|
|
ModelId = chatModel.Id,
|
|
};
|
|
|
|
await foreach (var content in loop.RunAsync(adapter, loopContext, token))
|
|
yield return content;
|
|
|
|
yield break;
|
|
}
|
|
|
|
// Prepare the Anthropic HTTP chat request:
|
|
var chatRequest = JsonSerializer.Serialize(new ChatRequest
|
|
{
|
|
Model = chatModel.Id,
|
|
|
|
// Build the messages:
|
|
Messages = [..messages],
|
|
|
|
System = systemPrompt,
|
|
MaxTokens = maxTokens,
|
|
|
|
// Right now, we only support streaming completions:
|
|
Stream = true,
|
|
AdditionalApiParameters = apiParameters
|
|
}, JSON_SERIALIZER_OPTIONS);
|
|
|
|
async Task<HttpRequestMessage> RequestBuilder()
|
|
{
|
|
// Build the HTTP post request:
|
|
var request = new HttpRequestMessage(HttpMethod.Post, "messages");
|
|
|
|
// Set the authorization header:
|
|
request.Headers.Add("x-api-key", await requestedSecret.Secret.Decrypt(Program.ENCRYPTION));
|
|
|
|
// Set the Anthropic version:
|
|
request.Headers.Add("anthropic-version", "2023-06-01");
|
|
|
|
// Set the content:
|
|
request.Content = new StringContent(chatRequest, Encoding.UTF8, "application/json");
|
|
return request;
|
|
}
|
|
|
|
await foreach (var content in this.StreamChatCompletionInternal<ResponseStreamLine, NoChatCompletionAnnotationStreamLine>("Anthropic", RequestBuilder, token))
|
|
yield return content;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Runs one non-streamed messages request, as the tool rounds need it.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Tool rounds are not streamed: the whole answer has to be there before its tool calls can
|
|
/// be executed. Only the final answer reaches the user through the streaming path.
|
|
/// </remarks>
|
|
/// <returns>The answer, or null when the request failed and the user was already told.</returns>
|
|
private async Task<AnthropicResponse?> ExecuteMessagesRequest(ChatRequest requestDto, RequestedSecret requestedSecret, CancellationToken token)
|
|
{
|
|
using var request = new HttpRequestMessage(HttpMethod.Post, "messages");
|
|
request.Headers.Add("x-api-key", await requestedSecret.Secret.Decrypt(Program.ENCRYPTION));
|
|
request.Headers.Add("anthropic-version", "2023-06-01");
|
|
request.Content = new StringContent(JsonSerializer.Serialize(requestDto, JSON_SERIALIZER_OPTIONS), Encoding.UTF8, "application/json");
|
|
|
|
using var response = await this.HttpClient.SendAsync(request, token);
|
|
if (!response.IsSuccessStatusCode)
|
|
{
|
|
var responseBody = await response.Content.ReadAsStringAsync(token);
|
|
LOGGER.LogError("Tool calling messages request failed with status code {ResponseStatusCode} and body: '{ResponseBody}'.", response.StatusCode, responseBody);
|
|
await ToolCallingMessages.SendToolCallingRequestFailedAsync((int)response.StatusCode);
|
|
return null;
|
|
}
|
|
|
|
return await response.Content.ReadFromJsonAsync<AnthropicResponse>(JSON_SERIALIZER_OPTIONS, token);
|
|
}
|
|
|
|
#pragma warning disable CS1998 // Async method lacks 'await' operators and will run synchronously
|
|
/// <inheritdoc />
|
|
public override async IAsyncEnumerable<ImageURL> StreamImageCompletion(Model imageModel, string promptPositive, string promptNegative = FilterOperator.String.Empty, ImageURL referenceImageURL = default, [EnumeratorCancellation] CancellationToken token = default)
|
|
{
|
|
yield break;
|
|
}
|
|
#pragma warning restore CS1998 // Async method lacks 'await' operators and will run synchronously
|
|
|
|
/// <inheritdoc />
|
|
public override Task<TranscriptionResult> TranscribeAudioAsync(Model transcriptionModel, string audioFilePath, SettingsManager settingsManager, CancellationToken token = default)
|
|
{
|
|
return Task.FromResult(TranscriptionResult.Failure());
|
|
}
|
|
|
|
/// <inhertidoc />
|
|
public override Task<IReadOnlyList<IReadOnlyList<float>>> EmbedTextAsync(Model embeddingModel, SettingsManager settingsManager, CancellationToken token = default, params List<string> texts)
|
|
{
|
|
throw this.CreateEmbeddingsNotSupportedException();
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override async Task<ModelLoadResult> GetTextModels(string? apiKeyProvisional = null, CancellationToken token = default)
|
|
{
|
|
var additionalModels = new[]
|
|
{
|
|
new Model("claude-opus-4-0", "Claude Opus 4.0 (Latest)"),
|
|
new Model("claude-sonnet-4-0", "Claude Sonnet 4.0 (Latest)"),
|
|
new Model("claude-3-7-sonnet-latest", "Claude 3.7 Sonnet (Latest)"),
|
|
new Model("claude-3-5-sonnet-latest", "Claude 3.5 Sonnet (Latest)"),
|
|
new Model("claude-3-5-haiku-latest", "Claude 3.5 Haiku (Latest)"),
|
|
new Model("claude-3-opus-latest", "Claude 3 Opus (Latest)"),
|
|
};
|
|
|
|
var result = await this.LoadModels(SecretStoreType.LLM_PROVIDER, apiKeyProvisional, token);
|
|
return result with
|
|
{
|
|
// The API is the authority: when it reports a model we also keep as a fallback above,
|
|
// its entry comes first and the fallback is dropped.
|
|
Models = [..result.Models.Concat(additionalModels).DistinctBy(x => x.Id).OrderBy(x => x.Id)]
|
|
};
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override Task<ModelLoadResult> GetImageModels(string? apiKeyProvisional = null, CancellationToken token = default)
|
|
{
|
|
return Task.FromResult(ModelLoadResult.FromModels([]));
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override Task<ModelLoadResult> GetEmbeddingModels(string? apiKeyProvisional = null, CancellationToken token = default)
|
|
{
|
|
return Task.FromResult(ModelLoadResult.FromModels([]));
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override Task<ModelLoadResult> GetTranscriptionModels(string? apiKeyProvisional = null, CancellationToken token = default)
|
|
{
|
|
return Task.FromResult(ModelLoadResult.FromModels([]));
|
|
}
|
|
#endregion
|
|
|
|
private Task<ModelLoadResult> LoadModels(SecretStoreType storeType, string? apiKeyProvisional, CancellationToken token)
|
|
{
|
|
return this.LoadModelsResponse<ModelsResponse>(
|
|
storeType,
|
|
"models?limit=100",
|
|
modelResponse => modelResponse.Data,
|
|
apiKeyProvisional,
|
|
failureReasonSelector: (response, _) => response.StatusCode switch
|
|
{
|
|
System.Net.HttpStatusCode.Unauthorized => ModelLoadFailureReason.INVALID_OR_MISSING_API_KEY,
|
|
System.Net.HttpStatusCode.Forbidden => ModelLoadFailureReason.AUTHENTICATION_OR_PERMISSION_ERROR,
|
|
System.Net.HttpStatusCode.TooManyRequests => ModelLoadFailureReason.TOO_MANY_REQUESTS,
|
|
_ => ModelLoadFailureReason.PROVIDER_UNAVAILABLE,
|
|
},
|
|
requestConfigurator: (request, secretKey) =>
|
|
{
|
|
request.Headers.Add("x-api-key", secretKey);
|
|
request.Headers.Add("anthropic-version", "2023-06-01");
|
|
},
|
|
jsonSerializerOptions: JSON_SERIALIZER_OPTIONS, token: token);
|
|
}
|
|
} |