Sebastian Husch Lee
Sebastian Husch Lee
Failing unit test fixed by this PR https://github.com/deepset-ai/haystack/pull/9475
@anakin87 I see a few ways to solve this: * Auto convert a Pipeline to AsyncPipeline under-the-hood if a user calls `run_async` on a SuperComponent defined with `Pipeline`. And I...
I was running into this issue as well in https://github.com/deepset-ai/haystack/issues/9916 and I was hoping rolling back to 3.1.4 would fix my issue as mentioned here in this thread. Unfortunately, I...
One idea that could partially help here is to enforce that we provide return types to all of our functions so ```python @component.output_types(documents=List[Document]) def run(self, ...) -> Dict[str, List[Document]]: ......
@davidsbatista looks good!
In our nightly runs of our tutorial notebooks it could be worth updating our conversion script to skip lines containing `pipeline.draw`. Since often our nightly runs fail due to mermaid...
@vblagoje thanks for looking into this! Since we are here could we inject all types of objects into the text? For example, I see that `CT_SectPr` is probably also missed...
Hey @ChinmayBansal I noticed in your PR description you also mention adding support for reasoning content when streaming as well, but I don't see any changes in the code to...
> For streaming, it would have to come through content delta events but Haystack's StreamingChunk does not currently have a reasoning field to handle this. This could be added as...
These are the two tests that are being skipped that should be revisited. Pasting here since the link to the original failing tests is now empty ```python # the following...