mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 06:41:37 +00:00
9 lines
314 B
C#
9 lines
314 B
C#
|
|
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);
|