Skip to content

docs: add Cloud content moderation FAQ and clarify memory offloading defaults#1235

Open
lin-bot23 wants to merge 1 commit into
Comfy-Org:mainfrom
lin-bot23:analytics-fix/2026-07-07-cloud-faq-memory-offload
Open

docs: add Cloud content moderation FAQ and clarify memory offloading defaults#1235
lin-bot23 wants to merge 1 commit into
Comfy-Org:mainfrom
lin-bot23:analytics-fix/2026-07-07-cloud-faq-memory-offload

Conversation

@lin-bot23

@lin-bot23 lin-bot23 commented Jul 6, 2026

Copy link
Copy Markdown
Contributor

Summary
Based on Mintlify AI Assistant analytics, users frequently ask:

  1. Does Comfy Cloud have content moderation?
  2. Is memory offloading enabled by default?

Changes

  • EN/ZH: get_started/cloud.mdx — Added content moderation FAQ section
  • EN/ZH/JA/KO: startup-flags.mdx — Clarified default behavior under Nvidia GPU

Source
Mintlify AI Assistant analytics data (2026-07-05)

Checklist

  • English + zh/ja/ko updated
  • PR created by Hermes Agent (bot), do not merge

@coderabbitai

coderabbitai Bot commented Jul 6, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Walkthrough

This PR adds documentation-only content: a note in startup-flags docs (English, Japanese, Korean, Chinese) explaining that Nvidia GPU async-offload and dynamic VRAM are enabled by default, and a new FAQ entry in cloud getting-started docs (English, Chinese) about Comfy Cloud content moderation policies and account suspension risk.

Changes

VRAM Default Behavior Note

Layer / File(s) Summary
VRAM & Memory default note
development/comfyui-server/startup-flags.mdx, ja/development/comfyui-server/startup-flags.mdx, ko/development/comfyui-server/startup-flags.mdx, zh/development/comfyui-server/startup-flags.mdx
Adds a note stating --async-offload and dynamic VRAM are enabled by default on Nvidia GPUs, with automatic model movement between VRAM and CPU RAM requiring no flags.

Cloud Content Moderation FAQ

Layer / File(s) Summary
Content moderation FAQ entry
get_started/cloud.mdx, zh/get_started/cloud.mdx
Adds a FAQ item "Does Comfy Cloud have content moderation?" describing enforcement of content policies, account suspension risk for explicit/prohibited content, and a link to the Comfy Cloud Terms of Service.

No sequence diagram needed here—these edits are purely doc-based, no flow to unwind, just words well-placed. 📄✨

🚥 Pre-merge checks | ✅ 2
✅ Passed checks (2 passed)
Check name Status Explanation
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
✨ Simplify code
  • Create PR with simplified 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.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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 `@get_started/cloud.mdx`:
- Around line 137-140: Update the Terms of Service link in the content about
Comfy Cloud moderation so it points to the actual policy page instead of the
homepage. In the relevant markdown section with the Comfy Cloud Terms of Service
reference, replace the current comfy.org link with the Terms of Service URL and
keep the surrounding wording unchanged.
🪄 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: caa201cf-3e4c-4194-9473-3490b95bd40e

📥 Commits

Reviewing files that changed from the base of the PR and between ab6b0bc and b56d94c.

📒 Files selected for processing (6)
  • development/comfyui-server/startup-flags.mdx
  • get_started/cloud.mdx
  • ja/development/comfyui-server/startup-flags.mdx
  • ko/development/comfyui-server/startup-flags.mdx
  • zh/development/comfyui-server/startup-flags.mdx
  • zh/get_started/cloud.mdx

Comment thread get_started/cloud.mdx
Comment on lines +137 to +140
### Does Comfy Cloud have content moderation?

Yes. Comfy Cloud enforces content policies. Generating explicit or prohibited content may result in account suspension. For questions about what is or is not allowed, see the Comfy Cloud Terms of Service at [comfy.org](https://comfy.org).

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== file excerpt =="
nl -ba get_started/cloud.mdx | sed -n '126,148p'

echo
echo "== comfy.org references =="
rg -n "comfy\.org|Terms of Service|content policies" get_started . -g '!**/node_modules/**' || true

Repository: Comfy-Org/docs

Length of output: 211


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== file excerpt =="
awk 'NR>=126 && NR<=148 {printf "%d:%s\n", NR, $0}' get_started/cloud.mdx

echo
echo "== comfy.org references =="
rg -n "comfy\.org|Terms of Service|content policies|policy page|tos" get_started . -g '!**/node_modules/**' || true

Repository: Comfy-Org/docs

Length of output: 50371


Point the Terms of Service link to the policy page. The current link lands on the homepage. Use the Terms of Service URL instead: https://www.comfy.org/terms-of-service?utm_source=docs.

🤖 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 `@get_started/cloud.mdx` around lines 137 - 140, Update the Terms of Service
link in the content about Comfy Cloud moderation so it points to the actual
policy page instead of the homepage. In the relevant markdown section with the
Comfy Cloud Terms of Service reference, replace the current comfy.org link with
the Terms of Service URL and keep the surrounding wording unchanged.

@lin-bot23 lin-bot23 changed the title docs: 补充 Cloud 内容审核 FAQ 和内存卸载默认行为说明 docs: add Cloud content moderation FAQ and clarify memory offloading defaults Jul 7, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant