neuron-ai icon indicating copy to clipboard operation
neuron-ai copied to clipboard

Feature/spech to text

Open mappweb opened this issue 1 month ago • 6 comments

//Example class SpeechToTextAgent extends Transcribe { public function transcribe(): TranscribeProviderInterface { return new OpenAITranscribeProvider( config('neuron-ai.providers.openai.api_key'), 'whisper-1', 'es', ); } }

//Agent $fullPath = '.../.../.oga' $agent = SpeechToTextAgent::make(); $string = $agent->transcribeAudio(new AudioContent($fullPath, SourceType::URL));

mappweb avatar Oct 31 '25 02:10 mappweb