BotSharp/src/Infrastructure/BotSharp.Abstraction/VectorStorage/Models/VectorCreateModel.cs
2024-08-23 11:25:44 -05:00

8 lines
187 B
C#

namespace BotSharp.Abstraction.VectorStorage.Models;
public class VectorCreateModel
{
public string Text { get; set; }
public Dictionary<string, string>? Payload { get; set; }
}