Browse Source

feat: AI 文本生成使用 qwen-plus 模型

MyFramework User 5 months ago
parent
commit
3a07d4bbfb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      server/src/modules/ai/ai.controller.ts

+ 1 - 1
server/src/modules/ai/ai.controller.ts

@@ -31,7 +31,7 @@ router.post('/generate', async (ctx: Context) => {
     const response = await axios.post(
       'https://dashscope.aliyuncs.com/api/v1/services/aigc/text-generation/generation',
       {
-        model: 'qwen-turbo',
+        model: 'qwen-plus',
         input: {
           prompt: prompt,
         },