diff --git a/README.md b/README.md index 1f7760ba..fcb14f12 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,8 @@ Watch install video [Usage Videos](https://www.youtube.com/watch?v=6kKv6ESnwMk&t Watch usage videos [Usage Videos](https://www.youtube.com/watch?v=DCBefhJUUh4&ab_channel=ParisNeo) +Watch settings videos [Usage Videos](https://www.youtube.com/watch?v=7KwR2vdt1t4&t=63s&ab_channel=ParisNeo) + ![image](https://user-images.githubusercontent.com/827993/231911545-750c8293-58e4-4fac-8b34-f5c0d57a2f7d.png) diff --git a/app.py b/app.py index dae13ce7..e97a36f0 100644 --- a/app.py +++ b/app.py @@ -159,7 +159,7 @@ class Gpt4AllWebUI(GPT4AllAPI): ) def index(self): - return render_template("chat.html") + return render_template("index.html") def format_message(self, message): # Look for a code block within the message diff --git a/configs/default.yaml b/configs/default.yaml index 1f1f3a19..2d637530 100644 --- a/configs/default.yaml +++ b/configs/default.yaml @@ -13,7 +13,7 @@ port: 9600 repeat_last_n: 40 repeat_penalty: 1.2 seed: 0 -temp: 1.0 +temp: 0.9 top_k: 50 top_p: 0.95 voice: "" diff --git a/templates/chat.html b/templates/index.html similarity index 100% rename from templates/chat.html rename to templates/index.html