From f67e5d248767e73ca64cffaa4b29638e43eb7a25 Mon Sep 17 00:00:00 2001 From: James Briggs <35938317+jamescalam@users.noreply.github.com> Date: Mon, 13 Nov 2023 07:44:54 -0800 Subject: [PATCH] remove missing encoder type --- semantic_router/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/semantic_router/schema.py b/semantic_router/schema.py index 981d9862..d13975c0 100644 --- a/semantic_router/schema.py +++ b/semantic_router/schema.py @@ -31,7 +31,7 @@ def __init__(self, type: str, name: str): self.type = EncoderType(type) self.name = name if self.type == EncoderType.HUGGINGFACE: - self.model = HuggingFaceEncoder(name) + raise NotImplementedError elif self.type == EncoderType.OPENAI: self.model = OpenAIEncoder(name) elif self.type == EncoderType.COHERE: