AI-Studio/app/MindWork AI Studio/Provider/OpenRouter/OpenRouterModel.cs

9 lines
314 B
C#
Raw Normal View History

2025-12-15 18:31:51 +00:00
namespace AIStudio.Provider.OpenRouter;
/// <summary>
/// A data model for an OpenRouter model from the API.
/// </summary>
/// <param name="Id">The model's ID.</param>
/// <param name="Name">The model's human-readable display name.</param>
public readonly record struct OpenRouterModel(string Id, string? Name);