SungBeom's picture
Upload folder using huggingface_hub
4a51346
raw
history blame
172 Bytes
from abc import ABC, abstractmethod
from chromadb.config import Settings
class Server(ABC):
@abstractmethod
def __init__(self, settings: Settings):
pass