VoiceLLMProvider class abstract
LLM provider with voice capabilities
- Implemented types
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
-
supportedCapabilities
→ Set<
LLMCapability> -
Set of capabilities this provider supports
no setterinherited
-
supportedFeatures
→ Set<
AudioFeature> -
Get all audio features supported by this provider
no setterinherited
Methods
-
chat(
List< ChatMessage> messages) → Future<ChatResponse> -
Sends a chat request to the provider with a sequence of messages.
inherited
-
chatStream(
List< ChatMessage> messages, {List<Tool> ? tools}) → Stream<ChatStreamEvent> -
Sends a streaming chat request to the provider
inherited
-
chatWithTools(
List< ChatMessage> messages, List<Tool> ? tools) → Future<ChatResponse> -
Sends a chat request to the provider with a sequence of messages and tools.
inherited
-
getSupportedAudioFormats(
) → List< String> -
Get supported input/output audio formats
inherited
-
getSupportedLanguages(
) → Future< List< LanguageInfo> > -
Get supported languages for transcription and translation
inherited
-
getVoices(
) → Future< List< VoiceInfo> > -
Get available voices for this provider
inherited
-
memoryContents(
) → Future< List< ChatMessage> ?> -
Get current memory contents if provider supports memory
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
speech(
String text) → Future< List< int> > -
Simple text-to-speech conversion (convenience method)
inherited
-
speechStream(
String text) → Stream< List< int> > -
Simple streaming text-to-speech conversion (convenience method)
inherited
-
speechToText(
STTRequest request) → Future< STTResponse> -
Convert speech to text with full configuration support
inherited
-
startRealtimeSession(
RealtimeAudioConfig config) → Future< RealtimeAudioSession> -
Create and start a real-time audio session
inherited
-
summarizeHistory(
List< ChatMessage> messages) → Future<String> -
Summarizes a conversation history into a concise 2-3 sentence summary
inherited
-
supports(
LLMCapability capability) → bool -
Check if this provider supports a specific capability
inherited
-
textToSpeech(
TTSRequest request) → Future< TTSResponse> -
Convert text to speech with full configuration support
inherited
-
textToSpeechStream(
TTSRequest request) → Stream< AudioStreamEvent> -
Convert text to speech with streaming output
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
transcribe(
List< int> audio) → Future<String> -
Simple audio transcription (convenience method)
inherited
-
transcribeFile(
String filePath) → Future< String> -
Simple file transcription (convenience method)
inherited
-
translate(
List< int> audio) → Future<String> -
Simple audio translation (convenience method)
inherited
-
translateAudio(
AudioTranslationRequest request) → Future< STTResponse> -
Translate audio to English text
inherited
-
translateFile(
String filePath) → Future< String> -
Simple file translation (convenience method)
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited