[PR #14331] [CLOSED] Update ollama #76919

Closed
opened 2026-05-05 09:38:37 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/14331
Author: @Gulianrdgd
Created: 2/20/2026
Status: Closed

Base: mainHead: update_ollama


📝 Commits (10+)

  • 7015fce feat: Added support for llama.cpp RPC
  • c234eea doc: Added documentation for distributed inferencing
  • bf80325 feat: Added Memory Check for RPC Servers
  • ed78baa feat: Added option to change RPC servers in HTTP options
  • 4f76c4b doc: Added docs for new API options
  • 056bd69 doc: Updated request for changing RPC server to be generate instead of chat
  • b177dcf Merge remote-tracking branch 'upstream/main' into feat/rpc
  • 8068cd1 Merge remote-tracking branch 'upstream/main' into feat/rpc
  • ca5c567 server/sched.go: Fixed missing legacy gpu module
  • f645eec dicover/gpu.go: Updated RPC communication to support new protocol

📊 Changes

51 files changed (+5024 additions, -138 deletions)

View changed files

.github/workflows/release_framework.yaml (+112 -0)
📝 CMakeLists.txt (+4 -0)
📝 Dockerfile (+77 -10)
📝 README.md (+59 -0)
📝 api/types.go (+2 -0)
📝 cmd/cmd.go (+14 -0)
cmd/rpc_server.go (+48 -0)
discover/gpu_rpc.go (+285 -0)
📝 discover/runner.go (+1 -0)
📝 discover/types.go (+9 -0)
📝 docs/api.md (+4 -2)
docs/distributed_inferencing.md (+37 -0)
📝 docs/import.mdx (+4 -0)
📝 docs/modelfile.mdx (+10 -2)
📝 envconfig/config.go (+3 -0)
📝 fs/ggml/ggml.go (+186 -3)
📝 fs/ggml/gguf.go (+4 -1)
📝 go.mod (+1 -1)
📝 llama/llama.go (+23 -2)
📝 llm/server.go (+130 -28)

...and 31 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/14331 **Author:** [@Gulianrdgd](https://github.com/Gulianrdgd) **Created:** 2/20/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `update_ollama` --- ### 📝 Commits (10+) - [`7015fce`](https://github.com/ollama/ollama/commit/7015fce447687276a10bdd2caefc20614048a6dd) feat: Added support for llama.cpp RPC - [`c234eea`](https://github.com/ollama/ollama/commit/c234eea9ecb54b905ccffdeba551e4bb8cd4c186) doc: Added documentation for distributed inferencing - [`bf80325`](https://github.com/ollama/ollama/commit/bf803251be33e8d4a588caefa49d59a058a04a12) feat: Added Memory Check for RPC Servers - [`ed78baa`](https://github.com/ollama/ollama/commit/ed78baaed7c50eeae5761b0836c70ba1307ded72) feat: Added option to change RPC servers in HTTP options - [`4f76c4b`](https://github.com/ollama/ollama/commit/4f76c4b26e40e76ae6c6208f9287c1773cc3b4a6) doc: Added docs for new API options - [`056bd69`](https://github.com/ollama/ollama/commit/056bd69ed9687c0ebeaf844c2bec23cf4890e91d) doc: Updated request for changing RPC server to be generate instead of chat - [`b177dcf`](https://github.com/ollama/ollama/commit/b177dcf52430b9e0766b6f0d4977d14e39fc6336) Merge remote-tracking branch 'upstream/main' into feat/rpc - [`8068cd1`](https://github.com/ollama/ollama/commit/8068cd10cfb255d9c831c384a4b286ad5275a720) Merge remote-tracking branch 'upstream/main' into feat/rpc - [`ca5c567`](https://github.com/ollama/ollama/commit/ca5c5677be4f7e0faf716cc7fc9f93b69b1edea5) server/sched.go: Fixed missing legacy gpu module - [`f645eec`](https://github.com/ollama/ollama/commit/f645eec1eab25649fe9d8bcf607585bd00cfd253) dicover/gpu.go: Updated RPC communication to support new protocol ### 📊 Changes **51 files changed** (+5024 additions, -138 deletions) <details> <summary>View changed files</summary> ➕ `.github/workflows/release_framework.yaml` (+112 -0) 📝 `CMakeLists.txt` (+4 -0) 📝 `Dockerfile` (+77 -10) 📝 `README.md` (+59 -0) 📝 `api/types.go` (+2 -0) 📝 `cmd/cmd.go` (+14 -0) ➕ `cmd/rpc_server.go` (+48 -0) ➕ `discover/gpu_rpc.go` (+285 -0) 📝 `discover/runner.go` (+1 -0) 📝 `discover/types.go` (+9 -0) 📝 `docs/api.md` (+4 -2) ➕ `docs/distributed_inferencing.md` (+37 -0) 📝 `docs/import.mdx` (+4 -0) 📝 `docs/modelfile.mdx` (+10 -2) 📝 `envconfig/config.go` (+3 -0) 📝 `fs/ggml/ggml.go` (+186 -3) 📝 `fs/ggml/gguf.go` (+4 -1) 📝 `go.mod` (+1 -1) 📝 `llama/llama.go` (+23 -2) 📝 `llm/server.go` (+130 -28) _...and 31 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-05-05 09:38:38 -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#76919