管理你创建的开发者智能体,提交审核后上架到应用市场
curl -X POST http://localhost:33789/api/chat/send \
-H "Authorization: Bearer isctop…_key" \
-H "Content-Type: application/json" \
-d '{"content": "Hello", "model_name": "gpt-5.5"}'
// 1. 生成 API 密钥 → 开发区
// 2. 创建智能体时绑定密钥
// 3. 用户调用自动计费 → 你获得分成
POST /api/developer/agents
{
"name": "我的智能体",
"description": "...",
"category": "chat",
"system_prompt": "你是个...",
"knowledge_base_id": 1
}