SDBot is a Discord bot that allows users to generate images using Stable Diffusion directly within Discord. It supports multiple API servers, manages user permissions, and handles request queues efficiently.
Creative Commons Attribution Share Alike 4.0 International
0
stars
0
forks
source link
ControlNet integration not functioning as expected in image generation process #3
In commit 5ab381568fdf56a136925c8f16abd6ce6bd12973, the ability to use ControlNet in the generate command was temporarily removed due to persistent issues with its integration.
Current behavior:
ControlNet parameters are not being correctly sent to the API (or may be on the API itself?)
The API does not seem to process ControlNet inputs even when parameters are included
Generated images show no evidence of ControlNet influence
Expected behavior:
ControlNet parameters should be correctly included in the API payload
The API should process these parameters and apply ControlNet to the image generation
Generated images should show clear influence from the ControlNet input
TODO:
Review the ControlNet integration code in StableDiffusionClient.ts
Verify API expectations for ControlNet parameters
Test ControlNet functionality directly with the API to isolate the issue
Update the code to correctly handle and send ControlNet parameters
Implement proper error handling and logging for ControlNet-related issues
Re-enable ControlNet functionality in the generate command once fixed
In commit 5ab381568fdf56a136925c8f16abd6ce6bd12973, the ability to use ControlNet in the generate command was temporarily removed due to persistent issues with its integration.
Current behavior:
Expected behavior:
TODO: