Source code for swarmauri.core.embeddings.IFeature

from abc import ABC, abstractmethod
from typing import List, Any

[docs] class IFeature(ABC):
[docs] @abstractmethod def extract_features(self) -> List[Any]: pass