diff --git a/llm/service/custom_llm.go b/llm/service/custom_llm.go index 9f80305..5f1a124 100644 --- a/llm/service/custom_llm.go +++ b/llm/service/custom_llm.go @@ -314,8 +314,6 @@ func (c *customSvc) generateRunbookTitleAndDescriptions(ctx context.Context, com return nil, err } - fmt.Println(buf.String()) - prompt := openai.ChatCompletionMessage{ Role: openai.ChatMessageRoleSystem, Content: buf.String(), @@ -366,11 +364,6 @@ func (c *customSvc) generateRunbookTitleAndDescriptions(ctx context.Context, com if len(msg) == 0 { return nil, fmt.Errorf("Completion error: len(msg): %v\n", len(msg)) } - fmt.Println(string(msg)) - - if refusal := chatResponse.Choices[0].Message.Refusal; refusal != "" { - fmt.Println("Refusal:", refusal) - } var runbook llm.Runbook if err := json.Unmarshal([]byte(msg), &runbook); err != nil {