Thanks for asking me to work on this. I will get started on it and keep this PR's description up to date as I form a plan and make progress.
Given a list of LLM models, write a script that can scrape settings for LLM models from hugging face.
Example format of output:
hf.co/unsloth/Qwen3-30B-A3B-Thinking-2507-GGUF: modes: thinking: thinking: true temp: 0.6 top_p: 0.95 top_k: 20 min_p: 0 presence_penalty: 1.5 # ranges from 0 to 2, higher is worse performance repetition_penalty: 1.0 suggested_out_t: 32768 suggested_complex_out_t: 81920 suggested_ctx: 131072 max_ctx: 262144 sources: - https://huggingface.co/unsloth/Qwen3-30B-A3B-Thinking-2507-GGUF - https://qwen.readthedocs.io/en/latest/getting_started/quickstart.html - https://huggingface.co/Qwen/Qwen3-0.6B notes: | Docs suggest standardizing the output format. For multi-turn conversations, remove thinking part of output.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.
Thanks for asking me to work on this. I will get started on it and keep this PR's description up to date as I form a plan and make progress.
> Given a list of LLM models, write a script that can scrape settings for LLM models from hugging face.
>
> Example format of output:
>
> ```
> hf.co/unsloth/Qwen3-30B-A3B-Thinking-2507-GGUF:
> modes:
> thinking:
> thinking: true
> temp: 0.6
> top_p: 0.95
> top_k: 20
> min_p: 0
> presence_penalty: 1.5 # ranges from 0 to 2, higher is worse performance
> repetition_penalty: 1.0
> suggested_out_t: 32768
> suggested_complex_out_t: 81920
> suggested_ctx: 131072
> max_ctx: 262144
> sources:
> - https://huggingface.co/unsloth/Qwen3-30B-A3B-Thinking-2507-GGUF
> - https://qwen.readthedocs.io/en/latest/getting_started/quickstart.html
> - https://huggingface.co/Qwen/Qwen3-0.6B
> notes: |
> Docs suggest standardizing the output format.
> For multi-turn conversations, remove thinking part of output.
> ```
<!-- START COPILOT CODING AGENT TIPS -->
---
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more [Copilot coding agent tips](https://gh.io/copilot-coding-agent-tips) in the docs.