mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-21 22:21:33 +00:00
feat(qwen): add qwen provider and video generation
This commit is contained in:
@@ -2573,6 +2573,28 @@ export const GENERATED_BASE_CONFIG_SCHEMA = {
|
||||
},
|
||||
],
|
||||
},
|
||||
videoGenerationModel: {
|
||||
anyOf: [
|
||||
{
|
||||
type: "string",
|
||||
},
|
||||
{
|
||||
type: "object",
|
||||
properties: {
|
||||
primary: {
|
||||
type: "string",
|
||||
},
|
||||
fallbacks: {
|
||||
type: "array",
|
||||
items: {
|
||||
type: "string",
|
||||
},
|
||||
},
|
||||
},
|
||||
additionalProperties: false,
|
||||
},
|
||||
],
|
||||
},
|
||||
pdfModel: {
|
||||
anyOf: [
|
||||
{
|
||||
@@ -22637,6 +22659,16 @@ export const GENERATED_BASE_CONFIG_SCHEMA = {
|
||||
help: "Ordered fallback image-generation models (provider/model).",
|
||||
tags: ["reliability", "media"],
|
||||
},
|
||||
"agents.defaults.videoGenerationModel.primary": {
|
||||
label: "Video Generation Model",
|
||||
help: "Optional video-generation model (provider/model) used by the shared video generation capability.",
|
||||
tags: ["media"],
|
||||
},
|
||||
"agents.defaults.videoGenerationModel.fallbacks": {
|
||||
label: "Video Generation Model Fallbacks",
|
||||
help: "Ordered fallback video-generation models (provider/model).",
|
||||
tags: ["reliability", "media"],
|
||||
},
|
||||
"agents.defaults.pdfModel.primary": {
|
||||
label: "PDF Model",
|
||||
help: "Optional PDF model (provider/model) for the PDF analysis tool. Defaults to imageModel, then session model.",
|
||||
|
||||
Reference in New Issue
Block a user