mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-06-27 14:56:27 +00:00
5 lines
199 B
C#
5 lines
199 B
C#
namespace AIStudio.Provider.SelfHosted;
|
|
|
|
public readonly record struct ModelsResponse(string? Object, Model[]? Data);
|
|
|
|
public readonly record struct Model(string Id, string? Object, string? OwnedBy); |