VashuTheGreat2's picture
Upload folder using huggingface_hub
c01955c verified
from abc import ABC,abstractmethod
class Pipeline(ABC):
def __init__(self):
pass
@abstractmethod
async def initiate(self):
pass