From 1f544bdb6142545e9ffc2081f35e78d5e79f95e8 Mon Sep 17 00:00:00 2001 From: Vincent Young Date: Fri, 19 Apr 2024 03:45:52 -0400 Subject: [PATCH] fix: remove print --- main.go | 1 - 1 file changed, 1 deletion(-) diff --git a/main.go b/main.go index f50e107..652f53c 100644 --- a/main.go +++ b/main.go @@ -68,7 +68,6 @@ func cohereRequest(c *gin.Context, openAIReq OpenAIRequest) { } reqBody, _ := json.Marshal(cohereReq) - fmt.Println(string(reqBody)) req, err := http.NewRequest("POST", "https://api.cohere.ai/v1/chat", bytes.NewBuffer(reqBody)) if err != nil { c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})