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