docs: add Cloud Content Moderation section and clarify async-offload default based on analytics#1240
Conversation
📝 WalkthroughWalkthroughThis PR is a documentation-only update. It adds a new "Content Moderation" section to cloud API overview docs (English, Japanese, Korean, Chinese) explaining moderation policies and Partner Node third-party data handling, and updates async weight offload command guidance in troubleshooting docs (Japanese, Korean, Chinese) to add a disable flag and note default Nvidia GPU enablement. ChangesContent Moderation Documentation
Async Weight Offload Command Docs
No sequence diagram needed here — just docs doing their duty, plain and true! 🚥 Pre-merge checks | ✅ 2✅ Passed checks (2 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
✨ Simplify code
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@zh/troubleshooting/overview.mdx`:
- Around line 80-84: The troubleshooting overview content in the English page is
missing the async offload disable command and the Nvidia default-enabled note.
Update the corresponding section in the troubleshooting overview to match the
Chinese version by including both the “async offload enabled by default on
Nvidia GPU” note and the `--disable-async-offload` command, using the same
section around the troubleshooting commands so the English and Chinese docs stay
in sync.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: ASSERTIVE
Plan: Pro Plus
Run ID: c3e09d6e-0781-4d91-8709-529330e6f300
📒 Files selected for processing (7)
development/cloud/overview.mdxja/development/cloud/overview.mdxja/troubleshooting/overview.mdxko/development/cloud/overview.mdxko/troubleshooting/overview.mdxzh/development/cloud/overview.mdxzh/troubleshooting/overview.mdx
| # 异步权重卸载(Nvidia GPU 上默认启用) | ||
| python main.py --async-offload | ||
|
|
||
| # 禁用异步权重卸载 | ||
| python main.py --disable-async-offload |
There was a problem hiding this comment.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Description: Check if the English troubleshooting doc already has the async offload updates.
# Search for --disable-async-offload in the root-level troubleshooting overview
rg -n 'disable-async-offload' troubleshooting/overview.mdx
# Also check for the Nvidia default-enabled note
rg -n -i 'default.*async.*offload\|async.*offload.*default' troubleshooting/overview.mdxRepository: Comfy-Org/docs
Length of output: 152
🏁 Script executed:
#!/bin/bash
set -euo pipefail
printf '\n## Files named overview.mdx under troubleshooting\n'
git ls-files '*troubleshooting/overview.mdx' || true
printf '\n## Search for async offload references across troubleshooting docs\n'
rg -n -i 'async[- ]offload|disable-async-offload|default.*async.*offload|async.*offload.*default|Nvidia.*default|default.*Nvidia' . --glob '*troubleshooting/overview.mdx' || true
printf '\n## Search for English troubleshooting overview at repo root or nearby\n'
fd -a 'overview.mdx' . | rg 'troubleshooting/overview\.mdx$' || trueRepository: Comfy-Org/docs
Length of output: 733
Sync the English troubleshooting page
troubleshooting/overview.mdx:69 still only has python main.py --async-offload; add the --disable-async-offload command and the Nvidia default-enabled note here too, or split this into a separate English change.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@zh/troubleshooting/overview.mdx` around lines 80 - 84, The troubleshooting
overview content in the English page is missing the async offload disable
command and the Nvidia default-enabled note. Update the corresponding section in
the troubleshooting overview to match the Chinese version by including both the
“async offload enabled by default on Nvidia GPU” note and the
`--disable-async-offload` command, using the same section around the
troubleshooting commands so the English and Chinese docs stay in sync.
Summary
Mintlify AI Assistant analytics revealed users frequently asking about:
Changes
--async-offloadas enabled by default, added command to disableSource
Mintlify AI Assistant analytics data (2026-07-05)
Checklist