BotSharp/src/Infrastructure/BotSharp.OpenAPI/ViewModels/Embeddings/EmbeddingInputModel.cs
2024-08-22 10:15:05 -05:00

14 lines
333 B
C#

using System.Text.Json.Serialization;
namespace BotSharp.OpenAPI.ViewModels.Embeddings;
public class EmbeddingInputModel : MessageConfig
{
[JsonPropertyName("texts")]
public IEnumerable<string> Texts { get; set; } = new List<string>();
[JsonPropertyName("dimension")]
public int Dimension { get; set; } = 3072;
}