CoolFace
Apppublic

forestcalled/text-generation-webui

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
06 - Session Tab.md33 linesDownload Raw Back to docs
1Here you can restart the UI with new settings.2 3* **Available extensions**: shows a list of extensions available under `text-generation-webui/extensions`.4* **Boolean command-line flags**: shows command-line flags of bool (true/false) type.5 6After selecting your desired flags and extensions, you can restart the UI by clicking on **Apply flags/extensions and restart**.7 8## Install or update an extension9 10In this field, you can enter the GitHub URL for an extension and press enter to either install it (i.e. cloning it into `text-generation-webui/extensions`) or update it with `git pull` in case it is already cloned.11 12Note that some extensions may include additional Python requirements. In this case, to install those you have to run the command13 14```15pip install -r extensions/extension-name/requirements.txt16```17 18or19 20```21pip install -r extensions\extension-name\requirements.txt22```23 24if you are on Windows.25 26If you used the one-click installer, this command should be executed in the terminal window that appears when you run the "cmd_" script for your OS.27 28## Saving UI defaults29 30The **Save UI defaults to settings.yaml** button gathers the visible values in the UI and saves them to settings.yaml so that your settings will persist across multiple restarts of the UI.31 32Note that preset parameters like temperature are not individually saved, so you need to first save your preset and select it in the preset menu before saving the defaults.33