From b38409b702767727743f44ac147918f375bfa267 Mon Sep 17 00:00:00 2001 From: OpenRouter SDK Bot Date: Thu, 17 Sep 2026 21:14:04 +0000 Subject: [PATCH] chore: update OpenAPI spec [sdk-bot] --- .speakeasy/in.openapi.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.speakeasy/in.openapi.yaml b/.speakeasy/in.openapi.yaml index 98c75d44..40c9912a 100644 --- a/.speakeasy/in.openapi.yaml +++ b/.speakeasy/in.openapi.yaml @@ -28276,6 +28276,11 @@ components: type: 'array' model: type: 'string' + previous_job_id: + description: 'ID of a completed video job to edit or extend, as returned by the submit response. The new job runs on the same model and endpoint that produced the previous one. Only models that support continuation accept this field.' + example: 'gen-vid-1789493115-a1B2c3D4e5F6g7H8i9J0' + pattern: '^gen-vid-\d+-[0-9A-Za-z]{20}$' + type: 'string' prompt: description: 'Text prompt describing the video to generate. Optional for models that support generating a video from image input alone; required by all other models.' example: 'A serene mountain landscape at sunset' @@ -28333,9 +28338,9 @@ components: type: 'object' VideoGenerationResponse: example: - generation_id: 'gen-xyz789' - id: 'job-abc123' - polling_url: '/api/v1/videos/job-abc123' + generation_id: 'gen-vid-1789480874-Ab3dEf9hIjKlMnOpQrSt' + id: 'gen-vid-1789480874-Ab3dEf9hIjKlMnOpQrSt' + polling_url: '/api/v1/videos/gen-vid-1789480874-Ab3dEf9hIjKlMnOpQrSt' status: 'pending' properties: error: @@ -28344,6 +28349,7 @@ components: description: 'The generation ID associated with this video generation job. Available once the job has been processed.' type: 'string' id: + description: 'The video job ID, in the `gen-vid--<20 alphanumerics>` generation ID format. Pass it as `previous_job_id` to continue the generation.' type: 'string' polling_url: type: 'string'