mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-02 03:40:17 +00:00
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
---
|
|
title: 'Home'
|
|
---
|
|
import { Cards, Card } from 'nextra/components'
|
|
import deployingGuides from './Deploying/_meta.json';
|
|
import developingGuides from './Developing/_meta.json';
|
|
import extensionGuides from './Extensions/_meta.json';
|
|
import mainGuides from './Guides/_meta.json';
|
|
|
|
|
|
|
|
|
|
export const allGuides = {
|
|
...mainGuides,
|
|
...developingGuides,
|
|
...deployingGuides,
|
|
...extensionGuides,
|
|
};
|
|
|
|
### **DocsGPT 🦖**
|
|
|
|
DocsGPT 🦖 is an innovative open-source tool designed to simplify the retrieval of information from project documentation using advanced GPT models 🤖. Eliminate lengthy manual searches 🔍 and enhance your documentation experience with DocsGPT, and consider contributing to its AI-powered future 🚀.
|
|
|
|
Our demo: [https://docsgpt.arc53.com/](https://docsgpt.arc53.com/)
|
|
|
|
Want to earn a cool shirt by submitting a **meaningful** PR, check out [https://github.com/arc53/DocsGPT/blob/main/HACKTOBERFEST.md](Hacktoberfest) guide.
|
|
|
|
<Cards
|
|
num={3}
|
|
children={Object.keys(allGuides).map((key, i) => (
|
|
<Card
|
|
key={i}
|
|
title={allGuides[key].title}
|
|
href={allGuides[key].href}
|
|
/>
|
|
))}
|
|
/>
|