mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-27 00:53:37 +00:00
Added Requesty as a provider
Requesty is an OpenAI compatible AI gateway. The provider mirrors OpenRouter: chat completions over https://router.requesty.ai/v1/, the same project headers, and a model list read from both the managed policies (models/managed) and the full catalog (models), including the context window.
This commit is contained in:
parent
4baf21656a
commit
fe61acc5b2
24
app/MindWork AI Studio/Models/Hosting/Hosts/HostRequesty.cs
Normal file
24
app/MindWork AI Studio/Models/Hosting/Hosts/HostRequesty.cs
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
using AIStudio.Models.Matching;
|
||||||
|
using AIStudio.Provider;
|
||||||
|
|
||||||
|
namespace AIStudio.Models.Hosting.Hosts;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Requesty, a gateway which serves other people's models and says whose they are.
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// Most names come as "vendor/model", the same shape OpenRouter uses, so the prefix is taken off
|
||||||
|
/// and the vendor stated. Requesty also lists managed routing policies such as "gpt-5-mini@eu",
|
||||||
|
/// which carry no prefix at all. Those have nothing to take off and go to the rules as they are.
|
||||||
|
/// </remarks>
|
||||||
|
public sealed class HostRequesty : ModelHost
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
public override LLMProviders Provider => LLMProviders.REQUESTY;
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public override ModelSource Source => new("https://docs.requesty.ai/features/managed-policies", new DateOnly(2026, 9, 25), "Models are named \"vendor/model\", apart from managed policies such as \"gpt-5-mini@eu\", and all of them are served through the OpenAI-compatible chat completion API.");
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public override bool TryUnwrap(in ModelId id, out ModelId inner, out ModelVendor? declaredVendor) => HostNaming.TrySplitOrganization(id, out inner, out declaredVendor);
|
||||||
|
}
|
||||||
@ -906,8 +906,8 @@ CONFIG["SETTINGS"] = {}
|
|||||||
-- Configure a custom confidence scheme.
|
-- Configure a custom confidence scheme.
|
||||||
-- This is used when DataConfidence.ConfidenceScheme is set to CUSTOM.
|
-- This is used when DataConfidence.ConfidenceScheme is set to CUSTOM.
|
||||||
-- Allowed provider keys are: OPEN_AI, ANTHROPIC, MISTRAL, GOOGLE, X, DEEP_SEEK, ALIBABA_CLOUD,
|
-- Allowed provider keys are: OPEN_AI, ANTHROPIC, MISTRAL, GOOGLE, X, DEEP_SEEK, ALIBABA_CLOUD,
|
||||||
-- PERPLEXITY, OPEN_ROUTER, HETZNER, IONOS, LITE_LLM, FIREWORKS, GROQ, HUGGINGFACE, SELF_HOSTED,
|
-- PERPLEXITY, OPEN_ROUTER, HETZNER, IONOS, LITE_LLM, REQUESTY, FIREWORKS, GROQ, HUGGINGFACE,
|
||||||
-- HELMHOLTZ, GWDG
|
-- SELF_HOSTED, HELMHOLTZ, GWDG
|
||||||
-- Allowed confidence values are: UNTRUSTED, VERY_LOW, LOW, MODERATE, MEDIUM, HIGH
|
-- Allowed confidence values are: UNTRUSTED, VERY_LOW, LOW, MODERATE, MEDIUM, HIGH
|
||||||
--
|
--
|
||||||
-- Replaces, does not merge: a configuration with a higher priority replaces the whole
|
-- Replaces, does not merge: a configuration with a higher priority replaces the whole
|
||||||
@ -927,6 +927,7 @@ CONFIG["SETTINGS"] = {}
|
|||||||
-- ["HETZNER"] = "HIGH",
|
-- ["HETZNER"] = "HIGH",
|
||||||
-- ["IONOS"] = "HIGH",
|
-- ["IONOS"] = "HIGH",
|
||||||
-- ["LITE_LLM"] = "MODERATE",
|
-- ["LITE_LLM"] = "MODERATE",
|
||||||
|
-- ["REQUESTY"] = "MODERATE",
|
||||||
-- ["FIREWORKS"] = "MODERATE",
|
-- ["FIREWORKS"] = "MODERATE",
|
||||||
-- ["GROQ"] = "MODERATE",
|
-- ["GROQ"] = "MODERATE",
|
||||||
-- ["HUGGINGFACE"] = "MODERATE",
|
-- ["HUGGINGFACE"] = "MODERATE",
|
||||||
|
|||||||
@ -109,7 +109,7 @@ MODELS = {}
|
|||||||
-- -- the same name means different things depending on who serves it.
|
-- -- the same name means different things depending on who serves it.
|
||||||
-- -- Allowed values are: OPEN_AI, ANTHROPIC, MISTRAL, GOOGLE, X, DEEP_SEEK,
|
-- -- Allowed values are: OPEN_AI, ANTHROPIC, MISTRAL, GOOGLE, X, DEEP_SEEK,
|
||||||
-- -- ALIBABA_CLOUD, PERPLEXITY, OPEN_ROUTER, HETZNER, IONOS, LITE_LLM,
|
-- -- ALIBABA_CLOUD, PERPLEXITY, OPEN_ROUTER, HETZNER, IONOS, LITE_LLM,
|
||||||
-- -- FIREWORKS, GROQ, HUGGINGFACE, SELF_HOSTED, HELMHOLTZ, GWDG
|
-- -- REQUESTY, FIREWORKS, GROQ, HUGGINGFACE, SELF_HOSTED, HELMHOLTZ, GWDG
|
||||||
-- ["ONLY_ON"] = "SELF_HOSTED",
|
-- ["ONLY_ON"] = "SELF_HOSTED",
|
||||||
--
|
--
|
||||||
-- -- Optional: restrict this entry to models of one vendor. Only gateways
|
-- -- Optional: restrict this entry to models of one vendor. Only gateways
|
||||||
|
|||||||
@ -19,6 +19,7 @@ public enum LLMProviders
|
|||||||
HETZNER = 16,
|
HETZNER = 16,
|
||||||
IONOS = 17,
|
IONOS = 17,
|
||||||
LITE_LLM = 18,
|
LITE_LLM = 18,
|
||||||
|
REQUESTY = 19,
|
||||||
|
|
||||||
FIREWORKS = 5,
|
FIREWORKS = 5,
|
||||||
GROQ = 6,
|
GROQ = 6,
|
||||||
|
|||||||
@ -14,6 +14,7 @@ using AIStudio.Provider.Mistral;
|
|||||||
using AIStudio.Provider.OpenAI;
|
using AIStudio.Provider.OpenAI;
|
||||||
using AIStudio.Provider.OpenRouter;
|
using AIStudio.Provider.OpenRouter;
|
||||||
using AIStudio.Provider.Perplexity;
|
using AIStudio.Provider.Perplexity;
|
||||||
|
using AIStudio.Provider.Requesty;
|
||||||
using AIStudio.Provider.SelfHosted;
|
using AIStudio.Provider.SelfHosted;
|
||||||
using AIStudio.Provider.X;
|
using AIStudio.Provider.X;
|
||||||
using AIStudio.Settings;
|
using AIStudio.Settings;
|
||||||
@ -62,6 +63,7 @@ public static class LLMProvidersExtensions
|
|||||||
LLMProviders.HETZNER => "Hetzner (Experimental)",
|
LLMProviders.HETZNER => "Hetzner (Experimental)",
|
||||||
LLMProviders.IONOS => "IONOS",
|
LLMProviders.IONOS => "IONOS",
|
||||||
LLMProviders.LITE_LLM => "LiteLLM",
|
LLMProviders.LITE_LLM => "LiteLLM",
|
||||||
|
LLMProviders.REQUESTY => "Requesty",
|
||||||
|
|
||||||
LLMProviders.GROQ => "Groq",
|
LLMProviders.GROQ => "Groq",
|
||||||
LLMProviders.FIREWORKS => "Fireworks.ai",
|
LLMProviders.FIREWORKS => "Fireworks.ai",
|
||||||
@ -100,6 +102,7 @@ public static class LLMProvidersExtensions
|
|||||||
LLMProviders.HETZNER => "Hetzner",
|
LLMProviders.HETZNER => "Hetzner",
|
||||||
LLMProviders.IONOS => "IONOS",
|
LLMProviders.IONOS => "IONOS",
|
||||||
LLMProviders.LITE_LLM => "LiteLLM",
|
LLMProviders.LITE_LLM => "LiteLLM",
|
||||||
|
LLMProviders.REQUESTY => "Requesty",
|
||||||
|
|
||||||
LLMProviders.GROQ => "Groq",
|
LLMProviders.GROQ => "Groq",
|
||||||
LLMProviders.FIREWORKS => "Fireworks.ai",
|
LLMProviders.FIREWORKS => "Fireworks.ai",
|
||||||
@ -170,6 +173,8 @@ public static class LLMProvidersExtensions
|
|||||||
// of a self-hosted model here and let the user assign the level themselves.
|
// of a self-hosted model here and let the user assign the level themselves.
|
||||||
LLMProviders.LITE_LLM => Confidence.USER_OPERATED_GATEWAY.WithSources("https://docs.litellm.ai/docs/data_security").WithLevel(settingsManager.GetConfiguredConfidenceLevel(llmProvider)),
|
LLMProviders.LITE_LLM => Confidence.USER_OPERATED_GATEWAY.WithSources("https://docs.litellm.ai/docs/data_security").WithLevel(settingsManager.GetConfiguredConfidenceLevel(llmProvider)),
|
||||||
|
|
||||||
|
LLMProviders.REQUESTY => Confidence.UNKNOWN.WithSources("https://www.requesty.ai/privacy", "https://www.requesty.ai/terms").WithLevel(settingsManager.GetConfiguredConfidenceLevel(llmProvider)),
|
||||||
|
|
||||||
LLMProviders.SELF_HOSTED => Confidence.SELF_HOSTED.WithLevel(settingsManager.GetConfiguredConfidenceLevel(llmProvider)),
|
LLMProviders.SELF_HOSTED => Confidence.SELF_HOSTED.WithLevel(settingsManager.GetConfiguredConfidenceLevel(llmProvider)),
|
||||||
|
|
||||||
LLMProviders.HELMHOLTZ => Confidence.GDPR_NO_TRAINING.WithRegion("Europe, Germany").WithSources("https://helmholtz.cloud/services/?serviceID=d7d5c597-a2f6-4bd1-b71e-4d6499d98570").WithLevel(settingsManager.GetConfiguredConfidenceLevel(llmProvider)),
|
LLMProviders.HELMHOLTZ => Confidence.GDPR_NO_TRAINING.WithRegion("Europe, Germany").WithSources("https://helmholtz.cloud/services/?serviceID=d7d5c597-a2f6-4bd1-b71e-4d6499d98570").WithLevel(settingsManager.GetConfiguredConfidenceLevel(llmProvider)),
|
||||||
@ -208,6 +213,7 @@ public static class LLMProvidersExtensions
|
|||||||
LLMProviders.DEEP_SEEK => false,
|
LLMProviders.DEEP_SEEK => false,
|
||||||
LLMProviders.PERPLEXITY => false,
|
LLMProviders.PERPLEXITY => false,
|
||||||
LLMProviders.HETZNER => false,
|
LLMProviders.HETZNER => false,
|
||||||
|
LLMProviders.REQUESTY => false,
|
||||||
|
|
||||||
//
|
//
|
||||||
// Hugging Face serves embeddings, but not through the router endpoint we chat with: that
|
// Hugging Face serves embeddings, but not through the router endpoint we chat with: that
|
||||||
@ -254,6 +260,7 @@ public static class LLMProvidersExtensions
|
|||||||
LLMProviders.X => false,
|
LLMProviders.X => false,
|
||||||
LLMProviders.DEEP_SEEK => false,
|
LLMProviders.DEEP_SEEK => false,
|
||||||
LLMProviders.PERPLEXITY => false,
|
LLMProviders.PERPLEXITY => false,
|
||||||
|
LLMProviders.REQUESTY => false,
|
||||||
|
|
||||||
//
|
//
|
||||||
// Hugging Face transcribes audio, but like embeddings, not through the router endpoint we
|
// Hugging Face transcribes audio, but like embeddings, not through the router endpoint we
|
||||||
@ -319,6 +326,7 @@ public static class LLMProvidersExtensions
|
|||||||
LLMProviders.HETZNER => new ProviderHetzner { InstanceName = instanceName, ConfiguredProviderId = configuredProviderId, AdditionalJsonApiParameters = expertProviderApiParameter, TokenizerPath = tokenizerPath, IsEnterpriseConfiguration = isEnterpriseConfiguration },
|
LLMProviders.HETZNER => new ProviderHetzner { InstanceName = instanceName, ConfiguredProviderId = configuredProviderId, AdditionalJsonApiParameters = expertProviderApiParameter, TokenizerPath = tokenizerPath, IsEnterpriseConfiguration = isEnterpriseConfiguration },
|
||||||
LLMProviders.IONOS => new ProviderIONOS { InstanceName = instanceName, ConfiguredProviderId = configuredProviderId, AdditionalJsonApiParameters = expertProviderApiParameter, TokenizerPath = tokenizerPath, IsEnterpriseConfiguration = isEnterpriseConfiguration },
|
LLMProviders.IONOS => new ProviderIONOS { InstanceName = instanceName, ConfiguredProviderId = configuredProviderId, AdditionalJsonApiParameters = expertProviderApiParameter, TokenizerPath = tokenizerPath, IsEnterpriseConfiguration = isEnterpriseConfiguration },
|
||||||
LLMProviders.LITE_LLM => new ProviderLiteLLM(hostname) { InstanceName = instanceName, ConfiguredProviderId = configuredProviderId, AdditionalJsonApiParameters = expertProviderApiParameter, TokenizerPath = tokenizerPath, IsEnterpriseConfiguration = isEnterpriseConfiguration },
|
LLMProviders.LITE_LLM => new ProviderLiteLLM(hostname) { InstanceName = instanceName, ConfiguredProviderId = configuredProviderId, AdditionalJsonApiParameters = expertProviderApiParameter, TokenizerPath = tokenizerPath, IsEnterpriseConfiguration = isEnterpriseConfiguration },
|
||||||
|
LLMProviders.REQUESTY => new ProviderRequesty { InstanceName = instanceName, ConfiguredProviderId = configuredProviderId, AdditionalJsonApiParameters = expertProviderApiParameter, TokenizerPath = tokenizerPath, IsEnterpriseConfiguration = isEnterpriseConfiguration },
|
||||||
|
|
||||||
LLMProviders.GROQ => new ProviderGroq { InstanceName = instanceName, ConfiguredProviderId = configuredProviderId, AdditionalJsonApiParameters = expertProviderApiParameter, TokenizerPath = tokenizerPath, IsEnterpriseConfiguration = isEnterpriseConfiguration },
|
LLMProviders.GROQ => new ProviderGroq { InstanceName = instanceName, ConfiguredProviderId = configuredProviderId, AdditionalJsonApiParameters = expertProviderApiParameter, TokenizerPath = tokenizerPath, IsEnterpriseConfiguration = isEnterpriseConfiguration },
|
||||||
LLMProviders.FIREWORKS => new ProviderFireworks { InstanceName = instanceName, ConfiguredProviderId = configuredProviderId, AdditionalJsonApiParameters = expertProviderApiParameter, TokenizerPath = tokenizerPath, IsEnterpriseConfiguration = isEnterpriseConfiguration },
|
LLMProviders.FIREWORKS => new ProviderFireworks { InstanceName = instanceName, ConfiguredProviderId = configuredProviderId, AdditionalJsonApiParameters = expertProviderApiParameter, TokenizerPath = tokenizerPath, IsEnterpriseConfiguration = isEnterpriseConfiguration },
|
||||||
@ -357,6 +365,7 @@ public static class LLMProvidersExtensions
|
|||||||
LLMProviders.OPEN_ROUTER => "https://openrouter.ai/keys",
|
LLMProviders.OPEN_ROUTER => "https://openrouter.ai/keys",
|
||||||
LLMProviders.HETZNER => "https://experiments.hetzner.com",
|
LLMProviders.HETZNER => "https://experiments.hetzner.com",
|
||||||
LLMProviders.IONOS => "https://cloud.ionos.com/compute/sign-up",
|
LLMProviders.IONOS => "https://cloud.ionos.com/compute/sign-up",
|
||||||
|
LLMProviders.REQUESTY => "https://app.requesty.ai/api-keys",
|
||||||
|
|
||||||
LLMProviders.GROQ => "https://console.groq.com/",
|
LLMProviders.GROQ => "https://console.groq.com/",
|
||||||
LLMProviders.FIREWORKS => "https://fireworks.ai/login",
|
LLMProviders.FIREWORKS => "https://fireworks.ai/login",
|
||||||
@ -384,6 +393,7 @@ public static class LLMProvidersExtensions
|
|||||||
LLMProviders.HUGGINGFACE => "https://huggingface.co/settings/billing",
|
LLMProviders.HUGGINGFACE => "https://huggingface.co/settings/billing",
|
||||||
LLMProviders.HETZNER => "https://experiments.hetzner.com",
|
LLMProviders.HETZNER => "https://experiments.hetzner.com",
|
||||||
LLMProviders.IONOS => "https://dcd.ionos.com/latest/?page=dcd-ai-model-hub",
|
LLMProviders.IONOS => "https://dcd.ionos.com/latest/?page=dcd-ai-model-hub",
|
||||||
|
LLMProviders.REQUESTY => "https://app.requesty.ai/",
|
||||||
|
|
||||||
_ => string.Empty,
|
_ => string.Empty,
|
||||||
};
|
};
|
||||||
@ -404,6 +414,7 @@ public static class LLMProvidersExtensions
|
|||||||
LLMProviders.HUGGINGFACE => true,
|
LLMProviders.HUGGINGFACE => true,
|
||||||
LLMProviders.HETZNER => true,
|
LLMProviders.HETZNER => true,
|
||||||
LLMProviders.IONOS => true,
|
LLMProviders.IONOS => true,
|
||||||
|
LLMProviders.REQUESTY => true,
|
||||||
|
|
||||||
_ => false,
|
_ => false,
|
||||||
};
|
};
|
||||||
@ -473,6 +484,7 @@ public static class LLMProvidersExtensions
|
|||||||
LLMProviders.HETZNER => true,
|
LLMProviders.HETZNER => true,
|
||||||
LLMProviders.IONOS => true,
|
LLMProviders.IONOS => true,
|
||||||
LLMProviders.LITE_LLM => true,
|
LLMProviders.LITE_LLM => true,
|
||||||
|
LLMProviders.REQUESTY => true,
|
||||||
|
|
||||||
LLMProviders.GROQ => true,
|
LLMProviders.GROQ => true,
|
||||||
LLMProviders.FIREWORKS => true,
|
LLMProviders.FIREWORKS => true,
|
||||||
@ -502,6 +514,7 @@ public static class LLMProvidersExtensions
|
|||||||
LLMProviders.OPEN_ROUTER => true,
|
LLMProviders.OPEN_ROUTER => true,
|
||||||
LLMProviders.HETZNER => true,
|
LLMProviders.HETZNER => true,
|
||||||
LLMProviders.IONOS => true,
|
LLMProviders.IONOS => true,
|
||||||
|
LLMProviders.REQUESTY => true,
|
||||||
|
|
||||||
LLMProviders.GROQ => true,
|
LLMProviders.GROQ => true,
|
||||||
LLMProviders.FIREWORKS => true,
|
LLMProviders.FIREWORKS => true,
|
||||||
|
|||||||
@ -31,6 +31,7 @@ public static class LLMProvidersIconExtensions
|
|||||||
LLMProviders.HETZNER => $"{ICON_ROOT}/hetzner.svg",
|
LLMProviders.HETZNER => $"{ICON_ROOT}/hetzner.svg",
|
||||||
LLMProviders.IONOS => $"{ICON_ROOT}/ionos.svg",
|
LLMProviders.IONOS => $"{ICON_ROOT}/ionos.svg",
|
||||||
LLMProviders.LITE_LLM => $"{ICON_ROOT}/litellm.svg",
|
LLMProviders.LITE_LLM => $"{ICON_ROOT}/litellm.svg",
|
||||||
|
LLMProviders.REQUESTY => $"{ICON_ROOT}/requesty.svg",
|
||||||
LLMProviders.GROQ => $"{ICON_ROOT}/groq.svg",
|
LLMProviders.GROQ => $"{ICON_ROOT}/groq.svg",
|
||||||
LLMProviders.FIREWORKS => $"{ICON_ROOT}/fireworks.svg",
|
LLMProviders.FIREWORKS => $"{ICON_ROOT}/fireworks.svg",
|
||||||
LLMProviders.HUGGINGFACE => $"{ICON_ROOT}/hugging-face.svg",
|
LLMProviders.HUGGINGFACE => $"{ICON_ROOT}/hugging-face.svg",
|
||||||
|
|||||||
@ -108,6 +108,7 @@ public static class ReasoningDispatcher
|
|||||||
LLMProviders.HETZNER or
|
LLMProviders.HETZNER or
|
||||||
LLMProviders.IONOS or
|
LLMProviders.IONOS or
|
||||||
LLMProviders.LITE_LLM or
|
LLMProviders.LITE_LLM or
|
||||||
|
LLMProviders.REQUESTY or
|
||||||
LLMProviders.X or
|
LLMProviders.X or
|
||||||
LLMProviders.DEEP_SEEK or
|
LLMProviders.DEEP_SEEK or
|
||||||
LLMProviders.GROQ or
|
LLMProviders.GROQ or
|
||||||
|
|||||||
162
app/MindWork AI Studio/Provider/Requesty/ProviderRequesty.cs
Normal file
162
app/MindWork AI Studio/Provider/Requesty/ProviderRequesty.cs
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
using System.Net.Http.Headers;
|
||||||
|
using System.Runtime.CompilerServices;
|
||||||
|
|
||||||
|
using AIStudio.Chat;
|
||||||
|
using AIStudio.Models.Live;
|
||||||
|
using AIStudio.Provider.OpenAI;
|
||||||
|
using AIStudio.Settings;
|
||||||
|
|
||||||
|
namespace AIStudio.Provider.Requesty;
|
||||||
|
|
||||||
|
public sealed class ProviderRequesty() : BaseProvider(LLMProviders.REQUESTY, new Uri("https://router.requesty.ai/v1/"), ExternalHttpTrustPolicy.SYSTEM_TRUST_ONLY, LOGGER)
|
||||||
|
{
|
||||||
|
private const string PROJECT_WEBSITE = "https://github.com/MindWorkAI/AI-Studio";
|
||||||
|
private const string PROJECT_NAME = "MindWork AI Studio";
|
||||||
|
|
||||||
|
private static readonly ILogger<ProviderRequesty> LOGGER = Program.LOGGER_FACTORY.CreateLogger<ProviderRequesty>();
|
||||||
|
|
||||||
|
#region Implementation of IProvider
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public override string Id => LLMProviders.REQUESTY.ToSecretId();
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public override string InstanceName { get; set; } = "Requesty";
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public override bool HasModelLoadingCapability => true;
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public override async IAsyncEnumerable<ContentStreamChunk> StreamChatCompletion(Model chatModel, ChatThread chatThread, SettingsManager settingsManager, [EnumeratorCancellation] CancellationToken token = default)
|
||||||
|
{
|
||||||
|
await foreach (var content in this.StreamOpenAICompatibleChatCompletion<ChatCompletionAPIRequest, ChatCompletionDeltaStreamLine, NoChatCompletionAnnotationStreamLine>(
|
||||||
|
"Requesty",
|
||||||
|
chatModel,
|
||||||
|
chatThread,
|
||||||
|
settingsManager,
|
||||||
|
async (systemPrompt, apiParameters, tools) =>
|
||||||
|
{
|
||||||
|
// Build the list of messages:
|
||||||
|
var messages = await chatThread.Blocks.BuildMessagesUsingNestedImageUrlAsync(this.CreateSettingsProvider(chatModel));
|
||||||
|
|
||||||
|
return new ChatCompletionAPIRequest
|
||||||
|
{
|
||||||
|
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,
|
||||||
|
Tools = tools,
|
||||||
|
AdditionalApiParameters = apiParameters
|
||||||
|
};
|
||||||
|
},
|
||||||
|
headersAction: headers =>
|
||||||
|
{
|
||||||
|
// Set custom headers for project identification:
|
||||||
|
headers.Add("HTTP-Referer", PROJECT_WEBSITE);
|
||||||
|
headers.Add("X-Title", PROJECT_NAME);
|
||||||
|
},
|
||||||
|
token: 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 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 Task<ModelLoadResult> GetTextModels(string? apiKeyProvisional = null, CancellationToken token = default)
|
||||||
|
{
|
||||||
|
return this.LoadModels(SecretStoreType.LLM_PROVIDER, apiKeyProvisional, token);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <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
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Loads the managed policies and the full model catalog, and offers both as one list.
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// Requesty lists its managed policies, such as "gpt-5-mini@eu", on a route of their own, and
|
||||||
|
/// the catalog does not contain them. Both lists are read before anything is reported, because
|
||||||
|
/// what is reported replaces everything this instance said before. When the managed route
|
||||||
|
/// fails, the catalog alone is still offered.
|
||||||
|
/// </remarks>
|
||||||
|
/// <param name="storeType">Where the API key is stored.</param>
|
||||||
|
/// <param name="apiKeyProvisional">An API key which is not stored yet.</param>
|
||||||
|
/// <param name="token">The cancellation token to use.</param>
|
||||||
|
/// <returns>The chat models.</returns>
|
||||||
|
private async Task<ModelLoadResult> LoadModels(SecretStoreType storeType, string? apiKeyProvisional, CancellationToken token)
|
||||||
|
{
|
||||||
|
IList<RequestyModel> managedModels = [];
|
||||||
|
await this.LoadModelsResponse<RequestyModelsResponse>(
|
||||||
|
storeType,
|
||||||
|
"models/managed",
|
||||||
|
modelResponse =>
|
||||||
|
{
|
||||||
|
managedModels = modelResponse.Data;
|
||||||
|
return [];
|
||||||
|
},
|
||||||
|
apiKeyProvisional,
|
||||||
|
requestConfigurator: ConfigureRequest,
|
||||||
|
token: token);
|
||||||
|
|
||||||
|
return await this.LoadModelsResponse<RequestyModelsResponse>(
|
||||||
|
storeType,
|
||||||
|
"models",
|
||||||
|
modelResponse => managedModels.Concat(modelResponse.Data)
|
||||||
|
.DistinctBy(n => n.Id)
|
||||||
|
.Select(n => new Model(n.Id, null))
|
||||||
|
.Where(model => model.IsChatModel(this.Provider)),
|
||||||
|
apiKeyProvisional,
|
||||||
|
requestConfigurator: ConfigureRequest,
|
||||||
|
listingFactory: modelResponse => managedModels.Concat(modelResponse.Data)
|
||||||
|
.DistinctBy(n => n.Id)
|
||||||
|
.Select(n => ModelListing.For(n.Id, n.ContextWindowTokens)),
|
||||||
|
token: token);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void ConfigureRequest(HttpRequestMessage request, string secretKey)
|
||||||
|
{
|
||||||
|
request.Headers.Authorization = new AuthenticationHeaderValue("Bearer", secretKey);
|
||||||
|
request.Headers.Add("HTTP-Referer", PROJECT_WEBSITE);
|
||||||
|
request.Headers.Add("X-Title", PROJECT_NAME);
|
||||||
|
}
|
||||||
|
}
|
||||||
10
app/MindWork AI Studio/Provider/Requesty/RequestyModel.cs
Normal file
10
app/MindWork AI Studio/Provider/Requesty/RequestyModel.cs
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
|
namespace AIStudio.Provider.Requesty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A data model for a Requesty model from the API.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="Id">The model's ID.</param>
|
||||||
|
/// <param name="ContextWindowTokens">How much the model reads and writes in one conversation, in tokens.</param>
|
||||||
|
public readonly record struct RequestyModel(string Id, [property: JsonPropertyName("context_window")] int? ContextWindowTokens);
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
namespace AIStudio.Provider.Requesty;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A data model for the response from the Requesty models endpoints.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="Data">The list of models.</param>
|
||||||
|
public readonly record struct RequestyModelsResponse(IList<RequestyModel> Data);
|
||||||
@ -9,6 +9,7 @@ All provider icons are shipped with AI Studio and loaded locally. No icon trigge
|
|||||||
- `openai*.svg` uses the OpenAI mark path from [Simple Icons 15.15.0](https://github.com/simple-icons/simple-icons/blob/15.15.0/icons/openai.svg) and black/white variants following the [OpenAI Design Guidelines](https://openai.com/brand/).
|
- `openai*.svg` uses the OpenAI mark path from [Simple Icons 15.15.0](https://github.com/simple-icons/simple-icons/blob/15.15.0/icons/openai.svg) and black/white variants following the [OpenAI Design Guidelines](https://openai.com/brand/).
|
||||||
- `fireworks.svg` is adapted from the [Fireworks AI site icon](https://fireworks.ai/icon0.svg).
|
- `fireworks.svg` is adapted from the [Fireworks AI site icon](https://fireworks.ai/icon0.svg).
|
||||||
- `groq.svg` is adapted from the [Groq site icon](https://groq.com/favicon.svg).
|
- `groq.svg` is adapted from the [Groq site icon](https://groq.com/favicon.svg).
|
||||||
|
- `requesty.svg` is adapted from the [Requesty site icon](https://www.requesty.ai/apple-icon.png).
|
||||||
- `litellm.svg` is the bullet train emoji from [Twemoji 17.0.3](https://github.com/jdecked/twemoji/tree/v17.0.3), licensed under [CC-BY 4.0](https://creativecommons.org/licenses/by/4.0/). LiteLLM has no mark of its own and identifies itself with that emoji. Retrieved on 2026-08-30.
|
- `litellm.svg` is the bullet train emoji from [Twemoji 17.0.3](https://github.com/jdecked/twemoji/tree/v17.0.3), licensed under [CC-BY 4.0](https://creativecommons.org/licenses/by/4.0/). LiteLLM has no mark of its own and identifies itself with that emoji. Retrieved on 2026-08-30.
|
||||||
- `provider*.svg` and `self-hosted*.svg` are neutral project-owned fallback graphics.
|
- `provider*.svg` and `self-hosted*.svg` are neutral project-owned fallback graphics.
|
||||||
- `gwdg.svg`, `openrouter.svg`, `google.svg` and `helmholtz.svg` were created by taking the official logo from their respective websites as images and creating a svg from them.
|
- `gwdg.svg`, `openrouter.svg`, `google.svg` and `helmholtz.svg` were created by taking the official logo from their respective websites as images and creating a svg from them.
|
||||||
|
|||||||
@ -0,0 +1 @@
|
|||||||
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g transform="rotate(-5 12 12)"><path d="M4.5 3h15A2.5 2.5 0 0122 5.5v10a2.5 2.5 0 01-2.5 2.5h-8.25L7.5 22v-4h-3A2.5 2.5 0 012 15.5v-10A2.5 2.5 0 014.5 3z" fill="#1A73F5"/><path d="M6.5 7.5l4 2.75-4 2.75" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8"/><path d="M12.5 14.5h4.5" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 487 B |
@ -189,6 +189,8 @@ PERPLEXITY | sonar-deep-research | ALWAYS_REASONING, CHAT_COMPLETION_API, MULTIP
|
|||||||
PERPLEXITY | sonar-pro | CHAT_COMPLETION_API, MULTIPLE_IMAGE_INPUT, TEXT_INPUT, TEXT_OUTPUT, WEB_SEARCH | CHAT | (unknown) | (unknown) | (unknown)
|
PERPLEXITY | sonar-pro | CHAT_COMPLETION_API, MULTIPLE_IMAGE_INPUT, TEXT_INPUT, TEXT_OUTPUT, WEB_SEARCH | CHAT | (unknown) | (unknown) | (unknown)
|
||||||
PERPLEXITY | sonar-reasoning | ALWAYS_REASONING, CHAT_COMPLETION_API, MULTIPLE_IMAGE_INPUT, TEXT_INPUT, TEXT_OUTPUT, WEB_SEARCH | CHAT | (unknown) | (unknown) | (unknown)
|
PERPLEXITY | sonar-reasoning | ALWAYS_REASONING, CHAT_COMPLETION_API, MULTIPLE_IMAGE_INPUT, TEXT_INPUT, TEXT_OUTPUT, WEB_SEARCH | CHAT | (unknown) | (unknown) | (unknown)
|
||||||
PERPLEXITY | sonar-reasoning-pro | ALWAYS_REASONING, CHAT_COMPLETION_API, MULTIPLE_IMAGE_INPUT, TEXT_INPUT, TEXT_OUTPUT, WEB_SEARCH | CHAT | (unknown) | (unknown) | (unknown)
|
PERPLEXITY | sonar-reasoning-pro | ALWAYS_REASONING, CHAT_COMPLETION_API, MULTIPLE_IMAGE_INPUT, TEXT_INPUT, TEXT_OUTPUT, WEB_SEARCH | CHAT | (unknown) | (unknown) | (unknown)
|
||||||
|
REQUESTY | anthropic/claude-opus-5 | CHAT_COMPLETION_API, FUNCTION_CALLING, MULTIPLE_IMAGE_INPUT, REASONING_BY_DEFAULT, TEXT_INPUT, TEXT_OUTPUT | CHAT | 1000000 | 600 per request | PROVIDER_API /v1/messages/count_tokens
|
||||||
|
REQUESTY | google/gemma-4-31b-it | CHAT_COMPLETION_API, FUNCTION_CALLING, MULTIPLE_IMAGE_INPUT, OPTIONAL_REASONING, TEXT_INPUT, TEXT_OUTPUT | CHAT | (unknown) | (unknown) | (unknown)
|
||||||
SELF_HOSTED | | (nothing) | CHAT | (unknown) | (unknown) | (unknown)
|
SELF_HOSTED | | (nothing) | CHAT | (unknown) | (unknown) | (unknown)
|
||||||
SELF_HOSTED | --- | CHAT_COMPLETION_API, FUNCTION_CALLING, TEXT_INPUT, TEXT_OUTPUT | CHAT | (unknown) | (unknown) | (unknown)
|
SELF_HOSTED | --- | CHAT_COMPLETION_API, FUNCTION_CALLING, TEXT_INPUT, TEXT_OUTPUT | CHAT | (unknown) | (unknown) | (unknown)
|
||||||
SELF_HOSTED | 01-ai/yi-large | CHAT_COMPLETION_API, TEXT_INPUT, TEXT_OUTPUT | CHAT | (unknown) | (unknown) | (unknown)
|
SELF_HOSTED | 01-ai/yi-large | CHAT_COMPLETION_API, TEXT_INPUT, TEXT_OUTPUT | CHAT | (unknown) | (unknown) | (unknown)
|
||||||
|
|||||||
@ -237,6 +237,8 @@ public static class ModelCorpus
|
|||||||
new(LITE_LLM, "azure/gpt-5.6", QUOTED_AS_A_NAME_SHAPE),
|
new(LITE_LLM, "azure/gpt-5.6", QUOTED_AS_A_NAME_SHAPE),
|
||||||
new(LITE_LLM, "bedrock/anthropic.claude-3-5-sonnet-20241022-v2:0", NAMED_BY_NO_RULE),
|
new(LITE_LLM, "bedrock/anthropic.claude-3-5-sonnet-20241022-v2:0", NAMED_BY_NO_RULE),
|
||||||
new(LITE_LLM, "the-fast-one", NAMED_BY_NO_RULE),
|
new(LITE_LLM, "the-fast-one", NAMED_BY_NO_RULE),
|
||||||
|
new(REQUESTY, "anthropic/claude-opus-5", QUOTED_AS_A_NAME_SHAPE),
|
||||||
|
new(REQUESTY, "google/gemma-4-31b-it", NAMED_BY_A_RULE),
|
||||||
];
|
];
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@ -2,6 +2,7 @@ using System.Text.Json;
|
|||||||
|
|
||||||
using AIStudio.Provider.Groq;
|
using AIStudio.Provider.Groq;
|
||||||
using AIStudio.Provider.OpenRouter;
|
using AIStudio.Provider.OpenRouter;
|
||||||
|
using AIStudio.Provider.Requesty;
|
||||||
|
|
||||||
using MistralModelsResponse = AIStudio.Provider.Mistral.ModelsResponse;
|
using MistralModelsResponse = AIStudio.Provider.Mistral.ModelsResponse;
|
||||||
using SelfHostedModelsResponse = AIStudio.Provider.SelfHosted.ModelsResponse;
|
using SelfHostedModelsResponse = AIStudio.Provider.SelfHosted.ModelsResponse;
|
||||||
@ -105,6 +106,19 @@ public sealed class ModelListMetadataTests
|
|||||||
Assert.That(response.Data[0].ContextWindowTokens, Is.EqualTo(131_072));
|
Assert.That(response.Data[0].ContextWindowTokens, Is.EqualTo(131_072));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void RequestyStatesTheWindowAsTheContextWindow()
|
||||||
|
{
|
||||||
|
var response = JsonSerializer.Deserialize<RequestyModelsResponse>("""
|
||||||
|
{
|
||||||
|
"object": "list",
|
||||||
|
"data": [ { "id": "openai/gpt-4o-mini", "object": "model", "api": "chat", "context_window": 128000, "max_output_tokens": 16384 } ]
|
||||||
|
}
|
||||||
|
""", AS_THE_PROVIDERS_READ_IT);
|
||||||
|
|
||||||
|
Assert.That(response.Data[0].ContextWindowTokens, Is.EqualTo(128_000));
|
||||||
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void MistralStatesTheWindowAsAMaximumLength()
|
public void MistralStatesTheWindowAsAMaximumLength()
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user