BotSharp/src/Plugins/BotSharp.Plugin.TencentCos/Services/TencentCosService.KnowledgeBase.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

25 lines
783 B
C#

namespace BotSharp.Plugin.TencentCos.Services;
public partial class TencentCosService
{
public bool SaveKnowledgeBaseFile(string collectionName, string vectorStoreProvider, string fileId, string fileName, BinaryData fileData)
{
throw new NotImplementedException();
}
public bool DeleteKnowledgeFile(string collectionName, string vectorStoreProvider, string? fileId = null)
{
throw new NotImplementedException();
}
public string GetKnowledgeBaseFileUrl(string collectionName, string fileId)
{
throw new NotImplementedException();
}
public FileBinaryDataModel? GetKnowledgeBaseFileBinaryData(string collectionName, string vectorStoreProvider, string fileId)
{
throw new NotImplementedException();
}
}