mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-27 00:53:37 +00:00
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.
7 lines
269 B
C#
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); |