From 9fe13ca52da28982789ee309d098d1669f4e7ed8 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 29 Jun 2023 19:46:08 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=80=20chore(test=5Fllms=5Ftemplate.py)?= =?UTF-8?q?:=20rename=20base=20class=20from=20"Serializable"=20to=20"BaseL?= =?UTF-8?q?LM"=20for=20clarity=20and=20consistency=20The=20base=20class=20?= =?UTF-8?q?"Serializable"=20has=20been=20renamed=20to=20"BaseLLM"=20to=20p?= =?UTF-8?q?rovide=20a=20more=20descriptive=20and=20consistent=20name=20for?= =?UTF-8?q?=20the=20class.=20This=20change=20improves=20clarity=20and=20ma?= =?UTF-8?q?intainability=20of=20the=20code.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_llms_template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_llms_template.py b/tests/test_llms_template.py index 859b722e1..7679ba9c0 100644 --- a/tests/test_llms_template.py +++ b/tests/test_llms_template.py @@ -516,7 +516,7 @@ def test_chat_open_ai(client: TestClient): == "Wrapper around OpenAI Chat large language models." # noqa E501 ) assert set(model["base_classes"]) == { - "Serializable", + "BaseLLM", "BaseChatModel", "ChatOpenAI", "BaseLanguageModel",