🔥 refactor(test_chains_template.py): remove unused import of Serializable
The import of the Serializable class is no longer needed in the test_chains_template.py file, so it has been removed to improve code cleanliness and remove unnecessary dependencies.
This commit is contained in:
parent
7e2e9809f2
commit
8088565768
1 changed files with 0 additions and 4 deletions
|
|
@ -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",
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue