Spaces:
Runtime error
Runtime error
File size: 172 Bytes
4a51346 |
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
|