Duplicated from jbilcke-hf/tikslop
3d4392e 8101ed0 3d4392e
1
2
3
4
5
6
7
export async function generateImage(prompt: string): Promise<string> { const requestUri = `/api/resolvers/image?p=${encodeURIComponent(prompt)}` const res = await fetch(requestUri) const blob = await res.blob() const url = URL.createObjectURL(blob) return url }