gitextract_9kyxuu8j/ ├── .github/ │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE/ │ │ ├── config.yml │ │ ├── feature-request.yml │ │ ├── report-bug.yml │ │ ├── report-docker.yml │ │ ├── report-localhost.yml │ │ ├── report-others.yml │ │ └── report-server.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── Build_Docker.yml │ └── Release_docker.yml ├── .gitignore ├── CITATION.cff ├── ChuanhuChatbot.py ├── Dockerfile ├── LICENSE ├── README.md ├── config_example.json ├── configs/ │ └── ds_config_chatbot.json ├── locale/ │ ├── en_US.json │ ├── extract_locale.py │ ├── ja_JP.json │ ├── ko_KR.json │ ├── ru_RU.json │ ├── sv_SE.json │ ├── vi_VN.json │ └── zh_CN.json ├── modules/ │ ├── __init__.py │ ├── config.py │ ├── index_func.py │ ├── models/ │ │ ├── Azure.py │ │ ├── ChatGLM.py │ │ ├── ChuanhuAgent.py │ │ ├── Claude.py │ │ ├── DALLE3.py │ │ ├── ERNIE.py │ │ ├── GoogleGemini.py │ │ ├── GoogleGemma.py │ │ ├── GooglePaLM.py │ │ ├── Groq.py │ │ ├── LLaMA.py │ │ ├── MOSS.py │ │ ├── Ollama.py │ │ ├── OpenAIInstruct.py │ │ ├── OpenAIVision.py │ │ ├── Qwen.py │ │ ├── StableLM.py │ │ ├── XMChat.py │ │ ├── __init__.py │ │ ├── base_model.py │ │ ├── configuration_moss.py │ │ ├── inspurai.py │ │ ├── midjourney.py │ │ ├── minimax.py │ │ ├── modeling_moss.py │ │ ├── models.py │ │ ├── spark.py │ │ └── tokenization_moss.py │ ├── overwrites.py │ ├── pdf_func.py │ ├── presets.py │ ├── repo.py │ ├── shared.py │ ├── train_func.py │ ├── utils.py │ ├── webui.py │ └── webui_locale.py ├── readme/ │ ├── README_en.md │ ├── README_ja.md │ ├── README_ko.md │ └── README_ru.md ├── requirements.txt ├── requirements_advanced.txt ├── run_Linux.sh ├── run_Windows.bat ├── run_macOS.command └── web_assets/ ├── html/ │ ├── appearance_switcher.html │ ├── billing_info.html │ ├── chatbot_header_btn.html │ ├── chatbot_more.html │ ├── chatbot_placeholder.html │ ├── close_btn.html │ ├── footer.html │ ├── func_nav.html │ ├── header_title.html │ ├── update.html │ └── web_config.html ├── javascript/ │ ├── ChuanhuChat.js │ ├── chat-history.js │ ├── chat-list.js │ ├── external-scripts.js │ ├── fake-gradio.js │ ├── file-input.js │ ├── localization.js │ ├── message-button.js │ ├── sliders.js │ ├── updater.js │ ├── user-info.js │ ├── utils.js │ └── webui.js ├── manifest.json └── stylesheet/ ├── ChuanhuChat.css ├── chatbot.css ├── custom-components.css ├── markdown.css └── override-gradio.css