wireString property

String get wireString

Implementation

String get wireString {
  switch (this) {
    case SDKComponent.SDK_COMPONENT_UNSPECIFIED:
      return 'unspecified';
    case SDKComponent.SDK_COMPONENT_STT:
      return 'stt';
    case SDKComponent.SDK_COMPONENT_TTS:
      return 'tts';
    case SDKComponent.SDK_COMPONENT_VAD:
      return 'vad';
    case SDKComponent.SDK_COMPONENT_LLM:
      return 'llm';
    case SDKComponent.SDK_COMPONENT_VLM:
      return 'vlm';
    case SDKComponent.SDK_COMPONENT_DIFFUSION:
      return 'diffusion';
    case SDKComponent.SDK_COMPONENT_RAG:
      return 'rag';
    case SDKComponent.SDK_COMPONENT_EMBEDDINGS:
      return 'embeddings';
    case SDKComponent.SDK_COMPONENT_VOICE_AGENT:
      return 'voice_agent';
    case SDKComponent.SDK_COMPONENT_WAKEWORD:
      return 'wakeword';
    case SDKComponent.SDK_COMPONENT_SPEAKER_DIARIZATION:
      return 'speaker_diarization';
    case SDKComponent.SDK_COMPONENT_SEMANTIC_SEGMENTATION:
      return 'semantic_segmentation';
    case SDKComponent.SDK_COMPONENT_RERANK:
      return 'rerank';
  }
  return '';
}