mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-06-23 15:56:27 +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);
|