openAIVoices top-level constant

Map<String, List<Map<String, String>>> const openAIVoices

OpenAI TTS voice IDs

Implementation

const Map<String, List<Map<String, String>>> openAIVoices = {
  'male': [
    {'id': 'onyx', 'name': 'Onyx'},
    {'id': 'echo', 'name': 'Echo'},
    {'id': 'fable', 'name': 'Fable'},
  ],
  'female': [
    {'id': 'alloy', 'name': 'Alloy'},
    {'id': 'nova', 'name': 'Nova'},
    {'id': 'shimmer', 'name': 'Shimmer'},
  ],
};