mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
17 lines
395 B
Python
17 lines
395 B
Python
from opencompass.models import OpenAISDK
|
|
|
|
models = [
|
|
dict(
|
|
abbr='deepseek_v3_api_siliconflow',
|
|
type=OpenAISDK,
|
|
path='deepseek-ai/DeepSeek-V3',
|
|
key='ENV_SILICONFLOW',
|
|
openai_api_base='https://api.siliconflow.cn/v1/',
|
|
query_per_second=0.1,
|
|
max_out_len=2048,
|
|
max_seq_len=4096,
|
|
batch_size=8,
|
|
verbose=True,
|
|
),
|
|
]
|