const response = await fetch("https://script.google.com/macros/s/AKfycbyDeohM44wFydWe8-grmjhFRF9WIxsWcn0O8mw-HbUD2kXZ4Lfav9PxeMzKL3JXmTlxxA/exec", {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
prompt: "Estimate used price in Pakistan for Redmi Note 13"
})
});
const data = await response.json();
console.log(data);
alert(JSON.stringify(data));
0 Comments