Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 692 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 692 Bytes

Requiem-API

image

Functional demo video: https://www.youtube.com/watch?v=NDmsCuVv5qs

This is the API for the Requiem project.

Steps to run this project:

  • Install Python 3.0 or higher
  • Install all the dependencies using the following command:
pip install -r requirements.txt
  • Create a .env file in the root directory and add the following variables:
KEY_OAI = "Key for the Open AI API"
  • Go to the API directory "/API"
  • Run the server using Uvicorn:
python -m uvicorn main:app --reload

For Mac/Linux:

uvicorn main:app --reload