Fixed --simulated-model-name argument

This commit is contained in:
Saifeddine ALOUI 2025-01-28 15:32:41 +01:00 committed by GitHub
parent d493830b10
commit 4ab1deaf25
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -489,8 +489,8 @@ def parse_args() -> argparse.Namespace:
parser.add_argument(
"--simulated-model-name",
type=int,
default=get_env_value("SIMULATED_MODEL_NAME", ollama_server_infos.LIGHTRAG_MODEL, str),
type=str,
default=get_env_value("SIMULATED_MODEL_NAME", ollama_server_infos.LIGHTRAG_MODEL),
help="Number of conversation history turns to include (default: from env or 3)",
)