remove rat (fix image prompt not getting passed)

This commit is contained in:
2026-03-30 13:26:55 -04:00
parent 0003ac29e9
commit 36b164af16

View File

@@ -265,7 +265,7 @@ async def doodlebob(ctx, *, message: str):
await ctx.send(f"**Doodlebob calling drone strike on {image_prompt[:100]}...**") await ctx.send(f"**Doodlebob calling drone strike on {image_prompt[:100]}...**")
image_b64 = llama_wrapper.image_generation( image_b64 = llama_wrapper.image_generation(
prompt=message, prompt=image_prompt,
openai_url=IMAGE_EDIT_ENDPOINT, openai_url=IMAGE_EDIT_ENDPOINT,
openai_api_key=IMAGE_EDIT_ENDPOINT_KEY, openai_api_key=IMAGE_EDIT_ENDPOINT_KEY,
) )