Skip to content

Commit

Permalink
chore(audio): update transcription test
Browse files Browse the repository at this point in the history
  • Loading branch information
aallam committed Jul 15, 2023
1 parent 57ffb63 commit f073cb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class TestAudio : TestOpenAI() {
assertTrue { transcription.text.isNotEmpty() }
assertTrue {
transcription.text.startsWith(
"This is the Micro Machine Man presenting the most midget miniature motorcade of micro machines",
"This is the Micromachine Man presenting the most midget miniature motorcade of micromachines",
ignoreCase = true,
)
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package com.aallam.openai.api.core

public data class OpenAIResponse<T>(val headers: Map<String, List<String>>, val body: T)

0 comments on commit f073cb8

Please sign in to comment.