Skip to content

Commit

Permalink
fix: remove missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanleomk committed Nov 21, 2024
1 parent 8652b9c commit c2924c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/llm/test_writer/evals/test_sentiment_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class SentimentAnalysis(BaseModel):

@pytest.mark.parametrize("model, data, mode", product(models, test_data, modes))
def test_writer_sentiment_analysis(
model: str, data: List[Tuple], mode: instructor.Mode
model: str, data: list[tuple[str, Sentiment]], mode: instructor.Mode
):
client = instructor.from_writer(client=Writer(), mode=mode)

Expand Down

0 comments on commit c2924c4

Please sign in to comment.