287a0bc
1
2
3
4
5
6
7
8
9
10
from abc import ABC, abstractmethod from chromadb.config import Settings class Server(ABC): @abstractmethod def __init__(self, settings: Settings): pass