BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/Models/KnowledgeChunk.cs
2024-02-19 16:55:41 -06:00

10 lines
241 B
C#

namespace BotSharp.Abstraction.Knowledges.Models;
public class KnowledgeChunk
{
public string Id { get; set; }
public string Name { get; set; }
public string Content { get; set; }
public string SourceAgentId { get; set; }
}