mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
23 lines
741 B
Python
23 lines
741 B
Python
from opencompass.models import OpenAISDK
|
|
|
|
api_meta_template = dict(round=[
|
|
dict(role='HUMAN', api_role='HUMAN'),
|
|
dict(role='BOT', api_role='BOT', generate=True),
|
|
], )
|
|
|
|
models = [
|
|
dict(
|
|
abbr='o3-mini-2025-01-31',
|
|
type=OpenAISDK,
|
|
path='o3-mini-2025-01-31',
|
|
key=
|
|
'ENV', # The key will be obtained from $OPENAI_API_KEY, but you can write down your key here as well
|
|
openai_proxy_url='ENV',
|
|
verbose=True,
|
|
meta_template=api_meta_template,
|
|
query_per_second=1,
|
|
batch_size=1,
|
|
temperature=1,
|
|
max_completion_tokens=8192), # you can change it for large reasoning inference cost, according to: https://platform.openai.com/docs/guides/reasoning
|
|
]
|