perf: token count

This commit is contained in:
archer
2023-06-14 20:02:43 +08:00
parent 8036ed6143
commit e4aeee7be3
5 changed files with 16 additions and 12 deletions

View File

@@ -24,7 +24,7 @@ export const claudChat = async ({ apiKey, messages, stream, chatId }: ChatComple
headers: {
Authorization: apiKey
},
timeout: stream ? 60000 : 240000,
timeout: stream ? 60000 : 480000,
responseType: stream ? 'stream' : 'json'
}
);

View File

@@ -42,7 +42,7 @@ export const chatResponse = async ({
stop: ['.!?。']
},
{
timeout: stream ? 60000 : 240000,
timeout: stream ? 60000 : 480000,
responseType: stream ? 'stream' : 'json',
...axiosConfig(apiKey)
}