소스 검색

fix error detection by limiting model loading error parsing (#5472)

Jeffrey Morgan 10 달 전
부모
커밋
4d71c559b2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      llm/status.go

+ 1 - 1
llm/status.go

@@ -25,7 +25,7 @@ var errorPrefixes = []string{
 	"CUDA error",
 	"cudaMalloc failed",
 	"\"ERR\"",
-	"architecture",
+	"error loading model",
 }
 
 func (w *StatusWriter) Write(b []byte) (int, error) {