mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
16 lines
379 B
Python
16 lines
379 B
Python
![]() |
from opencompass.models import OpenAISDK
|
||
|
|
||
|
models = [
|
||
|
dict(
|
||
|
abbr='deepseek_r1_api_siliconflow',
|
||
|
type=OpenAISDK,
|
||
|
path='deepseek-ai/DeepSeek-R1',
|
||
|
key='ENV_SILICONFLOW',
|
||
|
openai_api_base='https://api.siliconflow.cn/v1/',
|
||
|
query_per_second=0.1,
|
||
|
max_completion_tokens=8192,
|
||
|
batch_size=1,
|
||
|
verbose=True,
|
||
|
),
|
||
|
]
|