GerevAI / gerev
- среда, 22 марта 2023 г. в 00:14:12
google-like search for workplaces (powered by open-source LLMs) 🔎
Find any conversation, doc, or internal page in seconds
Join 1000+ devs by hosting your own gerev instance, become a hero within your org!
Devs are the best early adopters, they adopt technology early and aid in spreading it to their non-technical peers. That's why gerev is focused on making a product dev's adore and love
Enables searching using natural language. such as "How to do X"
, "how to connect to Y"
, "Do we support Z"
Install nvidia container toolkit on the host machine.
distribution=$(. /etc/os-release;echo $ID$VERSION_ID) \
&& curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | sudo apt-key add - \
&& curl -s -L https://nvidia.github.io/nvidia-docker/$distribution/nvidia-docker.list | sudo tee /etc/apt/sources.list.d/nvidia-docker.list
sudo apt-get update
sudo apt-get install -y nvidia-docker2
sudo systemctl restart docker
Then run the docker container like so:
docker run --gpus all -p 80:80 -v ~/.gerev/storage:/opt/storage gerev/gerev
sudo docker run -p 80:80 -v ~/.gerev/storage:/opt/storage gerev/gerev
Run the backend:
cd app
pip install -r requirements.txt
uvicorn main:app
Run the UI:
npm install
npm start