BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/Enums/KnowledgePayloadName.cs
Jicheng Lu 113340e073 refine knowledge doc
1. move doc meta to db.
2. add doc source and vector data source
2024-09-13 17:23:05 -05:00

15 lines
517 B
C#

namespace BotSharp.Abstraction.Knowledges.Enums;
public static class KnowledgePayloadName
{
public static string Text = "text";
public static string Question = "question";
public static string Answer = "answer";
public static string Request = "request";
public static string Response = "response";
public static string DataSource = "dataSource";
public static string FileId = "fileId";
public static string FileName = "fileName";
public static string FileSource = "fileSource";
}