diff --git a/crates/goose-server/src/routes/dictation.rs b/crates/goose-server/src/routes/dictation.rs index 8530d2b1c7a0..b4aaf8b71b46 100644 --- a/crates/goose-server/src/routes/dictation.rs +++ b/crates/goose-server/src/routes/dictation.rs @@ -127,7 +127,7 @@ fn convert_error(e: anyhow::Error) -> ErrorResponse { (status = 400, description = "Invalid request (bad base64 or unsupported format)"), (status = 401, description = "Invalid API key"), (status = 412, description = "Provider not configured"), - (status = 413, description = "Audio file too large (max 25MB)"), + (status = 413, description = "Audio file too large (max 50MB)"), (status = 429, description = "Rate limit exceeded"), (status = 500, description = "Internal server error"), (status = 502, description = "Provider API error"), diff --git a/ui/desktop/openapi.json b/ui/desktop/openapi.json index 29188e7d83d8..e5c1410cb0ab 100644 --- a/ui/desktop/openapi.json +++ b/ui/desktop/openapi.json @@ -1767,7 +1767,7 @@ "description": "Provider not configured" }, "413": { - "description": "Audio file too large (max 25MB)" + "description": "Audio file too large (max 50MB)" }, "429": { "description": "Rate limit exceeded" diff --git a/ui/desktop/src/api/types.gen.ts b/ui/desktop/src/api/types.gen.ts index ff0f55047551..4a63d3e31c6d 100644 --- a/ui/desktop/src/api/types.gen.ts +++ b/ui/desktop/src/api/types.gen.ts @@ -2870,7 +2870,7 @@ export type TranscribeDictationErrors = { */ 412: unknown; /** - * Audio file too large (max 25MB) + * Audio file too large (max 50MB) */ 413: unknown; /**