From 363ae337aafb7403a55752f7f6be28f69814b095 Mon Sep 17 00:00:00 2001 From: zahid-syed Date: Mon, 11 Mar 2024 13:05:25 -0400 Subject: [PATCH] fixing pytest for PR --- semantic_router/encoders/mistral.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/semantic_router/encoders/mistral.py b/semantic_router/encoders/mistral.py index 0ab56824..ead08545 100644 --- a/semantic_router/encoders/mistral.py +++ b/semantic_router/encoders/mistral.py @@ -12,7 +12,7 @@ class MistralEncoder(BaseEncoder): """Class to encode text using MistralAI""" - client: Any = PrivateAttr() + _client: Any = PrivateAttr() embedding_response: Any = PrivateAttr() mistral_exception: Any = PrivateAttr() type: str = "mistral"