Run in Apifox
価格:入力 1.5 PTC/M 出力 3PTC/M Request Body Params application/json
{
"model" : "unifuncs-deepresearch" ,
"messages" : [
{
"role" : "user" ,
"content" : "调研ANP协议"
}
] ,
"stream" : true ,
"introduction" : "您是 U深研,一个由 UniFuncs 自主研发的专注于网络信息深度研究(Deep Research)的专家。" ,
"plan_approval" : false ,
"max_depth" : 25 ,
"output_type" : "report" ,
"output_length" : 10000 ,
"reference_style" : "link" ,
"content_verification" : false
}
Request Code Samples
curl --location --request POST 'https://api.302.ai/v1/chat/completions?async=true' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer sk-mfYQzy0XTFfz4P16vRE4gFrKK1Nly4TozsMqbbb9PSiJUvFO' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "unifuncs-deepresearch",
"messages": [
{
"role": "user",
"content": "调研ANP协议"
}
],
"stream": true,
"introduction": "您是 U深研,一个由 UniFuncs 自主研发的专注于网络信息深度研究(Deep Research)的专家。",
"plan_approval": false,
"max_depth": 25,
"output_type": "report",
"output_length": 10000,
"reference_style": "link",
"content_verification": false
}'
Responses application/json Generate Code
{
"id" : "chatcmpl-123" ,
"object" : "chat.completion" ,
"created" : 1677652288 ,
"choices" : [
{
"index" : 0 ,
"message" : {
"role" : "assistant" ,
"content" : "\n\nHello there, how may I assist you today?"
} ,
"finish_reason" : "stop"
}
] ,
"usage" : {
"prompt_tokens" : 9 ,
"completion_tokens" : 12 ,
"total_tokens" : 21
}
}
Modified at 2025-07-31 08:41:40