智能助手7x24自动
// 接入示例
const res = await fetch('https://shanhai-geo.surge.sh/v1/chat/completions', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'auto', // 智能路由,自动选最优引擎
messages: [{ role: 'user', content: '你好' }]
})
});