chore: remove DashScope placeholder defaults, sync docs, and clean up debug prints - #37
Open
neverbiasu wants to merge 1 commit into
Open
chore: remove DashScope placeholder defaults, sync docs, and clean up debug prints#37neverbiasu wants to merge 1 commit into
neverbiasu wants to merge 1 commit into
Conversation
…mo; remove debug prints
mzhang367
approved these changes
Aug 2, 2026
Author
|
@Boogu-Team Hi, could you review this please. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Nonedefaults across the codebase.DASHSCOPE_API_KEYenvironment variable.Changes
DashScope API key defaults
inference.py,inference_turbo.py: changed--dashscope_api_keyargparse default from"sk-xxxxxxxxxxxxxxxxxxxxxxxxxx"toNone, with an updated help string.boogu/pipelines/boogu/pipeline_boogu.py: changed 4dashscope_api_keyparameter defaults from the placeholder string toNone(type updated toOptional[str]). The existing assertion that rejects the placeholder is preserved.demo_scripts/demo_ti2i_remote_reasoning.sh: replaced the hardcoded placeholder key with a check that readsDASHSCOPE_API_KEYfrom the environment, exiting with a helpful error message if it is not set.Documentation sync
README.md,README_CN.md: fixed--model→--pretrained_pipeline_name_or_path, corrected requirements file naming convention (<torch>-<cuda>.txt), added missing Edit-Turbo download command (CN), and documented the auto-generated conda environment name suffix.INFERENCE_GUIDE.md: added Turbo entry-point mapping (inference.pyfor Base/Edit,inference_turbo.pyfor Turbo/Edit-Turbo) and a minimal Turbo CLI example.Debug cleanup
boogu/schedulers/scheduling_flow_match_euler_discrete_time_shifting.py: removed two commented-out######debug######blocks containing leftoverprintstatements.