fix: correct context size argument name in logging
The commit corrects the argument name used for logging the context size from `num_ctx` to `context_size` to match the actual parameter name, ensuring accurate logging output. This change improves code consistency and makes the log messages more readable.
This commit is contained in:
parent
f60dbf49f1
commit
432c292462
Binary file not shown.
@ -69,7 +69,7 @@ def main():
|
||||
logging.info(f"Starting benchmarking for model: {args.model}")
|
||||
logging.info(f"Ollama URL: {args.ollama_url}")
|
||||
logging.info(f"Benchmarks to run: {', '.join(args.benchmarks)}")
|
||||
logging.info(f"Context size: {args.num_ctx}")
|
||||
logging.info(f"Context size: {args.context_size}")
|
||||
|
||||
# Инициализация клиента
|
||||
ollama_client = OllamaClient(args.ollama_url)
|
||||
|
||||
Binary file not shown.
Loading…
Reference in New Issue
Block a user