3d / client /src /api.ts
hologramicon's picture
Upload 19 files
1b5663e verified
raw
history blame contribute delete
209 Bytes
export async function generate(prompt:string){
const res = await fetch('/api/generate',{ method:'POST', headers:{'Content-Type':'application/json'}, body: JSON.stringify({ prompt }) })
return res.json()
}