Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

core[patch]: Fix unit test that tests error callbacks on chat models #30228

Merged
merged 3 commits into from
Mar 31, 2025

Conversation

cbornet
Copy link
Collaborator

@cbornet cbornet commented Mar 11, 2025

Fixes #29436

@dosubot dosubot bot added the size:L This PR changes 100-499 lines, ignoring generated files. label Mar 11, 2025
Copy link

vercel bot commented Mar 11, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

1 Skipped Deployment
Name Status Preview Comments Updated (UTC)
langchain ⬜️ Ignored (Inspect) Visit Preview Mar 29, 2025 8:47am

@dosubot dosubot bot added Ɑ: core Related to langchain-core 🤖:bug Related to a bug, vulnerability, unexpected error with an existing feature labels Mar 11, 2025
@cbornet cbornet force-pushed the fix-test_stream_error_callback branch from ed7006b to 52d464a Compare March 11, 2025 16:01
llm = FakeListChatModel(
responses=[message],
error_on_chunk_number=i,
)
cb_async = FakeAsyncCallbackHandler()
llm_astream = llm.astream("Dummy message", config={"callbacks": [cb_async]})
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

llm.astream("Dummy message", callbacks=[cb_async]) was incorrect.
Changed it to llm.astream("Dummy message", config={"callbacks": [cb_async]})

cb_async = FakeAsyncCallbackHandler()
async for _ in llm.astream("Dummy message", callbacks=[cb_async]):
pass
eval_response(cb_async, i)
Copy link
Collaborator Author

@cbornet cbornet Mar 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This code was actually not evaluated before because we were exiting the pytest.raises block when getting FakeListChatModelError

@@ -93,34 +96,40 @@ async def test_async_batch_size() -> None:
assert (cb.traced_runs[0].extra or {}).get("batch_size") == 1


async def test_stream_error_callback() -> None:
message = "test"
async def test_error_callback() -> None:
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's no use to test the error callback in streaming. The error is set in LLM.generate()

@@ -83,9 +83,6 @@ class FakeStreamingListLLM(FakeListLLM):
chunks in a streaming implementation.
"""

error_on_chunk_number: Optional[int] = None
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think we want to make this change -- it's breaking the API and users may be using the fake models now in unit tests

Copy link
Collaborator

@eyurtsev eyurtsev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR seems to contain breaking API change that isn't necessary for fixing the unit test.

@dosubot dosubot bot added size:M This PR changes 30-99 lines, ignoring generated files. and removed size:L This PR changes 100-499 lines, ignoring generated files. labels Mar 29, 2025
@cbornet
Copy link
Collaborator Author

cbornet commented Mar 29, 2025

PR seems to contain breaking API change that isn't necessary for fixing the unit test.

I rolledback the changes on FakeListLLM. PTAL.

@cbornet cbornet requested a review from eyurtsev March 29, 2025 08:49
@dosubot dosubot bot added the lgtm PR looks good. Use to confirm that a PR is ready for merging. label Mar 31, 2025
@eyurtsev eyurtsev changed the title core: Fix test_stream_error_callback core[patch]: Fix unit test that tests error callbacks on chat models Mar 31, 2025
@eyurtsev eyurtsev merged commit 8395abb into langchain-ai:master Mar 31, 2025
71 checks passed
@cbornet cbornet deleted the fix-test_stream_error_callback branch April 1, 2025 12:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🤖:bug Related to a bug, vulnerability, unexpected error with an existing feature Ɑ: core Related to langchain-core lgtm PR looks good. Use to confirm that a PR is ready for merging. size:M This PR changes 30-99 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Assertions not executed in test_stream_error_callback
3 participants