Skip to content

Commit

Permalink
test: improve config consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
lsorber committed Dec 9, 2024
1 parent 319f522 commit aa5cc80
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions tests/test_extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,6 @@
from raglite._extract import extract_with_llm


@pytest.fixture(
params=[
pytest.param(RAGLiteConfig().llm, id="llama_cpp_python"),
pytest.param("gpt-4o-mini", id="openai"),
]
)
def llm(request: pytest.FixtureRequest) -> str:
"""Get an LLM to test RAGLite with."""
llm: str = request.param
return llm


@pytest.mark.parametrize(
"strict", [pytest.param(False, id="strict=False"), pytest.param(True, id="strict=True")]
)
Expand Down

0 comments on commit aa5cc80

Please sign in to comment.