[PR #15861] [MERGED] New models #62030

Closed
opened 2026-04-29 16:59:08 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/15861
Author: @dhiltgen
Created: 4/28/2026
Status: Merged
Merged: 4/28/2026
Merged by: @dhiltgen

Base: mainHead: release_v0.22.0


📝 Commits (10+)

  • 081c1ba mlx: add laguna model support
  • 69c8fdd convert: support fp8 safetensors import
  • 8b062e4 ggml: add laguna model support
  • 80a780a server: preserve generate logprobs with builtin parsers
  • 02376e2 review comments - perf improvements
  • 0f86757 ggml: implement nemotron 3 nano omni
  • 62e83eb add poolside integration
  • 955112e update poolside doc
  • db33ac1 Merge remote-tracking branch 'upstream/main' into launch_combined
  • a3dedef adapt to new cache setup

📊 Changes

62 files changed (+11284 additions, -633 deletions)

View changed files

📝 cmd/launch/integrations_test.go (+47 -3)
📝 cmd/launch/launch.go (+1 -0)
cmd/launch/poolside.go (+51 -0)
cmd/launch/poolside_test.go (+88 -0)
📝 cmd/launch/registry.go (+20 -1)
📝 cmd/launch/runner_exec_only_test.go (+12 -0)
📝 convert/convert.go (+8 -0)
convert/convert_laguna.go (+604 -0)
convert/convert_laguna_test.go (+450 -0)
📝 convert/convert_nemotron_h.go (+409 -0)
📝 convert/convert_nemotron_h_test.go (+310 -0)
📝 convert/reader.go (+4 -2)
📝 convert/reader_safetensors.go (+416 -13)
📝 convert/reader_test.go (+229 -0)
📝 convert/tensor.go (+52 -0)
📝 convert/tensor_test.go (+51 -5)
📝 convert/tokenizer.go (+2 -0)
📝 docs/docs.json (+2 -1)
📝 docs/integrations/index.mdx (+1 -0)
docs/integrations/poolside.mdx (+54 -0)

...and 42 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ollama/ollama/pull/15861 **Author:** [@dhiltgen](https://github.com/dhiltgen) **Created:** 4/28/2026 **Status:** ✅ Merged **Merged:** 4/28/2026 **Merged by:** [@dhiltgen](https://github.com/dhiltgen) **Base:** `main` ← **Head:** `release_v0.22.0` --- ### 📝 Commits (10+) - [`081c1ba`](https://github.com/ollama/ollama/commit/081c1bab722bc869fc8d109d5b8553983795a2e9) mlx: add laguna model support - [`69c8fdd`](https://github.com/ollama/ollama/commit/69c8fdd75502d948fe82622ad8fa4cf31e08c125) convert: support fp8 safetensors import - [`8b062e4`](https://github.com/ollama/ollama/commit/8b062e4c7e429f7bd8a8e4d2199d48aa144ada65) ggml: add laguna model support - [`80a780a`](https://github.com/ollama/ollama/commit/80a780ad269706189c8f7cc12f5aef532f12d4e7) server: preserve generate logprobs with builtin parsers - [`02376e2`](https://github.com/ollama/ollama/commit/02376e20b2cba7eae09c060a486034c3c39c29a5) review comments - perf improvements - [`0f86757`](https://github.com/ollama/ollama/commit/0f8675780ce5d98f3405cc7ff7b2a6dec96a56ea) ggml: implement nemotron 3 nano omni - [`62e83eb`](https://github.com/ollama/ollama/commit/62e83eb18fb7d87b755d922863e1cde9218ded44) add poolside integration - [`955112e`](https://github.com/ollama/ollama/commit/955112e502e34812a904e6392736d8cc40bbb9d9) update poolside doc - [`db33ac1`](https://github.com/ollama/ollama/commit/db33ac10a8db15151f437efe17c3f01910e61aaa) Merge remote-tracking branch 'upstream/main' into launch_combined - [`a3dedef`](https://github.com/ollama/ollama/commit/a3dedef041e22004520d3cba3970a950301ed5d2) adapt to new cache setup ### 📊 Changes **62 files changed** (+11284 additions, -633 deletions) <details> <summary>View changed files</summary> 📝 `cmd/launch/integrations_test.go` (+47 -3) 📝 `cmd/launch/launch.go` (+1 -0) ➕ `cmd/launch/poolside.go` (+51 -0) ➕ `cmd/launch/poolside_test.go` (+88 -0) 📝 `cmd/launch/registry.go` (+20 -1) 📝 `cmd/launch/runner_exec_only_test.go` (+12 -0) 📝 `convert/convert.go` (+8 -0) ➕ `convert/convert_laguna.go` (+604 -0) ➕ `convert/convert_laguna_test.go` (+450 -0) 📝 `convert/convert_nemotron_h.go` (+409 -0) 📝 `convert/convert_nemotron_h_test.go` (+310 -0) 📝 `convert/reader.go` (+4 -2) 📝 `convert/reader_safetensors.go` (+416 -13) 📝 `convert/reader_test.go` (+229 -0) 📝 `convert/tensor.go` (+52 -0) 📝 `convert/tensor_test.go` (+51 -5) 📝 `convert/tokenizer.go` (+2 -0) 📝 `docs/docs.json` (+2 -1) 📝 `docs/integrations/index.mdx` (+1 -0) ➕ `docs/integrations/poolside.mdx` (+54 -0) _...and 42 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-29 16:59:08 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/ollama#62030