mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-03-14 16:26:54 +00:00
8 lines
227 B
Ruby
8 lines
227 B
Ruby
|
require "test/unit"
|
||
|
require "whisper"
|
||
|
|
||
|
class TestBase < Test::Unit::TestCase
|
||
|
MODEL = File.join(__dir__, "..", "..", "..", "models", "ggml-base.en.bin")
|
||
|
AUDIO = File.join(__dir__, "..", "..", "..", "samples", "jfk.wav")
|
||
|
end
|