chroma / chromadb /server /__init__.py
badalsahani's picture
feat: chroma initial deploy
287a0bc
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