Go to file
2023-10-01 21:34:57 +01:00
.github/workflows small optimization 2023-09-04 19:32:56 +02:00
application celery syncs 2023-10-01 20:05:13 +01:00
docs Grammatical corrections 2023-10-01 23:36:50 +05:30
extensions updates modal 2023-09-13 14:11:32 +01:00
frontend script + cpu optimisations 2023-10-01 19:16:13 +01:00
scripts Fix spelling 2023-10-02 01:25:23 +10:00
tests Update test_celery.py 2023-10-01 21:34:57 +01:00
.env-template updated deployment and create react widget guide 2023-09-15 11:00:59 +01:00
.gitignore script 2023-10-01 17:20:47 +01:00
.ruff.toml Linting 2023-05-13 10:36:17 +02:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2023-02-02 23:13:06 +00:00
codecov.yml Create codecov.yml 2023-09-04 14:48:20 +01:00
CONTRIBUTING.md Update CONTRIBUTING.md - information about running unit tests 2023-09-05 06:31:27 +02:00
docker-compose-azure.yaml fix packaging and imports and introduce tests with pytest. 2023-08-14 18:53:25 +02:00
docker-compose-dev.yaml Added dev docker compose file 2023-04-26 19:05:50 +01:00
docker-compose-local.yaml script + cpu optimisations 2023-10-01 19:16:13 +01:00
docker-compose.yaml Support for hf models optimised for docsgpt 2023-08-15 14:14:49 +01:00
HACKTOBERFEST.md Hacktoberfest info 2023-09-26 13:48:57 +01:00
LICENSE Initial commit 2023-02-02 11:03:24 +00:00
Readme Logo.png Add files via upload 2023-02-05 21:10:42 +03:00
README.md Update README.md 2023-10-01 20:10:41 +01:00
run-with-docker-compose.sh Revert "Changed environment variable names OPENAI_API_BASE and OPENAI_API_VERSION to AZURE_OPENAI_API_BASE and AZURE_OPENAI_API_VERSION" 2023-08-05 14:08:51 +02:00
setup.sh celery syncs 2023-10-01 20:05:13 +01:00

DocsGPT 🦖

Open-Source Documentation Assistant

DocsGPT is a cutting-edge open-source solution that streamlines the process of finding information in project documentation. With its integration of the powerful GPT models, developers can easily ask questions about a project and receive accurate answers.

Say goodbye to time-consuming manual searches, and let DocsGPT help you quickly find the information you need. Try it out and see how it revolutionizes your project documentation experience. Contribute to its development and be a part of the future of AI-powered assistance.

example1 example2 example3 example3

Enterprise Solutions:

When deploying your DocsGPT to a live environment, we're eager to provide personalized assistance. Reach out to us via email here to discuss your project further, and our team will connect with you shortly.

🎉 Join the Hacktoberfest with DocsGPT and Earn a Free T-shirt! 🎉

video-example-of-docs-gpt

Roadmap

You can find our Roadmap here. Please don't hesitate to contribute or create issues, it helps us make DocsGPT better!

Our open source models optimised for DocsGPT:

Name Base Model Requirements (or similar)
Docsgpt-7b-falcon Falcon-7b 1xA10G gpu
Docsgpt-14b llama-2-14b 2xA10 gpu's
Docsgpt-40b-falcon falcon-40b 8xA10G gpu's

If you don't have enough resources to run it you can use bitsnbytes to quantize

Features

Group 9

Live preview

Join Our Discord

Guides

Interested in contributing?

How to use any other documentation

How to host it locally (so all data will stay on-premises)

Project structure

  • Application - Flask app (main application)

  • Extensions - Chrome extension

  • Scripts - Script that creates similarity search index and store for other libraries.

  • Frontend - Frontend uses Vite and React

QuickStart

Note: Make sure you have Docker installed

On Mac OS or Linux just write:

./setup.sh

It will install all the dependencies and give you an option to download local model or use OpenAI

Otherwise refer to this Guide:

  1. Download and open this repository with git clone https://github.com/arc53/DocsGPT.git

  2. Create a .env file in your root directory and set the env variable OPENAI_API_KEY with your OpenAI API key and VITE_API_STREAMING to true or false, depending on if you want streaming answers or not It should look like this inside:

    OPENAI_API_KEY=Yourkey
    VITE_API_STREAMING=true
    SELF_HOSTED_MODEL=false
    

    See optional environment variables in the /.env-template and /application/.env_sample files.

  3. Run ./run-with-docker-compose.sh

  4. Navigate to http://localhost:5173/

To stop just run Ctrl + C

Development environments

Spin up mongo and redis

For development only 2 containers are used from docker-compose.yaml (by deleting all services except for Redis and Mongo). See file docker-compose-dev.yaml.

Run

docker compose -f docker-compose-dev.yaml build
docker compose -f docker-compose-dev.yaml up -d

Run the backend

Make sure you have Python 3.10 or 3.11 installed.

  1. Export required environment variables
export CELERY_BROKER_URL=redis://localhost:6379/0   
export CELERY_RESULT_BACKEND=redis://localhost:6379/1
export MONGO_URI=mongodb://localhost:27017/docsgpt
export FLASK_APP=application/app.py
export FLASK_DEBUG=true
  1. Prepare .env file Copy .env_sample and create .env with your OpenAI API token
  2. (optional) Create a Python virtual environment
python -m venv venv
. venv/bin/activate
  1. Change to application/ subdir and install dependencies for the backend
pip install -r application/requirements.txt
  1. Run the app flask run --host=0.0.0.0 --port=7091
  2. Start worker with celery -A application.app.celery worker -l INFO

Start frontend

Make sure you have Node version 16 or higher.

  1. Navigate to /frontend folder
  2. Install dependencies npm install
  3. Run the app npm run dev

Built with 🦜🔗 LangChain