| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
The `rope_scaling_type` and `yarn_*` server settings had no `description=`, so they rendered blank in `python -m llama_cpp.server --help` and in the auto-generated server settings reference (cli.py forwards `field.description` to argparse `help=`). Fill in accurate descriptions. Addresses abetlen#635
| Back | FazBrowse Home | New Git URL |
Addresses #635
The rope_scaling_type and yarn_* fields in llama_cpp/server/settings.py had no description=, so they showed up blank in both:
llama_cpp/server/cli.py forwards field.description straight into argparse help= (add_args_from_model), so filling these in fixes the CLI help and the rendered docs in one change.
Fields filled
rope_scaling_type, yarn_ext_factor, yarn_attn_factor, yarn_beta_fast, yarn_beta_slow, yarn_orig_ctx — wording mirrors llama.cpp's own RoPE/YaRN parameter help.
No behavior change; metadata only.