[PR #3739] [CLOSED] draft: push #11269

Closed
opened 2026-04-12 23:26:12 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/3739
Author: @mxyng
Created: 4/19/2024
Status: Closed

Base: mxyng/modelname-4Head: mxyng/push


📝 Commits (8)

  • 9b4aff8 quantize any fp16/fp32 model
  • 9e27e8f update tests
  • 7d62b73 update copy to use model.Name
  • 991dedd update list handler to use model.Name
  • fdee756 update delete handler to use model.Name
  • b49dea6 use manifests iter for list
  • a94c401 update create handler to use model.Name
  • 9efdf02 draft: push

📊 Changes

19 files changed (+1106 additions, -932 deletions)

View changed files

📝 cmd/cmd.go (+1 -1)
📝 convert/convert.go (+2 -1)
📝 convert/gemma.go (+2 -13)
📝 convert/llama.go (+3 -10)
📝 convert/mistral.go (+2 -13)
📝 integration/utils_test.go (+1 -1)
llm/filetype.go (+138 -0)
📝 llm/ggml.go (+18 -77)
📝 llm/llm.go (+4 -52)
📝 server/images.go (+207 -399)
server/layer.go (+116 -0)
server/layers.go (+0 -105)
server/manifest.go (+157 -0)
server/manifests.go (+0 -34)
server/model.go (+253 -0)
📝 server/routes.go (+91 -152)
📝 server/routes_test.go (+22 -26)
📝 server/upload.go (+57 -48)
types/ordered/map.go (+32 -0)

📄 Description

this (experimental) change updates the streaming mechanism for push to use rangefunc over callback

no non-streaming


🔄 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/3739 **Author:** [@mxyng](https://github.com/mxyng) **Created:** 4/19/2024 **Status:** ❌ Closed **Base:** `mxyng/modelname-4` ← **Head:** `mxyng/push` --- ### 📝 Commits (8) - [`9b4aff8`](https://github.com/ollama/ollama/commit/9b4aff8dffb01a497da069fa7625103bdb752471) quantize any fp16/fp32 model - [`9e27e8f`](https://github.com/ollama/ollama/commit/9e27e8f2c12e416d05241ae023d5e9c165b1abac) update tests - [`7d62b73`](https://github.com/ollama/ollama/commit/7d62b7342ac29b1c6db323fa3453fe7809c5c594) update copy to use model.Name - [`991dedd`](https://github.com/ollama/ollama/commit/991dedd7c5a66bd9fbde243d33f1c8695d700d89) update list handler to use model.Name - [`fdee756`](https://github.com/ollama/ollama/commit/fdee756c78064499d8e5c9d29198f45f5ba51b7a) update delete handler to use model.Name - [`b49dea6`](https://github.com/ollama/ollama/commit/b49dea6c244c8472c94d980fc8dff06c95b88f09) use manifests iter for list - [`a94c401`](https://github.com/ollama/ollama/commit/a94c4014c29f6968d44fe7bd159616cb3b7bf3ae) update create handler to use model.Name - [`9efdf02`](https://github.com/ollama/ollama/commit/9efdf02ebb7df56a83d783365895079301744078) draft: push ### 📊 Changes **19 files changed** (+1106 additions, -932 deletions) <details> <summary>View changed files</summary> 📝 `cmd/cmd.go` (+1 -1) 📝 `convert/convert.go` (+2 -1) 📝 `convert/gemma.go` (+2 -13) 📝 `convert/llama.go` (+3 -10) 📝 `convert/mistral.go` (+2 -13) 📝 `integration/utils_test.go` (+1 -1) ➕ `llm/filetype.go` (+138 -0) 📝 `llm/ggml.go` (+18 -77) 📝 `llm/llm.go` (+4 -52) 📝 `server/images.go` (+207 -399) ➕ `server/layer.go` (+116 -0) ➖ `server/layers.go` (+0 -105) ➕ `server/manifest.go` (+157 -0) ➖ `server/manifests.go` (+0 -34) ➕ `server/model.go` (+253 -0) 📝 `server/routes.go` (+91 -152) 📝 `server/routes_test.go` (+22 -26) 📝 `server/upload.go` (+57 -48) ➕ `types/ordered/map.go` (+32 -0) </details> ### 📄 Description this (experimental) change updates the streaming mechanism for push to use rangefunc over callback no non-streaming --- <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-12 23:26:12 -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#11269