feat: log more details of image

This commit is contained in:
max_richter 2023-11-23 13:02:39 +01:00
parent eaab1bfc8d
commit 2da2e10259

View File

@ -45,7 +45,7 @@ export async function generateImage(prompt: string, negativePrompt: string) {
const responseJSON = await response.json();
console.log({ responseJSON })
console.log(responseJSON.artifacts[0])
return responseJSON.artifacts[0];
}