1. 24 Jun, 2025 4 commits
  2. 21 Jun, 2025 1 commit
  3. 17 Jun, 2025 2 commits
  4. 14 Jun, 2025 1 commit
  5. 13 Jun, 2025 3 commits
  6. 12 Jun, 2025 3 commits
  7. 11 Jun, 2025 3 commits
  8. 10 Jun, 2025 1 commit
  9. 09 Jun, 2025 4 commits
  10. 06 Jun, 2025 1 commit
  11. 05 Jun, 2025 2 commits
  12. 04 Jun, 2025 5 commits
  13. 03 Jun, 2025 2 commits
  14. 02 Jun, 2025 3 commits
  15. 30 May, 2025 4 commits
  16. 29 May, 2025 1 commit
    • Graham King's avatar
      feat(dynamo-run): Use llama.cpp as the default engine for GGUF (#1276) · 3e3c3b10
      Graham King authored
      Previously `mistral.rs` was the default engine for both safetensors and GGUF models. Now it is only the default for safetensors, `llama.cpp` becomes the default for GGUF.
      
      Why?
      
      - Since #1177 `llama.cpp` is built-in by default, so we can switch.
      - `llama.cpp` is very very good at running GGUF (but can't run other types of model), so we should switch.
      
      Dynamo's multi-engine support gives us a secret super-power: we can use the best engine for this specific format or model.
      
      We can still run GGUF with mistralrs by doing `out=mistralrs`.
      3e3c3b10