From 4c84e6945a7c2018622eceb54e7fb54de193b03a Mon Sep 17 00:00:00 2001 From: Nate Sesti Date: Wed, 26 Jul 2023 09:20:56 -0700 Subject: fix: :bug: fix dialog links --- extension/react-app/src/components/TextDialog.tsx | 37 ++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) (limited to 'extension/react-app/src') diff --git a/extension/react-app/src/components/TextDialog.tsx b/extension/react-app/src/components/TextDialog.tsx index 7d8e9920..43051a04 100644 --- a/extension/react-app/src/components/TextDialog.tsx +++ b/extension/react-app/src/components/TextDialog.tsx @@ -81,7 +81,42 @@ const TextDialog = (props: { }} > - {props.message || ""} + {props.message?.includes("Continue uses GPT-4") ? ( +
+

+ Continue uses GPT-4 by default, but works with any model. If + you'd like to keep your code completely private, there are few + options: +

+ +

+ Run a local model with ggml:{" "} + + 5 minute quickstart + +

+ +

+ Use Azure OpenAI service, which is GDPR and HIPAA compliant: + + Tutorial + +

+ +

+ If you already have an LLM deployed on your own infrastructure, + or would like to do so, please contact us at hi@continue.dev. +

+
+ ) : ( + {props.message || ""} + )} {props.entryOn && ( <>