Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
natasa365/whisper.cpp
Xenobd
/
whisper.cpp
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ee64ad8
whisper.cpp
/
bindings
/
ruby
/
ext
/
ruby_whisper.h
Todd
bindings : add Ruby (#500)
ad05850
unverified
almost 3 years ago
raw
Copy download link
history
blame
243 Bytes
#
ifndef
__RUBY_WHISPER_H
#
define
__RUBY_WHISPER_H
#
include
"whisper.h"
typedef
struct
{
struct
whisper_context
*
context
;
} ruby_whisper;
typedef
struct
{
struct
whisper_full_params
params
;
bool
diarize;
} ruby_whisper_params;
#
endif