You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: Add Groq Whisper support to SpeechToText component
- Introduced a new speech-to-text provider, Groq Whisper, in both the backend and UI components.
- Updated SpeechToTextType to include GROQ_WHISPER.
- Implemented Groq client integration for audio transcription with customizable model, language, and temperature options.
- Added UI elements for Groq Whisper configuration, including input fields for model, language, and temperature settings.
* turn speech to text none status to false when other was selected
---------
Co-authored-by: Henry <[email protected]>
description: `The STT model to load. Defaults to whisper-large-v3 if left blank.`,
156
+
placeholder: 'whisper-large-v3',
157
+
optional: true
158
+
},
159
+
{
160
+
label: 'Connect Credential',
161
+
name: 'credential',
162
+
type: 'credential',
163
+
credentialNames: ['groqApi']
164
+
},
165
+
{
166
+
label: 'Language',
167
+
name: 'language',
168
+
type: 'string',
169
+
description:
170
+
'The language of the input audio. Supplying the input language in ISO-639-1 format will improve accuracy and latency.',
171
+
placeholder: 'en',
172
+
optional: true
173
+
},
174
+
{
175
+
label: 'Temperature',
176
+
name: 'temperature',
177
+
type: 'number',
178
+
step: 0.1,
179
+
description:
180
+
'The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic.',
0 commit comments