pull/123/head
Alex 2 years ago
parent e465daf848
commit 90ec40c2b3

@ -5,9 +5,9 @@ export default function About() {
return ( return (
//Parent div for all content shown through App.tsx routing needs to have this styling. Might change when state management is updated. //Parent div for all content shown through App.tsx routing needs to have this styling. Might change when state management is updated.
<div className="mx-36 grid min-h-screen"> <div className="mx-36 grid min-h-screen">
<article className=" mx-auto my-auto flex w-full max-w-6xl flex-col place-items-center gap-6 rounded-lg bg-gray-100 p-6 text-jet lg:p-10 xl:p-16"> <article className=" place-items-left mx-auto my-auto flex w-full max-w-6xl flex-col gap-6 rounded-lg bg-gray-100 p-6 text-jet lg:p-10 xl:p-16">
<p className="text-3xl font-semibold">About DocsGPT 🦖</p> <p className="text-3xl">About DocsGPT 🦖</p>
<p className="mt-4 text-xl"> <p className="mt-4">
Find the information in your documentation through AI-powered Find the information in your documentation through AI-powered
<a <a
className="text-blue-500" className="text-blue-500"
@ -22,33 +22,33 @@ export default function About() {
</p> </p>
<div> <div>
<p className="text-lg"> <p>
If you want to add your own documentation, please follow the If you want to add your own documentation, please follow the
instruction below: instruction below:
</p> </p>
<p className="mt-4 text-lg"> <p className="mt-4 ml-2">
1. Navigate to{' '} 1. Navigate to{' '}
<span className="bg-gray-200 italic"> /application</span> folder <span className="bg-gray-200 italic"> /application</span> folder
</p> </p>
<p className="mt-4 text-lg"> <p className="mt-4 ml-2">
2. Install dependencies from{' '} 2. Install dependencies from{' '}
<span className="bg-gray-200 italic"> <span className="bg-gray-200 italic">
pip install -r requirements.txt pip install -r requirements.txt
</span> </span>
</p> </p>
<p className="mt-4 text-lg"> <p className="mt-4 ml-2">
3. Prepare a <span className="bg-gray-200 italic">.env</span> file. 3. Prepare a <span className="bg-gray-200 italic">.env</span> file.
Copy <span className="bg-gray-200 italic">.env_sample</span> and Copy <span className="bg-gray-200 italic">.env_sample</span> and
create <span className="bg-gray-200 italic">.env</span> with your create <span className="bg-gray-200 italic">.env</span> with your
OpenAI API token OpenAI API token
</p> </p>
<p className="mt-4 text-lg"> <p className="mt-4 ml-2">
4. Run the app with{' '} 4. Run the app with{' '}
<span className="bg-gray-200 italic">python app.py</span> <span className="bg-gray-200 italic">python app.py</span>
</p> </p>
</div> </div>
<p className="text-lg"> <p>
Currently It uses python pandas documentation, so it will respond to Currently It uses python pandas documentation, so it will respond to
information relevant to pandas. If you want to train it on different information relevant to pandas. If you want to train it on different
documentation - please follow documentation - please follow
@ -64,7 +64,7 @@ export default function About() {
. .
</p> </p>
<p className="mt-4 text-left text-lg"> <p className="mt-4 text-left">
If you want to launch it on your own server - follow If you want to launch it on your own server - follow
<a <a
className="text-blue-500" className="text-blue-500"

Loading…
Cancel
Save