[PR #14573] [CLOSED] Drifkin/cloud opt out #20000

Closed
opened 2026-04-16 07:23:02 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/14573
Author: @drifkin
Created: 3/3/2026
Status: Closed

Base: mainHead: drifkin/cloud-opt-out


📝 Commits (5)

  • cea732d don't require pulling stubs for cloud models
  • 03add3f consolidate pull logic into confirmAndPull helper
  • 1ff3c33 skip local existence checks for cloud models
  • 2e429a7 support optionally pulling stubs for newly-style names
  • 7eb03a5 Fix server alias syncing

📊 Changes

23 files changed (+2749 additions, -108 deletions)

View changed files

📝 cmd/cmd.go (+38 -5)
📝 cmd/cmd_test.go (+171 -3)
📝 cmd/config/claude.go (+6 -11)
📝 cmd/config/config.go (+3 -0)
📝 cmd/config/droid.go (+1 -3)
📝 cmd/config/integrations.go (+22 -31)
📝 cmd/config/integrations_test.go (+131 -8)
📝 cmd/config/opencode.go (+6 -7)
📝 cmd/tui/tui.go (+9 -2)
internal/modelref/modelref.go (+115 -0)
internal/modelref/modelref_test.go (+186 -0)
📝 middleware/anthropic.go (+2 -1)
server/cloud_proxy.go (+457 -0)
server/cloud_proxy_test.go (+154 -0)
📝 server/create.go (+12 -5)
server/model_resolver.go (+73 -0)
server/model_resolver_test.go (+170 -0)
📝 server/routes.go (+123 -27)
📝 server/routes_cloud_test.go (+988 -0)
📝 server/routes_create_test.go (+37 -0)

...and 3 more files

📄 Description

[oops, wrong branch]


🔄 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/14573 **Author:** [@drifkin](https://github.com/drifkin) **Created:** 3/3/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `drifkin/cloud-opt-out` --- ### 📝 Commits (5) - [`cea732d`](https://github.com/ollama/ollama/commit/cea732d89477a4a54bfe548c68e0e2d208a9462d) don't require pulling stubs for cloud models - [`03add3f`](https://github.com/ollama/ollama/commit/03add3fd9e0ef50a696bc282fea08ba99f01a86b) consolidate pull logic into confirmAndPull helper - [`1ff3c33`](https://github.com/ollama/ollama/commit/1ff3c33f7e5fc2fd171c868c4ee3cb27d951601b) skip local existence checks for cloud models - [`2e429a7`](https://github.com/ollama/ollama/commit/2e429a7ffdbfe9284a5b1f79091e62b9e077646c) support optionally pulling stubs for newly-style names - [`7eb03a5`](https://github.com/ollama/ollama/commit/7eb03a59b2eade1932affb6d107fe222c9caa4e2) Fix server alias syncing ### 📊 Changes **23 files changed** (+2749 additions, -108 deletions) <details> <summary>View changed files</summary> 📝 `cmd/cmd.go` (+38 -5) 📝 `cmd/cmd_test.go` (+171 -3) 📝 `cmd/config/claude.go` (+6 -11) 📝 `cmd/config/config.go` (+3 -0) 📝 `cmd/config/droid.go` (+1 -3) 📝 `cmd/config/integrations.go` (+22 -31) 📝 `cmd/config/integrations_test.go` (+131 -8) 📝 `cmd/config/opencode.go` (+6 -7) 📝 `cmd/tui/tui.go` (+9 -2) ➕ `internal/modelref/modelref.go` (+115 -0) ➕ `internal/modelref/modelref_test.go` (+186 -0) 📝 `middleware/anthropic.go` (+2 -1) ➕ `server/cloud_proxy.go` (+457 -0) ➕ `server/cloud_proxy_test.go` (+154 -0) 📝 `server/create.go` (+12 -5) ➕ `server/model_resolver.go` (+73 -0) ➕ `server/model_resolver_test.go` (+170 -0) 📝 `server/routes.go` (+123 -27) 📝 `server/routes_cloud_test.go` (+988 -0) 📝 `server/routes_create_test.go` (+37 -0) _...and 3 more files_ </details> ### 📄 Description [oops, wrong branch] --- <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-16 07:23:02 -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#20000