diff --git a/ui/src/chat-with-kg/App.tsx b/ui/src/chat-with-kg/App.tsx index 12a39c4..571496e 100644 --- a/ui/src/chat-with-kg/App.tsx +++ b/ui/src/chat-with-kg/App.tsx @@ -73,7 +73,8 @@ function App() { const [modalIsOpen, setModalIsOpen] = useState(false); const [apiKey, setApiKey] = useState(loadKeyFromStorage() || ""); const [sampleQuestions, setSampleQuestions] = useState([]); - const [text2cypherModel, setText2cypherModel] = useState("gpt-3.5-turbo-0613"); + const [text2cypherModel, setText2cypherModel] = + useState("gpt-3.5-turbo-0613"); const showContent = serverAvailable && !needsApiKeyLoading; @@ -258,8 +259,8 @@ function App() { }; const handleModelChange = (e: ChangeEvent) => { - setText2cypherModel(e.target.value) - } + setText2cypherModel(e.target.value); + }; return (
@@ -268,12 +269,12 @@ function App() {
)} -
+
-
+
{!serverAvailable && (
Server is unavailable, please reload the page to try again.