Lower default context size to 3 (#233)

This commit is contained in:
Will Chen
2025-05-22 21:47:22 -07:00
committed by GitHub
parent e119a670ec
commit 9d046834d7
2 changed files with 8 additions and 3 deletions

View File

@@ -19,8 +19,8 @@ const defaultValue = "default";
const options: OptionInfo[] = [
{
value: "3",
label: "Economy (3)",
value: "2",
label: "Economy (2)",
description:
"Minimal context to reduce token usage and improve response times.",
},
@@ -29,6 +29,11 @@ const options: OptionInfo[] = [
label: `Default (${MAX_CHAT_TURNS_IN_CONTEXT}) `,
description: "Balanced context size for most conversations.",
},
{
value: "5",
label: "Plus (5)",
description: "Slightly higher context size for detailed conversations.",
},
{
value: "10",
label: "High (10)",

View File

@@ -1 +1 @@
export const MAX_CHAT_TURNS_IN_CONTEXT = 5;
export const MAX_CHAT_TURNS_IN_CONTEXT = 3;