AI-Studio/app/MindWork AI Studio/Provider/Requesty/RequestyModelsResponse.cs
Thibault Jaigu fe61acc5b2 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.
2026-09-25 10:04:02 +01:00

7 lines
269 B
C#

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);