whisper.cpp/bindings/ruby/ext/ruby_whisper.h
2024-10-20 02:35:11 +09:00

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