ソースを参照

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`,
           `${FASTGPT_API_URL}/v1/chat/completions`,
           {
           {
             messages: chatMessages,
             messages: chatMessages,
-            stream: false,
-            model: 'gpt-3.5-turbo'
+            stream: false
           },
           },
           {
           {
             headers: {
             headers: {
               Authorization: `Bearer ${decrypt(FASTGPT_API_KEY)}`,
               Authorization: `Bearer ${decrypt(FASTGPT_API_KEY)}`,
               'Content-Type': 'application/json'
               'Content-Type': 'application/json'
             },
             },
-            timeout: 30000
+            timeout: 90000
           }
           }
         )
         )