feat: expand novel IP and production workflows

This commit is contained in:
www
2026-09-18 08:14:05 +02:00
parent b2ae4600b4
commit d9c81a3ac0
235 changed files with 117971 additions and 2721 deletions
@@ -0,0 +1,22 @@
UPDATE `provider_configs`
SET `config_json` = JSON_SET(
`config_json`,
'$.body_style', 'volcengine_content_generation',
'$.create_endpoint', '/contents/generations/tasks',
'$.task_endpoint_template', '/contents/generations/tasks/{task_id}'
)
WHERE `provider_type` = 'VideoProvider'
AND `provider_code` IN ('volcengine_seedance_20_fast', 'volcengine_seedance_20', 'jimeng_seedance');
UPDATE `provider_configs`
SET `config_json` = JSON_REMOVE(
`config_json`,
'$.image_field',
'$.prompt_field',
'$.model_field',
'$.duration_field',
'$.resolution_field',
'$.aspect_ratio_field'
)
WHERE `provider_type` = 'VideoProvider'
AND `provider_code` IN ('volcengine_seedance_20_fast', 'volcengine_seedance_20', 'jimeng_seedance');