import OpenAI from "openai";
const openai = new OpenAI({
apiKey: process.env.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,
});
const response = await openai.responses.create({
model: "gpt-4o",
input: [],
text: {
"format": {
"type": "text"
}
},
reasoning: {},
tools: [],
temperature: 1,
max_output_tokens: 2048,
top_p: 1,
stream: true,
store: true
});