diff --git a/semantic_router/schema.py b/semantic_router/schema.py index 63233322207be40b140eb3413879523652fa25b1..be486888a70f9a0b27d705636038931206e3f1cc 100644 --- a/semantic_router/schema.py +++ b/semantic_router/schema.py @@ -23,12 +23,12 @@ class RouteChoice(BaseModel): @dataclass class Encoder: - type: str + type: EncoderType name: str | None model: BaseEncoder def __init__(self, type: str, name: str | None): - self.type = type + self.type = EncoderType(type) self.name = name if self.type == EncoderType.HUGGINGFACE: raise NotImplementedError @@ -37,7 +37,7 @@ class Encoder: elif self.type == EncoderType.COHERE: self.model = CohereEncoder(name) else: - raise NotImplementedError + raise ValueError def __call__(self, texts: list[str]) -> list[list[float]]: return self.model(texts)