Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/goose-server/src/routes/dictation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)"),
Copy link

Copilot AI Feb 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This updates the server-side OpenAPI annotation, but the committed ui/desktop/openapi.json still contains the old "max 25MB" description, so the desktop app (and the OpenAPI up-to-date CI check) will remain out of sync. Regenerate the OpenAPI artifacts (e.g., via the repo’s just generate-openapi / just check-openapi-schema) and commit the updated ui/desktop/openapi.json (and any regenerated client output) so consumers see the 50MB limit.

Suggested change
(status = 413, description = "Audio file too large (max 50MB)"),
(status = 413, description = "Audio file too large (max 25MB)"),

Copilot uses AI. Check for mistakes.
(status = 429, description = "Rate limit exceeded"),
(status = 500, description = "Internal server error"),
(status = 502, description = "Provider API error"),
Expand Down
Loading