├── LICENSE ├── README.md ├── config.py ├── docs └── pics │ ├── image.png │ ├── logo.png │ ├── pipeline.png │ ├── result.png │ ├── 修改配置.png │ ├── 删除模型.png │ ├── 注册模型.png │ └── 配置详情.png ├── main.py ├── requirements.txt ├── server ├── server.py ├── service │ ├── apis │ │ ├── chat.py │ │ ├── login.py │ │ └── vote.py │ ├── chatbots │ │ ├── __init__.py │ │ ├── baize.py │ │ ├── base │ │ │ ├── __init__.py │ │ │ ├── chatbot_base.py │ │ │ └── transformersbot_base.py │ │ ├── belle.py │ │ ├── chatglm.py │ │ ├── chatglm2.py │ │ ├── fastchat-t5.py │ │ ├── fastchat.py │ │ ├── firefly.py │ │ ├── generate_configs │ │ │ ├── baize_config.py │ │ │ ├── belle_config.py │ │ │ ├── chatglm2_config.py │ │ │ ├── chatglm_config.py │ │ │ ├── fastchat-t5_config.py │ │ │ ├── firefly_config.py │ │ │ ├── godel_config.py │ │ │ ├── moss_config.py │ │ │ ├── stablelm_config.py │ │ │ └── vicuna_config.py │ │ ├── godel.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── chatglm │ │ │ │ ├── __init__.py │ │ │ │ ├── configuration_chatglm.py │ │ │ │ └── modeling_chatglm.py │ │ │ ├── chatglm2 │ │ │ │ ├── __init__.py │ │ │ │ ├── configuration_chatglm.py │ │ │ │ └── modeling_chatglm.py │ │ │ └── moss │ │ │ │ ├── __init__.py │ │ │ │ ├── configuration_moss.py │ │ │ │ └── modeling_moss.py │ │ ├── moss.py │ │ ├── stablelm.py │ │ ├── utils.py │ │ └── vicuna.py │ ├── database │ │ ├── crud │ │ │ ├── debug_table_crud.py │ │ │ ├── dialogue_mess_crud.py │ │ │ ├── generate_config_crud.py │ │ │ ├── user_crud.py │ │ │ └── vote_crud.py │ │ └── models │ │ │ ├── __init__.py │ │ │ ├── debug_table.py │ │ │ ├── dialogue.py │ │ │ ├── generate_config.py │ │ │ ├── user.py │ │ │ ├── utils.py │ │ │ └── vote.py │ └── utils.py └── tools │ └── add_users.py ├── tests └── service │ ├── chatbots │ ├── __pycache__ │ │ ├── config.cpython-38.pyc │ │ ├── test_chatglm2.cpython-38-pytest-7.3.1.pyc │ │ └── test_moss.cpython-38-pytest-7.3.1.pyc │ ├── config.py │ ├── test_chatglm2.py │ └── test_moss.py │ └── database │ ├── test.db │ └── test_connect_db.py ├── tools └── utils.py └── ui ├── .env ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── README.md ├── dist ├── assets │ ├── index-9b1ba8fd.js │ ├── index-bc361f84.css │ ├── index-legacy-dd0e7ef0.js │ └── polyfills-legacy-810fabd1.js └── index.html ├── index.html ├── package-lock.json ├── package.json ├── src ├── App.module.less ├── App.tsx ├── components │ ├── add │ │ ├── add.module.less │ │ └── add.tsx │ ├── annotate │ │ └── annotate.tsx │ ├── banner │ │ ├── banner.module.less │ │ └── banner.tsx │ ├── bottom │ │ ├── bottom.module.less │ │ └── bottom.tsx │ ├── chat │ │ ├── chat.module.less │ │ ├── chat.tsx │ │ └── puyuc.chatbox.style.ts │ ├── color-picker │ │ ├── color-picker.module.less │ │ └── color-picker.tsx │ ├── home │ │ ├── home.module.less │ │ └── home.tsx │ ├── manager │ │ ├── manager.module.less │ │ └── manager.tsx │ ├── mode │ │ ├── mode.module.less │ │ └── mode.tsx │ ├── model │ │ └── model.tsx │ └── newmodel │ │ ├── newmodel.module.less │ │ └── newmodel.tsx ├── index.less ├── index.tsx ├── styles │ ├── fn.less │ ├── theme.less │ └── var.less ├── utils │ ├── axios.ts │ ├── contexts.tsx │ ├── eventBus.tsx │ ├── freezecontext.tsx │ ├── idcontexts.tsx │ ├── modelcontext.tsx │ ├── question.tsx │ ├── router.tsx │ ├── sessionInterface.tsx │ └── tools.ts └── vite-env.d.ts ├── tsconfig.json └── vite.config.ts /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/config.py -------------------------------------------------------------------------------- /docs/pics/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/docs/pics/image.png -------------------------------------------------------------------------------- /docs/pics/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/docs/pics/logo.png -------------------------------------------------------------------------------- /docs/pics/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/docs/pics/pipeline.png -------------------------------------------------------------------------------- /docs/pics/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/docs/pics/result.png -------------------------------------------------------------------------------- /docs/pics/修改配置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/docs/pics/修改配置.png -------------------------------------------------------------------------------- /docs/pics/删除模型.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/docs/pics/删除模型.png -------------------------------------------------------------------------------- /docs/pics/注册模型.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/docs/pics/注册模型.png -------------------------------------------------------------------------------- /docs/pics/配置详情.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/docs/pics/配置详情.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/requirements.txt -------------------------------------------------------------------------------- /server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/server.py -------------------------------------------------------------------------------- /server/service/apis/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/apis/chat.py -------------------------------------------------------------------------------- /server/service/apis/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/apis/login.py -------------------------------------------------------------------------------- /server/service/apis/vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/apis/vote.py -------------------------------------------------------------------------------- /server/service/chatbots/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/__init__.py -------------------------------------------------------------------------------- /server/service/chatbots/baize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/baize.py -------------------------------------------------------------------------------- /server/service/chatbots/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/base/__init__.py -------------------------------------------------------------------------------- /server/service/chatbots/base/chatbot_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/base/chatbot_base.py -------------------------------------------------------------------------------- /server/service/chatbots/base/transformersbot_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/base/transformersbot_base.py -------------------------------------------------------------------------------- /server/service/chatbots/belle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/belle.py -------------------------------------------------------------------------------- /server/service/chatbots/chatglm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/chatglm.py -------------------------------------------------------------------------------- /server/service/chatbots/chatglm2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/chatglm2.py -------------------------------------------------------------------------------- /server/service/chatbots/fastchat-t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/fastchat-t5.py -------------------------------------------------------------------------------- /server/service/chatbots/fastchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/fastchat.py -------------------------------------------------------------------------------- /server/service/chatbots/firefly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/firefly.py -------------------------------------------------------------------------------- /server/service/chatbots/generate_configs/baize_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/generate_configs/baize_config.py -------------------------------------------------------------------------------- /server/service/chatbots/generate_configs/belle_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/generate_configs/belle_config.py -------------------------------------------------------------------------------- /server/service/chatbots/generate_configs/chatglm2_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/generate_configs/chatglm2_config.py -------------------------------------------------------------------------------- /server/service/chatbots/generate_configs/chatglm_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/generate_configs/chatglm_config.py -------------------------------------------------------------------------------- /server/service/chatbots/generate_configs/fastchat-t5_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/generate_configs/fastchat-t5_config.py -------------------------------------------------------------------------------- /server/service/chatbots/generate_configs/firefly_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/generate_configs/firefly_config.py -------------------------------------------------------------------------------- /server/service/chatbots/generate_configs/godel_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/generate_configs/godel_config.py -------------------------------------------------------------------------------- /server/service/chatbots/generate_configs/moss_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/generate_configs/moss_config.py -------------------------------------------------------------------------------- /server/service/chatbots/generate_configs/stablelm_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/generate_configs/stablelm_config.py -------------------------------------------------------------------------------- /server/service/chatbots/generate_configs/vicuna_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/generate_configs/vicuna_config.py -------------------------------------------------------------------------------- /server/service/chatbots/godel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/godel.py -------------------------------------------------------------------------------- /server/service/chatbots/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/models/__init__.py -------------------------------------------------------------------------------- /server/service/chatbots/models/chatglm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/models/chatglm/__init__.py -------------------------------------------------------------------------------- /server/service/chatbots/models/chatglm/configuration_chatglm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/models/chatglm/configuration_chatglm.py -------------------------------------------------------------------------------- /server/service/chatbots/models/chatglm/modeling_chatglm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/models/chatglm/modeling_chatglm.py -------------------------------------------------------------------------------- /server/service/chatbots/models/chatglm2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/models/chatglm2/__init__.py -------------------------------------------------------------------------------- /server/service/chatbots/models/chatglm2/configuration_chatglm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/models/chatglm2/configuration_chatglm.py -------------------------------------------------------------------------------- /server/service/chatbots/models/chatglm2/modeling_chatglm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/models/chatglm2/modeling_chatglm.py -------------------------------------------------------------------------------- /server/service/chatbots/models/moss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/models/moss/__init__.py -------------------------------------------------------------------------------- /server/service/chatbots/models/moss/configuration_moss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/models/moss/configuration_moss.py -------------------------------------------------------------------------------- /server/service/chatbots/models/moss/modeling_moss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/models/moss/modeling_moss.py -------------------------------------------------------------------------------- /server/service/chatbots/moss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/moss.py -------------------------------------------------------------------------------- /server/service/chatbots/stablelm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/stablelm.py -------------------------------------------------------------------------------- /server/service/chatbots/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/utils.py -------------------------------------------------------------------------------- /server/service/chatbots/vicuna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/chatbots/vicuna.py -------------------------------------------------------------------------------- /server/service/database/crud/debug_table_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/database/crud/debug_table_crud.py -------------------------------------------------------------------------------- /server/service/database/crud/dialogue_mess_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/database/crud/dialogue_mess_crud.py -------------------------------------------------------------------------------- /server/service/database/crud/generate_config_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/database/crud/generate_config_crud.py -------------------------------------------------------------------------------- /server/service/database/crud/user_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/database/crud/user_crud.py -------------------------------------------------------------------------------- /server/service/database/crud/vote_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/database/crud/vote_crud.py -------------------------------------------------------------------------------- /server/service/database/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/database/models/__init__.py -------------------------------------------------------------------------------- /server/service/database/models/debug_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/database/models/debug_table.py -------------------------------------------------------------------------------- /server/service/database/models/dialogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/database/models/dialogue.py -------------------------------------------------------------------------------- /server/service/database/models/generate_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/database/models/generate_config.py -------------------------------------------------------------------------------- /server/service/database/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/database/models/user.py -------------------------------------------------------------------------------- /server/service/database/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/database/models/utils.py -------------------------------------------------------------------------------- /server/service/database/models/vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/database/models/vote.py -------------------------------------------------------------------------------- /server/service/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/service/utils.py -------------------------------------------------------------------------------- /server/tools/add_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/server/tools/add_users.py -------------------------------------------------------------------------------- /tests/service/chatbots/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/tests/service/chatbots/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /tests/service/chatbots/__pycache__/test_chatglm2.cpython-38-pytest-7.3.1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/tests/service/chatbots/__pycache__/test_chatglm2.cpython-38-pytest-7.3.1.pyc -------------------------------------------------------------------------------- /tests/service/chatbots/__pycache__/test_moss.cpython-38-pytest-7.3.1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/tests/service/chatbots/__pycache__/test_moss.cpython-38-pytest-7.3.1.pyc -------------------------------------------------------------------------------- /tests/service/chatbots/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/tests/service/chatbots/config.py -------------------------------------------------------------------------------- /tests/service/chatbots/test_chatglm2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/tests/service/chatbots/test_chatglm2.py -------------------------------------------------------------------------------- /tests/service/chatbots/test_moss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/tests/service/chatbots/test_moss.py -------------------------------------------------------------------------------- /tests/service/database/test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/tests/service/database/test.db -------------------------------------------------------------------------------- /tests/service/database/test_connect_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/tests/service/database/test_connect_db.py -------------------------------------------------------------------------------- /tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/tools/utils.py -------------------------------------------------------------------------------- /ui/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/.env -------------------------------------------------------------------------------- /ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/.gitignore -------------------------------------------------------------------------------- /ui/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/.npmrc -------------------------------------------------------------------------------- /ui/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/.prettierignore -------------------------------------------------------------------------------- /ui/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/.prettierrc.json -------------------------------------------------------------------------------- /ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/README.md -------------------------------------------------------------------------------- /ui/dist/assets/index-9b1ba8fd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/dist/assets/index-9b1ba8fd.js -------------------------------------------------------------------------------- /ui/dist/assets/index-bc361f84.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/dist/assets/index-bc361f84.css -------------------------------------------------------------------------------- /ui/dist/assets/index-legacy-dd0e7ef0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/dist/assets/index-legacy-dd0e7ef0.js -------------------------------------------------------------------------------- /ui/dist/assets/polyfills-legacy-810fabd1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/dist/assets/polyfills-legacy-810fabd1.js -------------------------------------------------------------------------------- /ui/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/dist/index.html -------------------------------------------------------------------------------- /ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/index.html -------------------------------------------------------------------------------- /ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/package-lock.json -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/src/App.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/App.module.less -------------------------------------------------------------------------------- /ui/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/App.tsx -------------------------------------------------------------------------------- /ui/src/components/add/add.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/add/add.module.less -------------------------------------------------------------------------------- /ui/src/components/add/add.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/add/add.tsx -------------------------------------------------------------------------------- /ui/src/components/annotate/annotate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/annotate/annotate.tsx -------------------------------------------------------------------------------- /ui/src/components/banner/banner.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/banner/banner.module.less -------------------------------------------------------------------------------- /ui/src/components/banner/banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/banner/banner.tsx -------------------------------------------------------------------------------- /ui/src/components/bottom/bottom.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/bottom/bottom.module.less -------------------------------------------------------------------------------- /ui/src/components/bottom/bottom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/bottom/bottom.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/chat.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/chat/chat.module.less -------------------------------------------------------------------------------- /ui/src/components/chat/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/chat/chat.tsx -------------------------------------------------------------------------------- /ui/src/components/chat/puyuc.chatbox.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/chat/puyuc.chatbox.style.ts -------------------------------------------------------------------------------- /ui/src/components/color-picker/color-picker.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/color-picker/color-picker.module.less -------------------------------------------------------------------------------- /ui/src/components/color-picker/color-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/color-picker/color-picker.tsx -------------------------------------------------------------------------------- /ui/src/components/home/home.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/home/home.module.less -------------------------------------------------------------------------------- /ui/src/components/home/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/home/home.tsx -------------------------------------------------------------------------------- /ui/src/components/manager/manager.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/manager/manager.module.less -------------------------------------------------------------------------------- /ui/src/components/manager/manager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/manager/manager.tsx -------------------------------------------------------------------------------- /ui/src/components/mode/mode.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/mode/mode.module.less -------------------------------------------------------------------------------- /ui/src/components/mode/mode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/mode/mode.tsx -------------------------------------------------------------------------------- /ui/src/components/model/model.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/model/model.tsx -------------------------------------------------------------------------------- /ui/src/components/newmodel/newmodel.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/newmodel/newmodel.module.less -------------------------------------------------------------------------------- /ui/src/components/newmodel/newmodel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/components/newmodel/newmodel.tsx -------------------------------------------------------------------------------- /ui/src/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/index.less -------------------------------------------------------------------------------- /ui/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/index.tsx -------------------------------------------------------------------------------- /ui/src/styles/fn.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/styles/fn.less -------------------------------------------------------------------------------- /ui/src/styles/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/styles/theme.less -------------------------------------------------------------------------------- /ui/src/styles/var.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/styles/var.less -------------------------------------------------------------------------------- /ui/src/utils/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/utils/axios.ts -------------------------------------------------------------------------------- /ui/src/utils/contexts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/utils/contexts.tsx -------------------------------------------------------------------------------- /ui/src/utils/eventBus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/utils/eventBus.tsx -------------------------------------------------------------------------------- /ui/src/utils/freezecontext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/utils/freezecontext.tsx -------------------------------------------------------------------------------- /ui/src/utils/idcontexts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/utils/idcontexts.tsx -------------------------------------------------------------------------------- /ui/src/utils/modelcontext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/utils/modelcontext.tsx -------------------------------------------------------------------------------- /ui/src/utils/question.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/utils/question.tsx -------------------------------------------------------------------------------- /ui/src/utils/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/utils/router.tsx -------------------------------------------------------------------------------- /ui/src/utils/sessionInterface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/utils/sessionInterface.tsx -------------------------------------------------------------------------------- /ui/src/utils/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/src/utils/tools.ts -------------------------------------------------------------------------------- /ui/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/tsconfig.json -------------------------------------------------------------------------------- /ui/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenLMLab/ChatZoo/HEAD/ui/vite.config.ts --------------------------------------------------------------------------------