$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "queries": [
< "中国企业有哪些开源大语言模型可用于部署?请引用官方资料。"
< ],
< "models": [
< "deepseek/deepseek-v4-flash:online"
< ],
< "brand": "DeepSeek",
< "brandAliases": [],
< "competitors": [
< "Qwen"
< ],
< "language": "zh",
< "stateStoreName": "chinese-ai-search-citation-baseline",
< "comparePrevious": true,
< "maxItems": 1,
< "baseUrl": "https://openrouter.ai/api/v1",
< "model": "deepseek/deepseek-v4-flash",
< "maxOutputTokens": 1200,
< "maxTotalTokens": 40000,
< "temperature": 0.2,
< "maxConcurrency": 1
<}
<EOF
$curl "https://api.apify.com/v2/actors/zinin~chinese-ai-search-citation-analyzer/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'