Expo react-native Error: URL.search is not implemented when working with openai.createImage General API discussion – React native
this is my function async function generateImage() { try { const response = await openai.createImage({ prompt: 'a white siamese cat', n: 1, size: '1024x1024', }); console.log(response); } catch (error) { console.error(error); } } i am getting this error when using…