From c44b61942871caed0f5518114d87027f05473cb5 Mon Sep 17 00:00:00 2001 From: Jeffrey Morgan Date: Fri, 3 Nov 2023 17:24:58 -0700 Subject: [PATCH] remove unused `fmt.Println` --- llm/llama.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/llm/llama.go b/llm/llama.go index 4a713f85..f731acf4 100644 --- a/llm/llama.go +++ b/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)