export default function About({ isMenuOpen, isMobile, }: { isMenuOpen: boolean; isMobile: boolean; }) { //TODO - Add hyperlinks to text //TODO - Styling return ( //Parent div for all content shown through App.tsx routing needs to have this styling. Might change when state management is updated.

About 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 python pandas documentation, so it will respond to information relevant to pandas. 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.

); }