feat: expand novel IP and production workflows
This commit is contained in:
+22
@@ -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');
|
||||
Reference in New Issue
Block a user