From 611b4d6709d27dc9840eabd65353484d65a9f0e7 Mon Sep 17 00:00:00 2001 From: Gabriel Almeida Date: Thu, 6 Apr 2023 18:14:49 -0300 Subject: [PATCH] fix: linting --- 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 7d5116bb3..e5bfe7e6e 100644 --- a/tests/test_llms_template.py +++ b/tests/test_llms_template.py @@ -438,7 +438,7 @@ def test_chat_open_ai(client: TestClient): assert template["_type"] == "ChatOpenAI" assert ( model["description"] - == "Wrapper around OpenAI Chat large language models.To use, you should have the ``openai`` python package installed, and theenvironment variable ``OPENAI_API_KEY`` set with your API key.Any parameters that are valid to be passed to the openai.create call can be passedin, even if not explicitly saved on this class." + == "Wrapper around OpenAI Chat large language models.To use, you should have the ``openai`` python package installed, and theenvironment variable ``OPENAI_API_KEY`` set with your API key.Any parameters that are valid to be passed to the openai.create call can be passedin, even if not explicitly saved on this class." # noqa E501 ) assert set(model["base_classes"]) == { "BaseChatModel",