Create a Fast API application which has two models:
TaskModel: title, time_to_complete, description
TaskStatus: Foreignkey to(TaskModel, iscompleted, completed_per (amount of task completed)
Create CRUD methods and also implement the Response Request model using Pydantic models in Fast API)