AI-Studio/app/MindWork AI Studio/Provider/Mistral/ModelsResponse.cs

5 lines
205 B
C#
Raw Normal View History

2024-07-01 18:11:19 +00:00
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);