mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-05-05 00:24:32 +02:00
17 lines
273 B
C
17 lines
273 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;
|
|
VALUE new_segment_callback;
|
|
} ruby_whisper_params;
|
|
|
|
#endif
|