BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/Models/KnowledgeChunk.cs

10 lines
241 B
C#
Raw Normal View History

2024-02-19 22:55:41 +00:00
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; }
}