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

9 lines
222 B
C#
Raw Normal View History

2024-08-23 03:13:40 +00:00
namespace BotSharp.Abstraction.VectorStorage.Models;
public class VectorUpdateModel
{
public string Id { get; set; }
public string Text { get; set; }
public Dictionary<string, string>? Payload { get; set; }
}