All checks were successful
Deploy ASP.NET MVC to OCI / build-and-deploy (push) Successful in 22m1s
10 lines
246 B
C#
10 lines
246 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Convert_It_Online.Services
|
|
{
|
|
public interface ITextToSpeechService
|
|
{
|
|
Task<byte[]> GenerateAudioAsync(string text, string language = "pt-BR", float rate = 1.0f, float pitch = 1.0f);
|
|
}
|
|
}
|