Closed derZ-dev closed 6 months ago
nodes.py (2)
33-33: Do not use bare `except` --- 231-231: f-string without any placeholders
nodes.py (3)
`199-199`: Addition of new sampler names to the dictionary. This change correctly expands the sampler name mapping to include 'dpmpp_3m_sde'. Ensure that all references to this new key are consistent across the codebase. --- `216-217`: Modification to append "Exponential" to the sampler name when the scheduler is set to "exponential". The logic to append "Exponential" based on the scheduler type is correctly implemented. Ensure that this naming convention is consistently used wherever the scheduler type is relevant. --- `306-306`: Updated `civitai_sampler_name` assignment to replace `'_gpu'` with an empty string in `sampler_name`. This change ensures cleaner sampler names by removing the '_gpu' suffix where applicable. Verify that this change does not affect any dependencies that might rely on the original `sampler_name` format.
Code looks good, but is there really just 'dpmpp_3m' in Comfy? I only see 'dpmpp_3m_sde' in my up-to-date checkout. Neither does it exist here: https://github.com/civitai/civitai/blob/main/src/server/common/constants.ts#L121-L146
Code looks good, but is there really just 'dpmpp_3m' in Comfy? I only see 'dpmpp_3m_sde' in my up-to-date checkout. Neither does it exist here: https://github.com/civitai/civitai/blob/main/src/server/common/constants.ts#L121-L146
No, you're right. Thanks for the hint. I just assumed there was one and therefore added the key-value-pair. Removed it and updated my main branch.
Looks good, thanks!