diff --git a/frontend/src/About.tsx b/frontend/src/About.tsx deleted file mode 100644 index d2bbaac4..00000000 --- a/frontend/src/About.tsx +++ /dev/null @@ -1,99 +0,0 @@ -//TODO - Add hyperlinks to text -//TODO - Styling -import DocsGPT3 from './assets/cute_docsgpt3.svg'; - -export default function About() { - return ( -
-
-
-

About DocsGPT

- DocsGPT -
-

- Find the information in your documentation through AI-powered - - {' '} - open-source{' '} - - chatbot. Powered by GPT-3, Faiss and LangChain. -

- -
-

- If you want to add your own documentation, please follow the - instruction below: -

-

- 1. Navigate to{' '} - - {' '} - /application - {' '} - folder -

-

- 2. Install dependencies from{' '} - - pip install -r requirements.txt - -

-

- 3. Prepare a{' '} - .env{' '} - file. Copy{' '} - - .env_sample - {' '} - and create{' '} - .env{' '} - with your OpenAI API token -

-

- 4. Run the app with{' '} - - python app.py - -

-
- -

- Currently It uses{' '} - DocsGPT{' '} - documentation, so it will respond to information relevant to{' '} - DocsGPT. If you - want to train it on different documentation - please follow - - {' '} - this guide - - . -

- -

- If you want to launch it on your own server - follow - - {' '} - this guide - - . -

-
-
- ); -} diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index dbdba932..0d1166b7 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -2,8 +2,6 @@ import './locale/i18n'; import { useState } from 'react'; import { Outlet, Route, Routes } from 'react-router-dom'; - -import About from './About'; import Spinner from './components/Spinner'; import Conversation from './conversation/Conversation'; import { SharedConversation } from './conversation/SharedConversation'; @@ -64,7 +62,6 @@ export default function App() { } > } /> - } /> } /> } />