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

7 lines
225 B
C#
Raw Normal View History

2024-11-09 21:04:00 +00:00
namespace AIStudio.Provider.Google;
/// <summary>
/// A data model for the response from the model endpoint.
/// </summary>
/// <param name="Models"></param>
public readonly record struct ModelsResponse(IList<Model> Models);