From caa6afc88b2b2af7764e7db2d066477b6de1414d Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Fri, 18 Apr 2025 09:57:57 -0700 Subject: [PATCH 1/2] Only show 'GENERATE_PARAMS=...' in the logits endpoint if use_logits is True --- modules/llama_cpp_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) From 8d481ef9d5acdc7209d358ac0ac04539e63340c7 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Fri, 18 Apr 2025 11:31:22 -0700 Subject: [PATCH 2/2] Update README --- README.md | 1 + 1 file changed, 1 insertion(+) 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