This project is a web application that allows you to chat with a robot. This robot attempts to return the address or location given in the user message, as well as an anecdote of the surroundings.
Clone the repository on your computer.
Set your virtual environment under python 3.9
python -m venv .venv # create the virtual environment
. .venv/Scripts/activate # activate the virtual environment
pip install -r requirements.txt # install the dependencies
touch .env # create a file where you'll put your api keys
HERE_REST_API_KEY="your_api_key"
HERE_JS_API_KEY="your_api_key"
python main.py