8 lines
153 B
Go
8 lines
153 B
Go
package port
|
|
|
|
import "context"
|
|
|
|
type SpeechTranscriber interface {
|
|
Transcribe(ctx context.Context, audioData []byte, mimeType string) (string, error)
|
|
}
|