[PR #13613] [CLOSED] Claude/fork ollama modifications e nh9 g #24835

Closed
opened 2026-04-19 17:50:08 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/13613
Author: @VagariesOfFate
Created: 1/3/2026
Status: Closed

Base: mainHead: claude/fork-ollama-modifications-eNH9G


📝 Commits (5)

  • af2bbf4 feat: add SQLite backend for relational model storage
  • 12b41d7 feat: implement SQLite tensor loading and training updates
  • be28fc8 feat: add TokenEncoder interface to bypass vocabulary map preloading
  • 7c4719c feat: add multi-database manager and activity sessions
  • fe4ae63 docs: update README for SmartLlama fork

📊 Changes

12 files changed (+2844 additions, -568 deletions)

View changed files

📝 README.md (+61 -568)
fs/sqlite/manager.go (+297 -0)
fs/sqlite/model.go (+312 -0)
fs/sqlite/query.go (+344 -0)
fs/sqlite/session.go (+295 -0)
fs/sqlite/sqlite.go (+545 -0)
fs/sqlite/vocabulary.go (+179 -0)
📝 ml/backend.go (+9 -0)
ml/backend/ggml/datasource.go (+94 -0)
ml/backend/ggml/datasource_sqlite.go (+341 -0)
ml/backend/sqlite/sqlite.go (+333 -0)
📝 model/vocabulary.go (+34 -0)

📄 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/13613 **Author:** [@VagariesOfFate](https://github.com/VagariesOfFate) **Created:** 1/3/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `claude/fork-ollama-modifications-eNH9G` --- ### 📝 Commits (5) - [`af2bbf4`](https://github.com/ollama/ollama/commit/af2bbf45f80e9741212fed98dbc2cbd45476e27f) feat: add SQLite backend for relational model storage - [`12b41d7`](https://github.com/ollama/ollama/commit/12b41d7e6c26ccffb4bbfd63b8a3b686f6e8b25b) feat: implement SQLite tensor loading and training updates - [`be28fc8`](https://github.com/ollama/ollama/commit/be28fc850c3a1e7f8e3d7934ef89ab862189c0d2) feat: add TokenEncoder interface to bypass vocabulary map preloading - [`7c4719c`](https://github.com/ollama/ollama/commit/7c4719c82dc99713b94170bf4222b02c336e9da9) feat: add multi-database manager and activity sessions - [`fe4ae63`](https://github.com/ollama/ollama/commit/fe4ae63b06c607e98fa59d7b4e2187568bebba23) docs: update README for SmartLlama fork ### 📊 Changes **12 files changed** (+2844 additions, -568 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+61 -568) ➕ `fs/sqlite/manager.go` (+297 -0) ➕ `fs/sqlite/model.go` (+312 -0) ➕ `fs/sqlite/query.go` (+344 -0) ➕ `fs/sqlite/session.go` (+295 -0) ➕ `fs/sqlite/sqlite.go` (+545 -0) ➕ `fs/sqlite/vocabulary.go` (+179 -0) 📝 `ml/backend.go` (+9 -0) ➕ `ml/backend/ggml/datasource.go` (+94 -0) ➕ `ml/backend/ggml/datasource_sqlite.go` (+341 -0) ➕ `ml/backend/sqlite/sqlite.go` (+333 -0) 📝 `model/vocabulary.go` (+34 -0) </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-19 17:50: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#24835