mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-05 08:10:14 +00:00
fix: Add 'none' option to sttProvider enum in global-settings
This fixes TypeScript compilation error in web-evals app
This commit is contained in:
parent
f33d9ba2bd
commit
06b6ceeaa8
1 changed files with 1 additions and 1 deletions
|
|
@ -182,7 +182,7 @@ export const globalSettingsSchema = z.object({
|
|||
|
||||
// Speech-to-Text settings
|
||||
sttEnabled: z.boolean().optional(),
|
||||
sttProvider: z.enum(["assemblyai", "openai-whisper"]).optional(),
|
||||
sttProvider: z.enum(["assemblyai", "openai-whisper", "none"]).optional(),
|
||||
sttAutoStopTimeout: z.number().min(500).max(10000).optional(), // milliseconds
|
||||
sttAutoSend: z.boolean().optional(),
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue