You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we forget to wrap types coming from the optional dependency in forward references in method signatures (hf_output: TextGenerationStreamOutput instead of hf_output: "TextGenerationStreamOutput")
tests do not catch the error because the test environment contains the optional dependency
we figure out the error from the nightly failures in tutorials or core-integrations, which also test with haystack main branch but without the optional dependencies.
I remember some attempts to solve this problem in the past (I can't find the issue).
I would like to create a testing workflow, which
uses the default environment - no optional dependencies
tries to detect and import modules
raises an error or exits
The text was updated successfully, but these errors were encountered:
One thing that happens often:
hf_output: TextGenerationStreamOutput
instead ofhf_output: "TextGenerationStreamOutput"
)test
environment contains the optional dependencyI remember some attempts to solve this problem in the past (I can't find the issue).
I would like to create a testing workflow, which
default
environment - no optional dependenciesThe text was updated successfully, but these errors were encountered: