Conversation
Provide a launch-only Qt interface for existing Colibri installations and models, including compatibility checks, saved model preferences, CPU/CUDA selection, process controls, and light/dark themes. Include native packaging, runtime notices, platform CI, regression tests, and user documentation.
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.
Colibri's model-specific launch options currently require users to assemble command-line arguments. This adds an optional desktop launcher for people who already have Colibri, Python, and model files installed on Windows or Linux.
Changes
The default command-line installation remains dependency-free. The inference engines and existing Tauri chat client are unchanged. The launcher does not install Colibri, download models, or install drivers.
Validation
python -m unittest discover -s tests/launcher -v— 103 tests each; Windows has 1 Linux-only skip and Linux has 5 Windows-only skips.make --jobs=2 check— passed, including 964 Python tests with 125 feature/platform skips.No real model inference or GPU kernel computation was performed. Compatibility and process tests use local fixtures; installed Colibri metadata, NVIDIA device enumeration, and CUDA device availability/memory queries were also checked. The local v1.11.0 installation needed its matching DeepSeek CUDA library built separately; this PR does not add engine binaries or automatic installation. Linux binaries target Ubuntu 24.04/glibc 2.39; older distributions can build from source.
Try it
From the Colibri checkout:
python -m pip install -e ".[launcher]" coli-launcherSee the launcher guide for usage, native packaging, and troubleshooting.