mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-14 22:23:38 +00:00
7 lines
256 B
C#
7 lines
256 B
C#
|
|
namespace AIStudio.Provider.Groq;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// A data model for the response from the Groq models endpoint.
|
||
|
|
/// </summary>
|
||
|
|
/// <param name="Data">The models Groq serves.</param>
|
||
|
|
public readonly record struct GroqModelsResponse(IList<GroqModel> Data);
|