core[patch], langchain[patch]: fix required deps (#14373)

This commit is contained in:
Bagatur
2023-12-07 14:24:58 -08:00
committed by GitHub
parent 7186faefb2
commit b2280fd874
34 changed files with 1528 additions and 109 deletions

View File

@@ -51,6 +51,7 @@ class SudokuChecker(ToTChecker):
return ThoughtValidity.INVALID
@pytest.mark.requires("jinja2")
def test_solve_sudoku(fake_llm_sudoku: FakeLLM) -> None:
"""Test simple question that should not need python."""
tot_chain = ToTChain(
@@ -64,6 +65,7 @@ def test_solve_sudoku(fake_llm_sudoku: FakeLLM) -> None:
assert output == sudoku_solution
@pytest.mark.requires("jinja2")
def test_solve_sudoku_k_too_small(fake_llm_sudoku: FakeLLM) -> None:
"""Test simple question that should not need python."""
tot_chain = ToTChain(