mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 20:29:07 +00:00
7 lines
221 B
C#
7 lines
221 B
C#
|
namespace AIStudio.Provider.OpenAI;
|
||
|
|
||
|
/// <summary>
|
||
|
/// A data model for the response from the model endpoint.
|
||
|
/// </summary>
|
||
|
/// <param name="Data"></param>
|
||
|
public readonly record struct ModelsResponse(IList<Model> Data);
|