소스 검색

fix linter

Michael Yang 3 달 전
부모
커밋
b21482e4a9
2개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 1
      convert/convert_qwen2.go
  2. 1 1
      llm/server.go

+ 0 - 1
convert/convert_qwen2.go

@@ -2,7 +2,6 @@ package convert
 
 import "github.com/ollama/ollama/fs/ggml"
 
-
 type qwen2Model struct {
 	ModelParameters
 	MaxPositionEmbeddings uint32  `json:"max_position_embeddings"`

+ 1 - 1
llm/server.go

@@ -28,8 +28,8 @@ import (
 	"github.com/ollama/ollama/discover"
 	"github.com/ollama/ollama/envconfig"
 	"github.com/ollama/ollama/format"
-	"github.com/ollama/ollama/llama"
 	"github.com/ollama/ollama/fs/ggml"
+	"github.com/ollama/ollama/llama"
 )
 
 type LlamaServer interface {