// 用您的 API 金鑰呼叫 LLM 模型
const response = await fetch('https://api.example.com/v1/chat/completions', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
'model': 'gpt-oss:120b',
'messages': [
{ 'role': 'user', 'content': 'Hello, world!' }
]
})
});