From 495ffaeb060d7604d8881851dda8f7d49c6117f7 Mon Sep 17 00:00:00 2001 From: Marco Beretta <81851188+Berry-13@users.noreply.github.com> Date: Fri, 4 Aug 2023 23:19:34 +0200 Subject: [PATCH 1/2] Update README.md (#754) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e45995a966..54d2be50f1 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ Keep up with the latest updates by visiting the releases page - [Releases](https * [Cloudflare](docs/deployment/cloudflare.md) * [Ngrok](docs/deployment/ngrok.md) * [Render](docs/deployment/render.md) - * [Azure](docs/deployment/azure.md) + * [Azure](docs/deployment/azure-terraform.md)
From 1f5a79f073a0cd5da4a4c118c18c3988527aa72b Mon Sep 17 00:00:00 2001 From: Danny Avila <110412045+danny-avila@users.noreply.github.com> Date: Fri, 4 Aug 2023 22:33:06 -0400 Subject: [PATCH 2/2] fix(Plugins.tsx): fix incorrect params (mismatch) of setOption calls for frequency_penalty and presence_penalty (#757) --- client/src/components/Endpoints/Settings/Plugins.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/components/Endpoints/Settings/Plugins.tsx b/client/src/components/Endpoints/Settings/Plugins.tsx index 955ed0250d..060d21cb6f 100644 --- a/client/src/components/Endpoints/Settings/Plugins.tsx +++ b/client/src/components/Endpoints/Settings/Plugins.tsx @@ -34,8 +34,8 @@ export default function Settings({ conversation, setOption, models, readonly }: const setPromptPrefix = setOption('promptPrefix'); const setTemperature = setOption('temperature'); const setTopP = setOption('top_p'); - const setFreqP = setOption('presence_penalty'); - const setPresP = setOption('frequency_penalty'); + const setFreqP = setOption('frequency_penalty'); + const setPresP = setOption('presence_penalty'); const toolsSelected = tools && tools.length > 0;