himanshud2611's picture
Upload folder using huggingface_hub
60e3a80 verified
raw
history blame contribute delete
172 Bytes
from abc import ABC, abstractmethod
from chromadb.config import Settings
class Server(ABC):
@abstractmethod
def __init__(self, settings: Settings):
pass