From e638f2acb6af7ef3d4a86567a43196bd895463bd Mon Sep 17 00:00:00 2001 From: Jeffrey Morgan Date: Mon, 13 Oct 2025 13:46:33 -0700 Subject: [PATCH] runner: fix shifting on llama runner (#12604) --- runner/llamarunner/runner.go | 1 + 1 file changed, 1 insertion(+) diff --git a/runner/llamarunner/runner.go b/runner/llamarunner/runner.go index a65040d1..572abdde 100644 --- a/runner/llamarunner/runner.go +++ b/runner/llamarunner/runner.go @@ -162,6 +162,7 @@ func (s *Server) NewSequence(prompt string, images []llm.ImageData, params NewSe embeddingOnly: params.embedding, stop: params.stop, numKeep: params.numKeep, + shift: params.shift, }, nil }