如有调用问题,通过 Model Link 首页二维码添加工作人员处理
curl --location --request POST 'https://api.modellink.online/v1/chat/completions' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "jimeng-agent",
"messages": [
{
"role": "system",
"content": "你是一个有帮助的助手。"
},
{
"role": "user",
"content": "你好,请介绍一下你自己。"
}
],
"temperature": 0.7,
"max_tokens": 150
}'{}