1. 17 Jun, 2025 2 commits
  2. 14 Jun, 2025 1 commit
  3. 13 Jun, 2025 3 commits
  4. 12 Jun, 2025 3 commits
  5. 11 Jun, 2025 3 commits
  6. 10 Jun, 2025 1 commit
  7. 09 Jun, 2025 4 commits
  8. 06 Jun, 2025 1 commit
  9. 05 Jun, 2025 2 commits
  10. 04 Jun, 2025 5 commits
  11. 03 Jun, 2025 2 commits
  12. 02 Jun, 2025 3 commits
  13. 30 May, 2025 4 commits
  14. 29 May, 2025 6 commits
    • 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
    • jthomson04's avatar
    • Alec's avatar
      f67dc38b
    • jthomson04's avatar
      3d40a692
    • Graham King's avatar
      feat: Initial Granite support (#1271) · 7d0c9386
      Graham King authored
      - Add Granite to our tokenizer
      - Fix pre-processor to load context length correctly
      - Add strftime_now Jinja function for prompt templates
      - Update llama.cpp
      - Handle trtllm errors when not using trtllm
      
      Support depends on the engine:
      
      - `mistral.rs`, our default engine, doesn't support Granite yet.
      
      - `llama.cpp` does and works very well:
      ```
      dynamo-run out=llamacpp ~/llms/granite-3.3-2b-instruct-Q4_K_M.gguf --context-length 16384
      ```
      
      - `vllm` also works very well:
      ```
      dynamo-run in=http out=vllm ~/llms/granite-3.3-2b-instruct --context-length 16384
      ```
      
      - `sglang` mostly works, but it doesn't catch the stop token, so we do in the HTTP ingress, and log an error. The Text ingress doesn't catch it because I disabled it to make the raw echo engine work. A bit of work to do here.
      
      Closes: #1245 
      7d0c9386
    • Ryan Olson's avatar
      d784877f