From c504ff1e957365d9b0e1ca29b29ea6902b825ddc Mon Sep 17 00:00:00 2001 From: Teresa Hoang Date: Tue, 1 Aug 2023 22:17:34 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Update=20RelevancyThreshold=20to?= =?UTF-8?q?=20'0.75'=20in=20appsettings.json.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- webapi/appsettings.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapi/appsettings.json b/webapi/appsettings.json index f16144fcf..08d98f74d 100644 --- a/webapi/appsettings.json +++ b/webapi/appsettings.json @@ -43,7 +43,7 @@ "Models": { "Completion": "gpt-35-turbo", // For OpenAI, change to 'gpt-3.5-turbo' (with a period). "Embedding": "text-embedding-ada-002", - "Planner": "gpt-35-turbo" // For OpenAI, change to 'gpt-3.5-turbo' (with a period). + "Planner": "gpt-4" // For OpenAI, change to 'gpt-3.5-turbo' (with a period). } }, // @@ -57,7 +57,7 @@ "Planner": { "Type": "Sequential", // Set RelevancyThreshold to a value >= 0.50 if using the SequentialPlanner with gpt-3.5-turbo. Ignored when Planner:Type is "Action" - "RelevancyThreshold": "", + "RelevancyThreshold": "0.75", // Whether to allow missing functions in the plan on creation then sanitize output. Functions are considered missing if they're not available in the planner's kernel's context. // If set to true, the plan will be created with missing functions as no-op steps that are filtered from the final proposed plan. // If this is set to false, the plan creation will fail if any functions are missing.