Skip to content

Latest commit

 

History

History
40 lines (22 loc) · 1.19 KB

quickstart.rst

File metadata and controls

40 lines (22 loc) · 1.19 KB

Quickstart

View the Live application

The best way to get started with the application is by visiting the application hosted in streamlit community cloud here.

Note: LLAMA2 uses llama cpp and needs a aritifact, it can only be run locally.

PS: Please configure the installation according to this Link.

Running from docker locally via official docker image

The application can be run locally using docker by running the following command

docker run --rm -it -p 8501:8501 pevatrons/ai-chatverse

Running the latest version of the app from source in docker

  1. Clone the repository

  2. Build the image by running

    docker build -t ai_chaverse .
  3. Run the application by

    docker run --rm -it -p 8501:8501 ai_chaverse
  4. Visit localhost:8501