From 292d63b0702c2414f541fbabf4e59f1049036090 Mon Sep 17 00:00:00 2001 From: ucloudnb666 Date: Fri, 22 May 2026 17:38:47 +0800 Subject: [PATCH] feat: add Astraflow provider support Signed-off-by: ucloudnb666 --- packages/shared/src/constants/chatbots.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages/shared/src/constants/chatbots.ts b/packages/shared/src/constants/chatbots.ts index e7a9e2c46..7c08d139a 100644 --- a/packages/shared/src/constants/chatbots.ts +++ b/packages/shared/src/constants/chatbots.ts @@ -52,6 +52,22 @@ export const CHATBOTS = { } } } as Chatbot, + Astraflow: { + url: 'https://astraflow.ucloud-global.com', + supports_custom_temperature: true, + supports_custom_top_p: true, + supports_system_instructions: true, + supports_user_provided_model: true, + default_system_instructions: "You're a helpful coding assistant." + } as Chatbot, + 'Astraflow CN': { + url: 'https://astraflow.ucloud.cn', + supports_custom_temperature: true, + supports_custom_top_p: true, + supports_system_instructions: true, + supports_user_provided_model: true, + default_system_instructions: "You're a helpful coding assistant." + } as Chatbot, Arena: { url: 'https://arena.ai/', supports_user_provided_model: true