Views
No views yet
saadxsalman/SS-Talk-2-Bash. This format is specifically designed for high-performance inference on CPUs and local hardware using tools like llama.cpp, LM Studio, or Ollama.[CL] token to the command syntax.temperature: 0.0 for consistent, repeatable results.[NL] {Your natural language request here} [CL][NL] find all files larger than 100MB in the current directory [CL]1./llama-cli -m ss-talk-2-bash-q8_0.gguf \
2 -p "[NL] list all files in long format [CL]" \
3 --temp 0 \
4 -n 64 \
5 --stop "[END]"1from llama_cpp import Llama
2
3llm = Llama(model_path="ss-talk-2-bash-q4_k_m.gguf")
4
5prompt = "[NL] list all docker containers [CL]"
6output = llm(prompt, max_tokens=64, temperature=0.0, stop=["[END]"])
7
8print(output['choices'][0]['text'])| Quantization | File Size | Use Case |
|---|---|---|
| Q8_0 | ~370 MB | Recommended. Near-original accuracy. |
| Q4_K_M | ~220 MB | Maximum efficiency for low-end hardware. |
| F16 | ~700 MB | High precision; best for GPU-accelerated GGUF. |
[NL] or [CL] tokens are omitted, performance will degrade significantly.emirkaanozdemr/bash_command_data_6K