Spaces:
Running
Running
File size: 243 Bytes
ad05850 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#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
|