浏览代码

Merge branch 'master' of http://192.168.0.115:3000/lanxin/Chengzhebei

lanxin 3 小时之前
父节点
当前提交
7f21a88176
共有 1 个文件被更改,包括 2 次插入3 次删除
  1. 2 3
      src/pages/A9knowlege/components/Chart/index.tsx

+ 2 - 3
src/pages/A9knowlege/components/Chart/index.tsx

@@ -61,15 +61,14 @@ function Chart() {
           `${FASTGPT_API_URL}/v1/chat/completions`,
           {
             messages: chatMessages,
-            stream: false,
-            model: 'gpt-3.5-turbo'
+            stream: false
           },
           {
             headers: {
               Authorization: `Bearer ${decrypt(FASTGPT_API_KEY)}`,
               'Content-Type': 'application/json'
             },
-            timeout: 30000
+            timeout: 90000
           }
         )