diff --git a/README.md b/README.md index 363a2113..a15e974f 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ Its goal is to become the [AUTOMATIC1111/stable-diffusion-webui](https://github. - Simple LoRA fine-tuning tool. - Requirements installed in a self-contained `installer_files` directory that doesn't interfere with the system environment. - Extension support, with numerous built-in and user-contributed extensions available. See the [wiki](https://github.com/oobabooga/text-generation-webui/wiki/07-%E2%80%90-Extensions) and [extensions directory](https://github.com/oobabooga/text-generation-webui-extensions) for details. +- Completely private: no telemetry, no tracking, no remote connections. ## How to install diff --git a/modules/llama_cpp_server.py b/modules/llama_cpp_server.py index db500c9c..a6eb9b20 100644 --- a/modules/llama_cpp_server.py +++ b/modules/llama_cpp_server.py @@ -192,7 +192,7 @@ class LlamaServer: "post_sampling_probs": use_samplers, }) - if shared.args.verbose: + if shared.args.verbose and use_samplers: logger.info("GENERATE_PARAMS=") printable_payload = {k: v for k, v in payload.items() if k != "prompt"} pprint.PrettyPrinter(indent=4, sort_dicts=False).pprint(printable_payload)