diff options
| author | Nate Sesti <sestinj@gmail.com> | 2023-07-26 09:20:56 -0700 | 
|---|---|---|
| committer | Nate Sesti <sestinj@gmail.com> | 2023-07-26 09:20:56 -0700 | 
| commit | 4c84e6945a7c2018622eceb54e7fb54de193b03a (patch) | |
| tree | aff2868636c87a814d0d7a3c078247fd0e58061d /extension/react-app/src | |
| parent | 7534f361555ebf92690d58d997915c7ac717f5d1 (diff) | |
| download | sncontinue-4c84e6945a7c2018622eceb54e7fb54de193b03a.tar.gz sncontinue-4c84e6945a7c2018622eceb54e7fb54de193b03a.tar.bz2 sncontinue-4c84e6945a7c2018622eceb54e7fb54de193b03a.zip  | |
fix: :bug: fix dialog links
Diffstat (limited to 'extension/react-app/src')
| -rw-r--r-- | extension/react-app/src/components/TextDialog.tsx | 37 | 
1 files changed, 36 insertions, 1 deletions
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: {          }}        >          <Dialog> -          <ReactMarkdown>{props.message || ""}</ReactMarkdown> +          {props.message?.includes("Continue uses GPT-4") ? ( +            <div> +              <p> +                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: +              </p> + +              <p> +                Run a local model with ggml:{" "} +                <a +                  href="https://github.com/continuedev/ggml-server-example" +                  target="_blank" +                > +                  5 minute quickstart +                </a> +              </p> + +              <p> +                Use Azure OpenAI service, which is GDPR and HIPAA compliant: +                <a +                  href="https://continue.dev/docs/customization#azure-openai-service" +                  target="_blank" +                > +                  Tutorial +                </a> +              </p> + +              <p> +                If you already have an LLM deployed on your own infrastructure, +                or would like to do so, please contact us at hi@continue.dev. +              </p> +            </div> +          ) : ( +            <ReactMarkdown>{props.message || ""}</ReactMarkdown> +          )}            {props.entryOn && (              <>                <TextArea  | 
