mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-12-19 04:37:51 +00:00
16 lines
243 B
C
16 lines
243 B
C
|
#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
|