gitextract_pm5_9ndz/ ├── .github/ │ └── workflows/ │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── README_EN.md ├── __init__.py ├── autocomplete/ │ ├── .gitignore │ └── autocomplete.txt ├── cpp/ │ ├── llama_cpp_python-0.2.63-cp310-cp310-win_amd64.whl │ ├── llama_cpp_python-0.2.63-cp311-cp311-win_amd64.whl │ ├── llama_cpp_python-0.2.63-cp312-cp312-win_amd64.whl │ └── 如果安装失败请看这.txt ├── group_tags/ │ └── .gitignore ├── i18n.json ├── js/ │ ├── common/ │ │ ├── autocomplete.css │ │ ├── autocomplete.js │ │ ├── modelInfoDialog.css │ │ ├── modelInfoDialog.js │ │ └── utils.js │ ├── modelInfo.js │ ├── weiLinComfyUIPromptNode.js │ ├── weilinComfyUIAutocompleter.js │ └── weilinComfyUIPromptGlobal.js ├── llm_setting.json ├── local_complete_tags/ │ ├── .gitignore │ ├── danbooru-0-zh.csv │ └── 离线翻译cvs文件.txt ├── models/ │ └── LLM模型放置位置.txt ├── prompt_js/ │ └── main.entry.js ├── prompt_static/ │ ├── css/ │ │ ├── autocomplete.css │ │ ├── main.less │ │ └── modelInfoDialog.css │ ├── index.html │ ├── js/ │ │ └── main.js │ └── styles/ │ ├── animate.less │ ├── color_style.css │ ├── dialog_model_info.css │ ├── extensions/ │ │ ├── MyStyle-shuai/ │ │ │ └── manifest.json │ │ ├── Webui/ │ │ │ └── manifest.json │ │ ├── full-input/ │ │ │ ├── manifest.json │ │ │ └── style.less │ │ ├── hide-group-tags-en-text/ │ │ │ ├── manifest.json │ │ │ └── style.less │ │ ├── hide-input-dropdown/ │ │ │ ├── manifest.json │ │ │ └── style.less │ │ ├── hide-tag-btns/ │ │ │ ├── manifest.json │ │ │ └── style.less │ │ ├── hide-tag-btns-blacklist/ │ │ │ ├── manifest.json │ │ │ └── style.less │ │ ├── hide-tag-btns-weight/ │ │ │ ├── manifest.json │ │ │ └── style.less │ │ ├── hide-tag-btns-weight-brackets/ │ │ │ ├── manifest.json │ │ │ └── style.less │ │ ├── hide-tag-extra-network-popup/ │ │ │ ├── manifest.json │ │ │ └── style.less │ │ ├── hide-tag-local/ │ │ │ ├── manifest.json │ │ │ └── style.less │ │ ├── left-input/ │ │ │ ├── manifest.json │ │ │ └── style.less │ │ ├── line-breaks-new-line/ │ │ │ ├── manifest.json │ │ │ └── style.less │ │ ├── minimalist/ │ │ │ ├── manifest.json │ │ │ └── style.less │ │ ├── remove-hide-default-input/ │ │ │ ├── manifest.json │ │ │ └── style.less │ │ ├── setting-btns-top/ │ │ │ ├── manifest.json │ │ │ └── style.less │ │ ├── tag-btns-right/ │ │ │ ├── manifest.json │ │ │ └── style.less │ │ ├── tag-group-tweak/ │ │ │ ├── manifest.json │ │ │ └── style.less │ │ ├── tag-weight-character/ │ │ │ ├── manifest.json │ │ │ └── style.less │ │ └── weaken-keywords/ │ │ ├── manifest.json │ │ └── style.less │ ├── json_index.css │ ├── main.less │ └── tippy.css ├── prompt_storage/ │ └── .gitignore ├── pyproject.toml ├── script/ │ ├── __init__.py │ ├── autocomplete.py │ ├── llm/ │ │ ├── Translator.py │ │ ├── __init__.py │ │ ├── llm.py │ │ └── llmTranslate.py │ ├── llm_server.py │ └── lorainfo.py ├── sd_webui_prompt_all_in_one_app/ │ ├── __init__.py │ ├── app.py │ ├── install.py │ ├── launch.py │ ├── modules/ │ │ ├── __init__.py │ │ ├── extra_networks.py │ │ ├── prompt_parser.py │ │ ├── script_callbacks.py │ │ ├── sd_models.py │ │ ├── shared.py │ │ └── ui_extra_networks.py │ ├── requirements.txt │ └── sd_webui_prompt_all_in_one/ │ ├── __init__.py │ ├── install.py │ ├── scripts/ │ │ ├── __init__.py │ │ ├── on_app_started.py │ │ └── physton_prompt/ │ │ ├── __init__.py │ │ ├── csv.py │ │ ├── gen_openai.py │ │ ├── get_extensions.py │ │ ├── get_extra_networks.py │ │ ├── get_group_tags.py │ │ ├── get_i18n.py │ │ ├── get_lang.py │ │ ├── get_token_counter.py │ │ ├── get_translate_apis.py │ │ ├── get_version.py │ │ ├── history.py │ │ ├── mbart50.py │ │ ├── packages.py │ │ ├── storage.py │ │ ├── styles.py │ │ ├── test.py │ │ ├── translate.py │ │ ├── translator/ │ │ │ ├── __init__.py │ │ │ ├── alibaba_translator.py │ │ │ ├── amazon_translator.py │ │ │ ├── baidu_translator.py │ │ │ ├── base_tanslator.py │ │ │ ├── caiyun_translator.py │ │ │ ├── deepl_translator.py │ │ │ ├── google_tanslator.py │ │ │ ├── iflytekV1_translator.py │ │ │ ├── iflytekV2_translator.py │ │ │ ├── mbart50_translator.py │ │ │ ├── microsoft_translator.py │ │ │ ├── mymemory_translator.py │ │ │ ├── niutrans_translator.py │ │ │ ├── openai_translator.py │ │ │ ├── tencent_translator.py │ │ │ ├── translators_translator.py │ │ │ ├── volcengine_translator.py │ │ │ ├── yandex_translator.py │ │ │ └── youdao_translator.py │ │ └── translators/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── requirements.txt │ │ └── server.py │ ├── style.css │ └── tests/ │ ├── get_lang.py │ ├── get_version.py │ ├── privacy_api_config.py │ ├── translate.py │ ├── translator.py │ └── translators.py ├── templete/ │ ├── de_DE.yaml │ ├── default.yaml │ ├── es_ES.yaml │ ├── fr_FR.yaml │ ├── it_IT.yaml │ ├── ja_JP.yaml │ ├── ko_KR.yaml │ ├── pt_PT.yaml │ ├── ru_RU.yaml │ ├── zh_CN.yaml │ ├── zh_HK.yaml │ └── zh_TW.yaml ├── translate_apis.backup.json └── translate_apis.json