diff --git a/src/components/MaxChatTurnsSelector.tsx b/src/components/MaxChatTurnsSelector.tsx index d6d0387..571fd54 100644 --- a/src/components/MaxChatTurnsSelector.tsx +++ b/src/components/MaxChatTurnsSelector.tsx @@ -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)", diff --git a/src/constants/settings_constants.ts b/src/constants/settings_constants.ts index 2bb4455..bb3f2a0 100644 --- a/src/constants/settings_constants.ts +++ b/src/constants/settings_constants.ts @@ -1 +1 @@ -export const MAX_CHAT_TURNS_IN_CONTEXT = 5; +export const MAX_CHAT_TURNS_IN_CONTEXT = 3;