Now grading is partitioned into smaller chunks so that whisper doesnt struggle
This commit is contained in:
@@ -20,10 +20,6 @@ class IGradeController(ABC):
|
||||
):
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
async def get_evaluations(self, session_id: str, status: str):
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
async def grade_short_answers(self, data: Dict):
|
||||
pass
|
||||
|
||||
@@ -90,9 +90,6 @@ class GradeController(IGradeController):
|
||||
|
||||
return Response(status_code=200)
|
||||
|
||||
async def get_evaluations(self, session_id: str, status: str):
|
||||
return await self._evaluation_service.get_evaluations(session_id, status)
|
||||
|
||||
async def grade_short_answers(self, data: Dict):
|
||||
return await self._service.grade_short_answers(data)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user