🔀 chore(test_llms_template.py): rename base class from "Serializable" to "BaseLLM" for clarity and consistency

The base class "Serializable" has been renamed to "BaseLLM" to provide a more descriptive and consistent name for the class. This change improves clarity and maintainability of the code.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-06-29 19:46:08 -03:00
commit 9fe13ca52d

View file

@ -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",