Skip to content

Commit f073cb8

Browse files
committed
chore(audio): update transcription test
1 parent 57ffb63 commit f073cb8

File tree

2 files changed

+4
-1
lines changed
  • openai-client/src/commonTest/kotlin/com/aallam/openai/client
  • openai-core/src/commonMain/kotlin/com.aallam.openai.api/core

2 files changed

+4
-1
lines changed

openai-client/src/commonTest/kotlin/com/aallam/openai/client/TestAudio.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class TestAudio : TestOpenAI() {
2323
assertTrue { transcription.text.isNotEmpty() }
2424
assertTrue {
2525
transcription.text.startsWith(
26-
"This is the Micro Machine Man presenting the most midget miniature motorcade of micro machines",
26+
"This is the Micromachine Man presenting the most midget miniature motorcade of micromachines",
2727
ignoreCase = true,
2828
)
2929
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
package com.aallam.openai.api.core
2+
3+
public data class OpenAIResponse<T>(val headers: Map<String, List<String>>, val body: T)

0 commit comments

Comments
 (0)