BotSharp/src/Plugins/BotSharp.Plugin.TencentCos/Services/TencentCosService.KnowledgeBase.cs

25 lines
783 B
C#
Raw Normal View History

2024-09-10 20:11:40 +00:00
namespace BotSharp.Plugin.TencentCos.Services;
public partial class TencentCosService
{
2024-09-12 01:06:07 +00:00
public bool SaveKnowledgeBaseFile(string collectionName, string vectorStoreProvider, string fileId, string fileName, BinaryData fileData)
2024-09-10 20:11:40 +00:00
{
throw new NotImplementedException();
}
public bool DeleteKnowledgeFile(string collectionName, string vectorStoreProvider, string? fileId = null)
{
throw new NotImplementedException();
}
public string GetKnowledgeBaseFileUrl(string collectionName, string fileId)
2024-09-10 20:11:40 +00:00
{
throw new NotImplementedException();
}
public FileBinaryDataModel? GetKnowledgeBaseFileBinaryData(string collectionName, string vectorStoreProvider, string fileId)
{
throw new NotImplementedException();
}
}