mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 08:33:20 +00:00
51 lines
1.6 KiB
Plaintext
51 lines
1.6 KiB
Plaintext
---
|
|
title: 'Home'
|
|
---
|
|
import { Cards, Card } from 'nextra/components'
|
|
import Image from 'next/image'
|
|
import deployingGuides from './Deploying/_meta.json';
|
|
import extensionGuides from './Extensions/_meta.json';
|
|
import mainGuides from './Guides/_meta.json';
|
|
|
|
|
|
|
|
export const allGuides = {
|
|
...deployingGuides,
|
|
|
|
...extensionGuides,
|
|
...mainGuides,
|
|
};
|
|
|
|
## **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 🚀.
|
|
|
|
|
|
|
|
<video controls width={1920} height={1080} muted autoPlay loop playsInline>
|
|
<source src="https://d3dg1063dc54p9.cloudfront.net/videos/demov4.mp4" type="video/mp4" />
|
|
Your browser does not support the video tag.
|
|
</video>
|
|
|
|
|
|
Try it yourself: [https://www.docsgpt.cloud/](https://www.docsgpt.cloud/)
|
|
|
|
### Features:
|
|
- **Chat** - Ask any question on your mind and get instant answers
|
|
- **Bots** - Easily connect DocsGPT's *brain* to widgets and chatbots
|
|
- **Tools** - Build complex workflows with model performing all actions
|
|
- **RAG** - Connect any document to give model reliable knowledge
|
|
- **Open source** - Customize anything with clear codebase
|
|
- **Platform Agnostic** - Connect any LLM that suits your needs
|
|
|
|
<Cards
|
|
num={3}
|
|
children={Object.keys(allGuides).map((key, i) => (
|
|
<Card
|
|
key={i}
|
|
title={allGuides[key].title}
|
|
href={allGuides[key].href}
|
|
/>
|
|
))}
|
|
/>
|