- Create a virtual environment, you can use the make recipe:
make venv
- Activate the environment:
source .venv/bin/activate
An 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 api
or from the root of the repo on the terminal run:
python -m src.app.main
After that click on http://127.0.0.1:3000 and add the /docs path at the end to view the swagger UI.