- Create a virtual environment, you can use the make recipe:
make venv- Activate the environment:
source .venv/bin/activateAn api was implemented using FastAPI which at the moment has a GET enpoint to extract the 5 bullet point descriptions, (what, why, how, who and skills) given a raw bullet point as a string.
For running the API you can use the make recipe:
make apior from the root of the repo on the terminal run:
python -m src.app.mainAfter that click on http://127.0.0.1:3000 and add the /docs path at the end to view the swagger UI.