const response = await fetch('https://api.electronhub.ai/v1/responses', { method: 'POST', headers: { 'Authorization': 'Bearer YOUR_API_KEY', 'Content-Type': 'application/json' }, body: JSON.stringify({ model: 'gpt-4o', input: 'Write a short story about a robot:', instructions: 'Write in a creative and engaging style', max_output_tokens: 500, temperature: 0.7 })});const data = await response.json();console.log(data);