// Write a component that displays a dialog box with a text field and a button. import React, { useEffect, useState } from "react"; import styled from "styled-components"; import { Button, secondaryDark, vscBackground, vscForeground } from "."; import { isMetaEquivalentKeyPressed } from "../util"; import { ReactMarkdown } from "react-markdown/lib/react-markdown"; const ScreenCover = styled.div` position: fixed; width: 100%; height: 100%; background-color: rgba(168, 168, 168, 0.5); z-index: 100; `; const DialogContainer = styled.div` position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 75%; `; const Dialog = styled.div` color: ${vscForeground}; background-color: ${vscBackground}; border-radius: 8px; padding: 8px; display: flex; flex-direction: column; box-shadow: 0 0 10px 0 ${vscForeground}; margin: auto; word-wrap: break-word; `; const TextArea = styled.textarea` border: 1px solid #ccc; border-radius: 8px; padding: 8px; outline: 1px solid black; resize: none; background-color: ${secondaryDark}; color: ${vscForeground}; &:focus { outline: 1px solid ${vscForeground}; } `; const P = styled.p` color: ${vscForeground}; margin: 8px auto; `; const TextDialog = (props: { showDialog: boolean; onEnter: (text: string) => void; onClose: () => void; message?: string | JSX.Element; entryOn?: boolean; }) => { const [text, setText] = useState(""); const textAreaRef = React.createRef(); useEffect(() => { if (textAreaRef.current) { textAreaRef.current.focus(); } }, [props.showDialog]); return ( { props.onClose(); }} hidden={!props.showDialog} > { e.stopPropagation(); }} > {typeof props.message === "string" && 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.

) : typeof props.message === "string" ? ( {props.message || ""} ) : ( props.message )} {props.entryOn && ( <>