xxxxxxxxxx
27
const apiKey = "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"; // Replace with your API key
async function testAPI() {
try {
const response = await fetch("https://api.openai.com/v1/completions", {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${apiKey}`,
},
body: JSON.stringify({
model: "gpt-4",
prompt: "Hello, how are you?",
max_tokens: 50,
temperature: 0.7,
}),
});
const data = await response.json();
console.log("API Response:", data.choices[0].text.trim());
} catch (error) {
console.error("Error with GPT-4:", error);
}
}
testAPI();