소스 검색

remove unused `fmt.Println`

Jeffrey Morgan 1 년 전
부모
커밋
c44b619428
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      llm/llama.go

+ 0 - 2
llm/llama.go

@@ -529,8 +529,6 @@ func (llm *llama) Predict(ctx context.Context, prevContext []int, prompt string,
 		"stop":              llm.Stop,
 	}
 
-	fmt.Println(request)
-
 	// Handling JSON marshaling with special characters unescaped.
 	buffer := &bytes.Buffer{}
 	enc := json.NewEncoder(buffer)