Create and activate the python virtual environment in the local project folder
python3 -m venv mlops_env
source mlops_env/bin/activateIf this step is successfull the comand line displays the prefix (mlops_env). Continue by installing required Python packages
python -m pip install -r requirements.txtNote: To create or update the requirements file, please run
pip freeze > requirements.txtuvicorn api.main:api --reloadTest the API using the following notebook notebooks/quiz_api_text.ipynb or access the documentation via http://localhost:8000/docs.