Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.3] - 2026-05-28

### Fixed
- `klingai/kling-v3-omni-v2v` and `kling-v3-omni-v2v-edit`: `video` parameter is a single URL string, not a JSON array of objects. Removed nonexistent `first_frame` / `last_frame` parameters on v2v (upstream `additionalProperties: false` rejects them) and added the missing `keep_audio` boolean on both. Verified end-to-end against `api.mulerouter.ai`; full regression now 33/34 (vs. 25/34 prior).

## [0.4.2] - 2026-05-27

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mulerouter",
"version": "0.4.2",
"version": "0.4.3",
"description": "CLI for MuleRouter/MuleRun multimodal AI APIs — generate images, videos, speech, and music",
"type": "module",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mulerouter/core",
"version": "0.4.2",
"version": "0.4.3",
"description": "Core library for MuleRouter/MuleRun multimodal AI APIs",
"type": "module",
"license": "MIT",
Expand Down
11 changes: 8 additions & 3 deletions packages/core/src/models/klingai/kling-v3-omni-v2v-edit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,16 @@ const endpoint: ModelEndpoint = {
},
{
name: "video",
type: "array",
description:
'Video to edit (JSON array, 1 video). Each: {"video_url":"...","refer_type":"base","keep_original_sound":"no"}',
type: "string",
description: "Video URL to edit (mp4/mov, 3-10s, 720-2160px, ≤200MB)",
required: true,
},
{
name: "keep_audio",
type: "boolean",
description: "Whether to keep the original audio from the video",
default: false,
},
{
name: "images",
type: "array",
Expand Down
16 changes: 6 additions & 10 deletions packages/core/src/models/klingai/kling-v3-omni-v2v.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,16 @@ const endpoint: ModelEndpoint = {
},
{
name: "video",
type: "array",
type: "string",
description:
'Reference video (JSON array, 1 video). Each: {"video_url":"...","refer_type":"feature","keep_original_sound":"no"}',
"Reference video URL (mp4/mov, 3-10s, 720-2160px, ≤200MB). aspect_ratio must be set explicitly when no first_frame is given (runtime requirement).",
required: true,
},
{
name: "first_frame",
type: "string",
description: "First-frame reference image (URL/Base64)",
},
{
name: "last_frame",
type: "string",
description: "Last-frame reference image (requires first_frame)",
name: "keep_audio",
type: "boolean",
description: "Whether to keep the original audio from the reference video",
default: false,
},
{
name: "images",
Expand Down
Loading