15 lines
391 B
C#
15 lines
391 B
C#
|
|
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();
|
||
|
|
}
|
||
|
|
}
|