BotSharp/src/Infrastructure/BotSharp.OpenAPI/ViewModels/Embeddings/EmbeddingInputModel.cs
2024-07-01 17:05:32 -05:00

13 lines
332 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; } = 1536;
}