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

15 lines
391 B
C#
Raw Normal View History

2024-08-09 22:39:54 +00:00
namespace BotSharp.Plugin.TencentCos.Services;
public partial class TencentCosService
{
public Task SaveSpeechFileAsync(string conversationId, string fileName, BinaryData data)
{
throw new NotImplementedException();
}
public Task<BinaryData> RetrieveSpeechFileAsync(string conversationId, string fileName)
{
throw new NotImplementedException();
}
}