From e3ee1cdbe995d63416bae5cabcd2acf73c95735a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Czhangning=E2=80=9D?= Date: Wed, 29 Jul 2026 15:23:05 +0800 Subject: [PATCH] =?UTF-8?q?fix(consts):=20=E6=9B=B4=E6=96=B0=E7=81=AB?= =?UTF-8?q?=E5=B1=B1=E5=BC=95=E6=93=8E=E7=8E=AF=E5=A2=83=E4=B8=8B=E7=9A=84?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E6=A8=A1=E5=9E=8B=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将各默认模型替换为新版模型名称,适配字节跳动云原生AI服务的最新版本 --- veadk/consts.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/veadk/consts.py b/veadk/consts.py index b9a93c19..bb8caf2f 100644 --- a/veadk/consts.py +++ b/veadk/consts.py @@ -79,13 +79,13 @@ provider = os.getenv("CLOUD_PROVIDER") if provider and provider.lower() == "byteplus": - DEFAULT_MODEL_AGENT_NAME = "seed-1-6-250915" + DEFAULT_MODEL_AGENT_NAME = "dola-seed-2-1-turbo-260628" DEFAULT_MODEL_AGENT_API_BASE = "https://ark.ap-southeast.bytepluses.com/api/v3" DEFAULT_IMAGE_EDIT_MODEL_NAME = "seededit-3-0-i2i-250628" DEFAULT_IMAGE_EDIT_MODEL_API_BASE = "https://ark.ap-southeast.bytepluses.com/api/v3" - DEFAULT_VIDEO_MODEL_NAME = "seedance-1-5-pro-251215" + DEFAULT_VIDEO_MODEL_NAME = "dreamina-seedance-2-0-260128" DEFAULT_VIDEO_MODEL_API_BASE = "https://ark.ap-southeast.bytepluses.com/api/v3" - DEFAULT_IMAGE_GENERATE_MODEL_NAME = "seedream-4-5-251128" + DEFAULT_IMAGE_GENERATE_MODEL_NAME = "dola-seedream-5-0-pro-260628" DEFAULT_IMAGE_GENERATE_MODEL_API_BASE = ( "https://ark.ap-southeast.bytepluses.com/api/v3" )