diff --git a/tests/test_chains_template.py b/tests/test_chains_template.py index 63e236018..1c28f6536 100644 --- a/tests/test_chains_template.py +++ b/tests/test_chains_template.py @@ -23,7 +23,6 @@ def test_conversation_chain(client: TestClient): "ConversationChain", "LLMChain", "Chain", - "Serializable", "function", } @@ -108,7 +107,6 @@ def test_llm_chain(client: TestClient): # Test the base classes, template, memory, verbose, llm, input_key, output_key, and _type objects assert set(chain["base_classes"]) == { - "Serializable", "function", "LLMChain", "Chain", @@ -176,7 +174,6 @@ def test_llm_checker_chain(client: TestClient): # Test the base classes, template, memory, verbose, llm, input_key, output_key, and _type objects assert set(chain["base_classes"]) == { - "Serializable", "function", "LLMCheckerChain", "Chain", @@ -211,7 +208,6 @@ def test_llm_math_chain(client: TestClient): # Test the base classes, template, memory, verbose, llm, input_key, output_key, and _type objects assert set(chain["base_classes"]) == { "function", - "Serializable", "LLMMathChain", "Chain", }