remove unused fmt.Println

This commit is contained in:
Jeffrey Morgan 2023-11-03 17:24:58 -07:00
parent 17678b7225
commit c44b619428

View file

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