[PR #10347] function Pull off Registry #75512

Open
opened 2026-05-05 07:56:09 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/10347
Author: @pedrolucas167
Created: 4/20/2025
Status: 🔄 Open

Base: build_distHead: refactor-pull


📝 Commits (10+)

  • e185c08 go.mod: Use full version for go 1.24.0
  • 53d2990 model: add bos token if configured
  • 41dc280 server/internal/registry: implement CloseNotify and Flush (for now) (#9402)
  • 3e8b8a1 ml: update Context.Forward interface
  • 8b194b7 kvcache: update tests
  • c245b04 sample: remove transforms from greedy sampling (#9377)
  • 0c1041a runner: default to greedy sampler for performance (#9407)
  • 2099e2d CONTRIBUTING: provide clarity on good commit messages, and bad (#9405)
  • 98d44fa llama: add phi4 mini support (#9403)
  • 25885e5 docs: Add 1Panel to Community Integrations (#9312)

📊 Changes

978 files changed (+700456 additions, -32887 deletions)

View changed files

📝 .dockerignore (+3 -1)
📝 .gitattributes (+24 -1)
📝 .github/ISSUE_TEMPLATE/10_bug_report.yml (+8 -0)
📝 .github/workflows/release.yaml (+353 -354)
📝 .github/workflows/test.yaml (+168 -248)
📝 .gitignore (+5 -4)
.gitmodules (+0 -4)
📝 .golangci.yaml (+15 -8)
.prettierrc.json (+0 -10)
CMakeLists.txt (+133 -0)
CMakePresets.json (+110 -0)
CONTRIBUTING.md (+88 -0)
📝 Dockerfile (+123 -136)
Makefile.sync (+60 -0)
📝 README.md (+255 -63)
SECURITY.md (+25 -0)
📝 api/client.go (+18 -14)
📝 api/client_test.go (+210 -3)
api/examples/README.md (+18 -0)
📝 api/examples/chat/main.go (+1 -1)

...and 80 more files

📄 Description

Pull function enhancement: implementation of optimized parallelism for greater computational efficiency and refinement of error handling with robust recovery mechanisms and detailed logging.


🔄 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/10347 **Author:** [@pedrolucas167](https://github.com/pedrolucas167) **Created:** 4/20/2025 **Status:** 🔄 Open **Base:** `build_dist` ← **Head:** `refactor-pull` --- ### 📝 Commits (10+) - [`e185c08`](https://github.com/ollama/ollama/commit/e185c08ad9c71c82c4bef970a9c1f732e1b68076) go.mod: Use full version for go 1.24.0 - [`53d2990`](https://github.com/ollama/ollama/commit/53d2990d9b60fae08437e98141eca5d9e393deaa) model: add bos token if configured - [`41dc280`](https://github.com/ollama/ollama/commit/41dc280491a7054876e826dac0eff66836d53ae8) server/internal/registry: implement CloseNotify and Flush (for now) (#9402) - [`3e8b8a1`](https://github.com/ollama/ollama/commit/3e8b8a1933378eb62c68bc9269555efd10270e33) ml: update Context.Forward interface - [`8b194b7`](https://github.com/ollama/ollama/commit/8b194b752042198c061f2f53797dfde5f9ac0d88) kvcache: update tests - [`c245b04`](https://github.com/ollama/ollama/commit/c245b0406fd669bc8e3aea4e20148fa303fe2fd4) sample: remove transforms from greedy sampling (#9377) - [`0c1041a`](https://github.com/ollama/ollama/commit/0c1041ad851d2ce3dc4d74d5fedb1af759956688) runner: default to greedy sampler for performance (#9407) - [`2099e2d`](https://github.com/ollama/ollama/commit/2099e2d267735042e17a78981a6992138c86572e) CONTRIBUTING: provide clarity on good commit messages, and bad (#9405) - [`98d44fa`](https://github.com/ollama/ollama/commit/98d44fa39d22c9c6f86fb964dd3bb13a38356371) llama: add phi4 mini support (#9403) - [`25885e5`](https://github.com/ollama/ollama/commit/25885e5335d85c615678bbb683fdc7157c40b9bd) docs: Add 1Panel to Community Integrations (#9312) ### 📊 Changes **978 files changed** (+700456 additions, -32887 deletions) <details> <summary>View changed files</summary> 📝 `.dockerignore` (+3 -1) 📝 `.gitattributes` (+24 -1) 📝 `.github/ISSUE_TEMPLATE/10_bug_report.yml` (+8 -0) 📝 `.github/workflows/release.yaml` (+353 -354) 📝 `.github/workflows/test.yaml` (+168 -248) 📝 `.gitignore` (+5 -4) ➖ `.gitmodules` (+0 -4) 📝 `.golangci.yaml` (+15 -8) ➖ `.prettierrc.json` (+0 -10) ➕ `CMakeLists.txt` (+133 -0) ➕ `CMakePresets.json` (+110 -0) ➕ `CONTRIBUTING.md` (+88 -0) 📝 `Dockerfile` (+123 -136) ➕ `Makefile.sync` (+60 -0) 📝 `README.md` (+255 -63) ➕ `SECURITY.md` (+25 -0) 📝 `api/client.go` (+18 -14) 📝 `api/client_test.go` (+210 -3) ➕ `api/examples/README.md` (+18 -0) 📝 `api/examples/chat/main.go` (+1 -1) _...and 80 more files_ </details> ### 📄 Description Pull function enhancement: implementation of optimized parallelism for greater computational efficiency and refinement of error handling with robust recovery mechanisms and detailed logging. --- <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-05-05 07:56:09 -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#75512