Conversation
- flux controlnet encode_prompt documented a clip_skip parameter that does not exist (copy-paste from SD-style docs; flux has no CLIP layer-skipping) - hunyuan_video1_5 pipelines documented num_images_per_prompt while the parameter is num_videos_per_prompt - kandinsky5 _encode_prompt_qwen/_encode_prompt_clip documented num_videos_per_prompt, which neither method accepts
|
Hi @simpleqt, thanks for the PR! It does not appear to link an issue it fixes. If this PR addresses an existing issue, please add a closing keyword (e.g. Please note that PRs without a linked issue are likely to be automatically closed 10 days after this notice. Once the PR links an issue (or gets the |
|
Closing — pooled into #14715 combined docs PR to reduce review overhead. All fixes are preserved in the combined branch. |
Docstring-only fixes, each verified against the signature directly above it (found via an AST docstring-Args vs signature sweep over
src/diffusers/pipelines):FluxControlNetPipeline.encode_promptdocumented aclip_skipparameter — copy-paste from SD-style docs; flux has no CLIP layer-skipping and the parameter does not exist.HunyuanVideo15Pipeline/...Image2VideoPipeline: the docstring saidnum_images_per_prompt (int)while the parameter isnum_videos_per_prompt.Kandinsky5_encode_prompt_qwen/_encode_prompt_clip: documentednum_videos_per_prompt, which neither helper accepts; removed the stale entries.Docstrings only; no code change.