├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── Sakura Launcher GUI 用户手册.md ├── assets ├── PixPin_2024-11-13_02-15-00.png ├── image-20240817190724154.png ├── image-20240817190749367.png ├── image-20240817190801327.png └── image.png ├── data.json ├── icon.ico ├── main.py ├── main.spec ├── main_debug.spec ├── requirements.txt └── src ├── common.py ├── gpu.py ├── llamacpp.py ├── sakura.py ├── sakura_share_api.py ├── sakura_share_cli.py ├── sakura_ws_client.py ├── section_about.py ├── section_download.py ├── section_run_server.py ├── section_settings.py ├── section_share.py ├── setting.py ├── ui.py └── utils ├── __init__.py ├── gpu ├── __init__.py └── nvidia.py ├── model_size_cauculator.py └── windows.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/README.md -------------------------------------------------------------------------------- /Sakura Launcher GUI 用户手册.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/Sakura Launcher GUI 用户手册.md -------------------------------------------------------------------------------- /assets/PixPin_2024-11-13_02-15-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/assets/PixPin_2024-11-13_02-15-00.png -------------------------------------------------------------------------------- /assets/image-20240817190724154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/assets/image-20240817190724154.png -------------------------------------------------------------------------------- /assets/image-20240817190749367.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/assets/image-20240817190749367.png -------------------------------------------------------------------------------- /assets/image-20240817190801327.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/assets/image-20240817190801327.png -------------------------------------------------------------------------------- /assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/assets/image.png -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/data.json -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/icon.ico -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/main.py -------------------------------------------------------------------------------- /main.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/main.spec -------------------------------------------------------------------------------- /main_debug.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/main_debug.spec -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/common.py -------------------------------------------------------------------------------- /src/gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/gpu.py -------------------------------------------------------------------------------- /src/llamacpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/llamacpp.py -------------------------------------------------------------------------------- /src/sakura.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/sakura.py -------------------------------------------------------------------------------- /src/sakura_share_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/sakura_share_api.py -------------------------------------------------------------------------------- /src/sakura_share_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/sakura_share_cli.py -------------------------------------------------------------------------------- /src/sakura_ws_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/sakura_ws_client.py -------------------------------------------------------------------------------- /src/section_about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/section_about.py -------------------------------------------------------------------------------- /src/section_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/section_download.py -------------------------------------------------------------------------------- /src/section_run_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/section_run_server.py -------------------------------------------------------------------------------- /src/section_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/section_settings.py -------------------------------------------------------------------------------- /src/section_share.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/section_share.py -------------------------------------------------------------------------------- /src/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/setting.py -------------------------------------------------------------------------------- /src/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/ui.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/utils/__init__.py -------------------------------------------------------------------------------- /src/utils/gpu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/utils/gpu/__init__.py -------------------------------------------------------------------------------- /src/utils/gpu/nvidia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/utils/gpu/nvidia.py -------------------------------------------------------------------------------- /src/utils/model_size_cauculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/utils/model_size_cauculator.py -------------------------------------------------------------------------------- /src/utils/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI/HEAD/src/utils/windows.py --------------------------------------------------------------------------------