mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 16:43:16 +00:00
89 lines
3.1 KiB
TypeScript
89 lines
3.1 KiB
TypeScript
//TODO - Add hyperlinks to text
|
|
//TODO - Styling
|
|
import DocsGPT3 from './assets/cute_docsgpt3.svg';
|
|
|
|
export default function About() {
|
|
return (
|
|
<div className="mx-5 grid min-h-screen md:mx-36">
|
|
<article className="place-items-left mx-auto my-auto flex w-full max-w-6xl flex-col gap-4 rounded-3xl bg-gray-100 dark:bg-gun-metal p-6 text-jet dark:text-bright-gray lg:p-6 xl:p-10">
|
|
<div className="flex items-center">
|
|
<p className="mr-2 text-3xl">About DocsGPT</p>
|
|
<img className="h14 mb-2" src={DocsGPT3} alt="DocsGPT" />
|
|
</div>
|
|
<p className="mt-4">
|
|
Find the information in your documentation through AI-powered
|
|
<a
|
|
className="text-blue-500"
|
|
href="https://github.com/arc53/DocsGPT"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
{' '}
|
|
open-source{' '}
|
|
</a>
|
|
chatbot. Powered by GPT-3, Faiss and LangChain.
|
|
</p>
|
|
|
|
<div>
|
|
<p>
|
|
If you want to add your own documentation, please follow the
|
|
instruction below:
|
|
</p>
|
|
<p className="mt-4 ml-2">
|
|
1. Navigate to{' '}
|
|
<span className="bg-gray-200 dark:bg-outer-space italic"> /application</span> folder
|
|
</p>
|
|
<p className="mt-4 ml-2">
|
|
2. Install dependencies from{' '}
|
|
<span className="bg-gray-200 dark:bg-outer-space italic">
|
|
pip install -r requirements.txt
|
|
</span>
|
|
</p>
|
|
<p className="mt-4 ml-2">
|
|
3. Prepare a <span className="bg-gray-200 dark:bg-outer-space italic">.env</span> file.
|
|
Copy <span className="bg-gray-200 dark:bg-outer-space italic">.env_sample</span> and
|
|
create <span className="bg-gray-200 dark:bg-outer-space italic">.env</span> with your
|
|
OpenAI API token
|
|
</p>
|
|
<p className="mt-4 ml-2">
|
|
4. Run the app with{' '}
|
|
<span className="bg-gray-200 dark:bg-outer-space italic">python app.py</span>
|
|
</p>
|
|
</div>
|
|
|
|
<p>
|
|
Currently It uses{' '}
|
|
<span className="text-blue-950 font-medium">DocsGPT</span>{' '}
|
|
documentation, so it will respond to information relevant to{' '}
|
|
<span className="text-blue-950 font-medium">DocsGPT</span>. If you
|
|
want to train it on different documentation - please follow
|
|
<a
|
|
className="text-blue-500"
|
|
href="https://github.com/arc53/DocsGPT/wiki/How-to-train-on-other-documentation"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
{' '}
|
|
this guide
|
|
</a>
|
|
.
|
|
</p>
|
|
|
|
<p className="mt-4 text-left">
|
|
If you want to launch it on your own server - follow
|
|
<a
|
|
className="text-blue-500"
|
|
href="https://github.com/arc53/DocsGPT/wiki/Hosting-the-app"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
{' '}
|
|
this guide
|
|
</a>
|
|
.
|
|
</p>
|
|
</article>
|
|
</div>
|
|
);
|
|
}
|