37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
using BotSharp.Abstraction.Knowledges.Models;
|
|
|
|
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 bool SaveKnolwedgeBaseFileMeta(string collectionName, string vectorStoreProvider, string fileId, KnowledgeDocMetaData metaData)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public KnowledgeDocMetaData? GetKnowledgeBaseFileMeta(string collectionName, string vectorStoreProvider, string fileId)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public IEnumerable<KnowledgeFileModel> GetKnowledgeBaseFiles(string collectionName, string vectorStoreProvider)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public FileBinaryDataModel? GetKnowledgeBaseFileBinaryData(string collectionName, string vectorStoreProvider, string fileId)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|