const response = await fetch("https://geoff.ai/api/v1/text/chat", {
method: "POST",
headers: {
Authorization: `Bearer ${GEOFF_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
model: "magma",
messages: [{ role: "user", content: "What is Geoff?" }],
}),
});
const data = await response.json();
console.log(data);