run these commands in the terminal (make shure that you are inside the project directory):
python -m venv venv
source venv/bin/activatecreate a file called .env inside the project, and add the following code
OPENAI_API_KEY="your-api-key-here" # replace with api key
SERPAPI_KEY="your-api-key-here"
HTTP_PORT=5899 run:
./scripts/run.shwait a min for the dependences to install, then open the port that is provided to you in the terminal, message should say something like:
[INFO] Listening at: http://0.0.0.0:5899 (40666)