mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 23:49:06 +00:00
7 lines
192 B
C#
7 lines
192 B
C#
|
namespace AIStudio.Provider;
|
||
|
|
||
|
/// <summary>
|
||
|
/// The data model for the model to use.
|
||
|
/// </summary>
|
||
|
/// <param name="Id">The model's ID.</param>
|
||
|
public readonly record struct Model(string Id);
|