Skip to content

Commit

Permalink
🔧 Update RelevancyThreshold to '0.75' in appsettings.json.
Browse files Browse the repository at this point in the history
  • Loading branch information
teresaqhoang committed Aug 2, 2023
1 parent a4fc2d8 commit c504ff1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webapi/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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).
}
},
//
Expand All @@ -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.
Expand Down

0 comments on commit c504ff1

Please sign in to comment.