From cedc34e14905aa2d94ceeaf5e8c4e173e29c8be9 Mon Sep 17 00:00:00 2001 From: Mmadu Manasseh Date: Mon, 23 Oct 2023 16:59:02 +0100 Subject: [PATCH] Update OpenAI GPT4 model (#72) --- pkg/aisummary/diff_summary.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/aisummary/diff_summary.go b/pkg/aisummary/diff_summary.go index efab1bd4..1eefb67d 100644 --- a/pkg/aisummary/diff_summary.go +++ b/pkg/aisummary/diff_summary.go @@ -15,7 +15,7 @@ func (c *OpenAiClient) SummarizeDiff(ctx context.Context, appName string, manife ctx, span := otel.Tracer("Kubechecks").Start(ctx, "SummarizeDiff") defer span.End() - model := openai.GPT40314 + model := openai.GPT4 if len(diff) < 3500 { model = openai.GPT3Dot5Turbo }