We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, it looks like calls to Instructor.Adapter are being mocked here:
instructor_ex/test/test_helper.exs
Line 1 in 75f1a23
That means that Instructor.Adapter itself, and the modules being called from it, are not actually executed during tests.
E.g. If I add an error like tmp = 1/0 to Instructor.Adapters.OpenAI.do_chat_completion and run the tests locally, they pass.
tmp = 1/0
Instructor.Adapters.OpenAI.do_chat_completion
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, it looks like calls to Instructor.Adapter are being mocked here:
instructor_ex/test/test_helper.exs
Line 1 in 75f1a23
That means that Instructor.Adapter itself, and the modules being called from it, are not actually executed during tests.
E.g. If I add an error like
tmp = 1/0
toInstructor.Adapters.OpenAI.do_chat_completion
and run the tests locally, they pass.The text was updated successfully, but these errors were encountered: