(ctx context.Context, language string, onEvent func(backend.LiveTranscriptionEvent))
| 353 | } |
| 354 | |
| 355 | func (m *wrappedModel) TranscribeLive(ctx context.Context, language string, onEvent func(backend.LiveTranscriptionEvent)) (backend.LiveTranscriptionSession, error) { |
| 356 | return backend.ModelTranscriptionLive(ctx, language, m.modelLoader, *m.TranscriptionConfig, m.appConfig, onEvent) |
| 357 | } |
| 358 | |
| 359 | func (m *wrappedModel) PredictConfig() *config.ModelConfig { |
| 360 | return m.LLMConfig |
nothing calls this directly
no test coverage detected