AI-Studio/app/MindWork AI Studio/Provider/EmbeddingData.cs

12 lines
312 B
C#
Raw Normal View History

// ReSharper disable CollectionNeverUpdated.Global
namespace AIStudio.Provider;
// ReSharper disable once ClassNeverInstantiated.Global
public sealed record EmbeddingData
{
public string? Object { get; set; }
public List<float>? Embedding { get; set; }
public int? Index { get; set; }
}