Unverified 提交 9d046834 authored 作者: Will Chen's avatar Will Chen 提交者: GitHub

Lower default context size to 3 (#233)

上级 e119a670
...@@ -19,8 +19,8 @@ const defaultValue = "default"; ...@@ -19,8 +19,8 @@ const defaultValue = "default";
const options: OptionInfo[] = [ const options: OptionInfo[] = [
{ {
value: "3", value: "2",
label: "Economy (3)", label: "Economy (2)",
description: description:
"Minimal context to reduce token usage and improve response times.", "Minimal context to reduce token usage and improve response times.",
}, },
...@@ -29,6 +29,11 @@ const options: OptionInfo[] = [ ...@@ -29,6 +29,11 @@ const options: OptionInfo[] = [
label: `Default (${MAX_CHAT_TURNS_IN_CONTEXT}) `, label: `Default (${MAX_CHAT_TURNS_IN_CONTEXT}) `,
description: "Balanced context size for most conversations.", description: "Balanced context size for most conversations.",
}, },
{
value: "5",
label: "Plus (5)",
description: "Slightly higher context size for detailed conversations.",
},
{ {
value: "10", value: "10",
label: "High (10)", label: "High (10)",
......
export const MAX_CHAT_TURNS_IN_CONTEXT = 5; export const MAX_CHAT_TURNS_IN_CONTEXT = 3;
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论