mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 12:49:06 +00:00
5 lines
205 B
C#
5 lines
205 B
C#
|
namespace AIStudio.Provider.Mistral;
|
||
|
|
||
|
public readonly record struct ModelsResponse(string Object, Model[] Data);
|
||
|
|
||
|
public readonly record struct Model(string Id, string Object, int Created, string OwnedBy);
|