2023-04-18 07:30:47 +02:00
|
|
|
Thank you for downloading oobabooga/text-generation-webui.
|
|
|
|
|
|
|
|
# Installation
|
|
|
|
|
|
|
|
Simply run the "start" script.
|
|
|
|
|
|
|
|
# Updating
|
|
|
|
|
|
|
|
Run the "update" script. This will only install the updates, so it should
|
|
|
|
be much faster than the initial installation.
|
|
|
|
|
|
|
|
May need to delete the 'text-generation-webui\repositories\GPTQ-for-LLaMa'
|
|
|
|
folder if GPTQ-for-LLaMa needs to be updated.
|
|
|
|
|
|
|
|
# Adding flags like --chat, --notebook, etc
|
|
|
|
|
2023-04-23 17:58:14 +02:00
|
|
|
Edit the "webui.py" script using a text editor and add the desired flags
|
2023-04-18 07:30:47 +02:00
|
|
|
to the line that says
|
|
|
|
|
2023-04-24 21:50:03 +02:00
|
|
|
run_cmd("python server.py --chat --model-menu")
|
2023-04-18 07:30:47 +02:00
|
|
|
|
|
|
|
For instance, to add the --notebook flag, change it to
|
|
|
|
|
2023-04-24 21:50:03 +02:00
|
|
|
run_cmd("python server.py --notebook --model-menu")
|
2023-04-18 07:30:47 +02:00
|
|
|
|
|
|
|
# Running an interactive shell
|
|
|
|
|
|
|
|
In order to run an interactive shell in the miniconda environment, run
|
|
|
|
the "cmd" script. This is useful for installing additional requirements
|
|
|
|
manually.
|