File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public async Task Can_queue_transcribe_speech()
26
26
27
27
try
28
28
{
29
- response = client . PostFilesWithRequest (
29
+ response = client . PostFilesWithRequest < QueueGenerationResponse > (
30
30
new QueueSpeechToText ( ) ,
31
31
[ new UploadFile ( "speech.wav" , fileStream ) { FieldName = "audio" } ] ) ;
32
32
}
@@ -57,7 +57,7 @@ public async Task Can_transcribe_speech_with_reply_to()
57
57
58
58
try
59
59
{
60
- response = client . PostFilesWithRequest (
60
+ response = client . PostFilesWithRequest < QueueGenerationResponse > (
61
61
new QueueSpeechToText
62
62
{
63
63
ReplyTo = "https://localhost:5005/dummyreplyto"
@@ -129,7 +129,7 @@ public async Task Can_transcribe_speech_without_sync_or_reply_to()
129
129
130
130
try
131
131
{
132
- response = client . PostFilesWithRequest (
132
+ response = client . PostFilesWithRequest < QueueGenerationResponse > (
133
133
new QueueSpeechToText ( ) ,
134
134
[ new UploadFile ( "speech.wav" , fileStream ) { FieldName = "audio" } ] ) ;
135
135
}
You can’t perform that action at this time.
0 commit comments