Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 1.26 KB

File metadata and controls

36 lines (26 loc) · 1.26 KB

Installation

  1. Install docker: https://docs.docker.com/engine/install/ubuntu/.
  • Grant permission to docker via sudo chmod 666 /var/run/docker.sock.

  • If you encounter an error that /var/run/docker.sock doesn’t exist, you may find the actual path to docker.sock and create a soft link. For example, Docker Desktop stores this file at ~/.docker/desktop/docker.sock, in which case you may use:

    sudo chmod 666 ~/.docker/desktop/docker.sock
    sudo ln -s ~/.docker/desktop/docker.sock /var/run/docker.sock
  • Run docker ps to check that permission has been granted with the Docker daemon.

  1. Clone the repository:

    git clone https://github.com/Just-Curieous/Curie.git
    cd Curie
  2. Put your LLM API credentials under curie/setup/env.sh. Example:

    export MODEL="gpt-4o" 
    export OPENAI_API_KEY="sk-xxx"