Update default history turns to 3

This commit is contained in:
yangdx
2025-01-26 05:19:51 +08:00
parent 25a58a6545
commit f8d26cb193

View File

@@ -476,8 +476,8 @@ def parse_args() -> argparse.Namespace:
parser.add_argument(
"--history-turns",
type=int,
default=get_env_value("HISTORY_TURNS", None, int),
help="Number of conversation history turns to include (default: from env or None)",
default=get_env_value("HISTORY_TURNS", 3, int),
help="Number of conversation history turns to include (default: from env or 3)",
)
args = parser.parse_args()