File size: 282 Bytes
c01955c
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14

from typing import Any
from utils.asyncHandler import asyncHandler
import logging
class JobPrediction:
    def __init__(self):
        pass
    

    @asyncHandler
    async def predict(self,userSummary:str)->Any:
        logging.info("Entered in a prediction JObFinder")