[Fix] Enalrge token length of deepseek_v3_api

This commit is contained in:
Hoter Young 2025-03-12 16:48:22 +08:00
parent 20c27b9ec8
commit 4b09860f4a
2 changed files with 4 additions and 4 deletions

View File

@ -8,8 +8,8 @@ models = [
key='ENV_ALIYUN', key='ENV_ALIYUN',
openai_api_base='https://dashscope.aliyuncs.com/compatible-mode/v1', openai_api_base='https://dashscope.aliyuncs.com/compatible-mode/v1',
query_per_second=1, query_per_second=1,
max_out_len=2048, max_out_len=8192,
max_seq_len=4096, max_seq_len=8192,
batch_size=8, batch_size=8,
retry=30, retry=30,
verbose=True, verbose=True,

View File

@ -8,8 +8,8 @@ models = [
key='ENV_SILICONFLOW', key='ENV_SILICONFLOW',
openai_api_base='https://api.siliconflow.cn/v1/', openai_api_base='https://api.siliconflow.cn/v1/',
query_per_second=0.1, query_per_second=0.1,
max_out_len=2048, max_out_len=8192,
max_seq_len=4096, max_seq_len=8192,
batch_size=8, batch_size=8,
verbose=True, verbose=True,
retry=5, retry=5,