File size: 209 Bytes
1b5663e
 
 
 
1
2
3
4
5
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()
}