?? --status shows the loaded model name; README pick-your-shell - #11
Merged
Conversation
`?? --status` now reads each running tier's loaded GGUF via llama-server's /v1/models endpoint and prints it alongside the URL: up fast → Qwen3.6-35B-A3B-UD-Q4_K_M · http://127.0.0.1:8091 up balanced → Qwen3.6-27B-Q4_K_M · http://127.0.0.1:8080 up smart → Qwen3-Coder-Next-Q4_K_M · http://127.0.0.1:8093 Reading from /v1/models (not from the cache by repo name) means custom `?? --model PATH` starts are reflected accurately, and the display matches what the model would identify itself as. README gains a "Pick your shell" table directly after the install steps, so bash and fish users see they're covered without spelunking through CONFIGURATION.md: zsh → source shellllm.zsh, get the five glyphs bash → source shellllm.bash, get llmc/llmf/llma/llmm fish/ → call shellllm-comma / shellllm-ask / shellllm-recall other directly 264 tests pass; zsh syntax check clean.
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.
Summary
Two small ergonomic improvements that work well together:
`?? --status` shows the running model
Before:
```
up fast → http://127.0.0.1:8091
up balanced → http://127.0.0.1:8080
up smart → http://127.0.0.1:8093
```
After:
```
up fast → Qwen3.6-35B-A3B-UD-Q4_K_M · http://127.0.0.1:8091
up balanced → Qwen3.6-27B-Q4_K_M · http://127.0.0.1:8080
up smart → Qwen3-Coder-Next-Q4_K_M · http://127.0.0.1:8093
```
The model name is read from llama-server's `/v1/models` endpoint (not from the GGUF in cache by tier name), so explicit `?? --model PATH` starts are reflected accurately and the display matches what the model would identify itself as in API responses.
README "Pick your shell" table
Right after the install steps, a compact table tells bash and fish users they're covered without having to spelunk through CONFIGURATION.md:
Test plan