mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-21 13:41:36 +00:00
14 lines
313 B
C#
14 lines
313 B
C#
|
|
namespace AIStudio.Provider;
|
|||
|
|
|
|||
|
|
public sealed record EmbeddingResponse
|
|||
|
|
{
|
|||
|
|
public string? Id { get; init; }
|
|||
|
|
|
|||
|
|
public string? Object { get; init; }
|
|||
|
|
|
|||
|
|
public List<EmbeddingData>? Data { get; init; }
|
|||
|
|
|
|||
|
|
public string? Model { get; init; }
|
|||
|
|
|
|||
|
|
public EmbeddingUsage? Usage { get; init; }
|
|||
|
|
}
|