const url = 'https://api.asi1.ai/v1/chat/completions';
const headers = {
'Content-Type': 'application/json',
Authorization: `Bearer ${process.env.sk_bb5ab8989c6b4eef976337eeb8773ed8fdba0b7ef3a64642b2ef095f7a5e0d14}`,
};
const data = {
model: 'asi1-mini',
messages: [{ role: 'user', content: 'What is agentic AI?' }],
};
const res = await fetch(url, {
method: 'POST',
headers,
body: JSON.stringify(data),
});
console.log((await res.json()).choices[0].message.content);