Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 793 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 793 Bytes

Bullet Point Destructor

How to use this repo

  1. Create a virtual environment, you can use the make recipe:
make venv
  1. Activate the environment:
source .venv/bin/activate

API

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.