mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 10:01:36 +00:00
129 lines
5.4 KiB
C#
129 lines
5.4 KiB
C#
using System.Net.Http.Headers;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Text;
|
|
using System.Text.Json;
|
|
|
|
using AIStudio.Chat;
|
|
using AIStudio.Provider.OpenAI;
|
|
using AIStudio.Settings;
|
|
|
|
namespace AIStudio.Provider.Fireworks;
|
|
|
|
public class ProviderFireworks() : BaseProvider(LLMProviders.FIREWORKS, "https://api.fireworks.ai/inference/v1/", LOGGER)
|
|
{
|
|
private static readonly ILogger<ProviderFireworks> LOGGER = Program.LOGGER_FACTORY.CreateLogger<ProviderFireworks>();
|
|
|
|
#region Implementation of IProvider
|
|
|
|
/// <inheritdoc />
|
|
public override string Id => LLMProviders.FIREWORKS.ToName();
|
|
|
|
/// <inheritdoc />
|
|
public override string InstanceName { get; set; } = "Fireworks.ai";
|
|
|
|
/// <inheritdoc />
|
|
public override async IAsyncEnumerable<ContentStreamChunk> StreamChatCompletion(Model chatModel, ChatThread chatThread, SettingsManager settingsManager, [EnumeratorCancellation] CancellationToken token = default)
|
|
{
|
|
// Get the API key:
|
|
var requestedSecret = await RUST_SERVICE.GetAPIKey(this, SecretStoreType.LLM_PROVIDER);
|
|
if(!requestedSecret.Success)
|
|
yield break;
|
|
|
|
// Prepare the system prompt:
|
|
var systemPrompt = new TextMessage
|
|
{
|
|
Role = "system",
|
|
Content = chatThread.PrepareSystemPrompt(settingsManager),
|
|
};
|
|
|
|
// Parse the API parameters:
|
|
var apiParameters = this.ParseAdditionalApiParameters();
|
|
|
|
// Build the list of messages:
|
|
var messages = await chatThread.Blocks.BuildMessagesUsingNestedImageUrlAsync(this.Provider, chatModel);
|
|
|
|
// Prepare the Fireworks HTTP chat request:
|
|
var fireworksChatRequest = JsonSerializer.Serialize(new ChatRequest
|
|
{
|
|
Model = chatModel.Id,
|
|
|
|
// Build the messages:
|
|
// - First of all the system prompt
|
|
// - Then none-empty user and AI messages
|
|
Messages = [systemPrompt, ..messages],
|
|
|
|
// 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, "chat/completions");
|
|
|
|
// Set the authorization header:
|
|
request.Headers.Authorization = new AuthenticationHeaderValue("Bearer", await requestedSecret.Secret.Decrypt(ENCRYPTION));
|
|
|
|
// Set the content:
|
|
request.Content = new StringContent(fireworksChatRequest, Encoding.UTF8, "application/json");
|
|
return request;
|
|
}
|
|
|
|
await foreach (var content in this.StreamChatCompletionInternal<ResponseStreamLine, ChatCompletionAnnotationStreamLine>("Fireworks", RequestBuilder, token))
|
|
yield return content;
|
|
}
|
|
|
|
#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 async Task<string> TranscribeAudioAsync(Model transcriptionModel, string audioFilePath, SettingsManager settingsManager, CancellationToken token = default)
|
|
{
|
|
var requestedSecret = await RUST_SERVICE.GetAPIKey(this, SecretStoreType.TRANSCRIPTION_PROVIDER);
|
|
return await this.PerformStandardTranscriptionRequest(requestedSecret, transcriptionModel, audioFilePath, token: token);
|
|
}
|
|
|
|
/// <inhertidoc />
|
|
public override Task<IReadOnlyList<IReadOnlyList<float>>> EmbedTextAsync(Provider.Model embeddingModel, SettingsManager settingsManager, CancellationToken token = default, params List<string> texts)
|
|
{
|
|
return Task.FromResult<IReadOnlyList<IReadOnlyList<float>>>(Array.Empty<IReadOnlyList<float>>());
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override Task<IEnumerable<Model>> GetTextModels(string? apiKeyProvisional = null, CancellationToken token = default)
|
|
{
|
|
return Task.FromResult(Enumerable.Empty<Model>());
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override Task<IEnumerable<Model>> GetImageModels(string? apiKeyProvisional = null, CancellationToken token = default)
|
|
{
|
|
return Task.FromResult(Enumerable.Empty<Model>());
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override Task<IEnumerable<Model>> GetEmbeddingModels(string? apiKeyProvisional = null, CancellationToken token = default)
|
|
{
|
|
return Task.FromResult(Enumerable.Empty<Model>());
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override Task<IEnumerable<Model>> GetTranscriptionModels(string? apiKeyProvisional = null, CancellationToken token = default)
|
|
{
|
|
// Source: https://docs.fireworks.ai/api-reference/audio-transcriptions#param-model
|
|
return Task.FromResult<IEnumerable<Model>>(
|
|
new List<Model>
|
|
{
|
|
new("whisper-v3", "Whisper v3"),
|
|
// new("whisper-v3-turbo", "Whisper v3 Turbo"), // does not work
|
|
});
|
|
}
|
|
|
|
#endregion
|
|
} |