BotSharp/src/Infrastructure/BotSharp.Abstraction/VectorStorage/Models/VectorCreateModel.cs

8 lines
187 B
C#
Raw Normal View History

2024-08-23 16:25:44 +00:00
namespace BotSharp.Abstraction.VectorStorage.Models;
public class VectorCreateModel
{
public string Text { get; set; }
public Dictionary<string, string>? Payload { get; set; }
}