Sebastian Husch Lee
Sebastian Husch Lee
**Is your feature request related to a problem? Please describe.** Currently when a user specifies `tools_strict=True` when using the `OpenAIChatGenerator` we only update the provided `tool_schema` in a basic way....
**Describe the Feature** It would be great to add support for tool calling when running `HuggingFaceAPIChatGenerator` in streaming mode. As shown here https://github.com/deepset-ai/haystack/blob/2ccdba3e99024072c69b4752a6478284813dd182/haystack/components/generators/chat/hugging_face_api.py#L411-L412 we only process the generated text here...
**Auto Input Mapping Creation** In SuperComponents if an input mapping is not provided by the user we automatically create one. However, the way we try to create one tries to...
Original request in this [comment](https://github.com/deepset-ai/haystack/pull/9290#issuecomment-2850140729) > I think it would be great if we could update our streaming docs [here](https://docs.haystack.deepset.ai/docs/choosing-the-right-generator#streaming-support) to show our current `print_streaming_chunk` implementation instead of the generic...
Follow up to this issue: https://github.com/deepset-ai/haystack/issues/9011#issuecomment-2854332627 We are probably overusing deepcopying of pipeline and component inputs and outputs especially when setting tags in tracing. It's probably not needed in this...
I had a chance to talk with @deep-rloebbert and gather some feedback on the recent of Agent and the changes that came with Tools (e.g. adding `outputs_to_string`). The naming of...
**Is your feature request related to a problem? Please describe.** Basically, the problem is the converter components in Haystack (e.g. `DOCXToDocument`, `XLSXToDocument`, etc.) don’t support the legacy Microsoft office file...
After some discussion with @mathislucka we thought it could be useful to add something like a `to_code` utility method to - make it easier for users to edit and modify...
**Is your feature request related to a problem? Please describe.** We've found in practice that cleaning up files before being used in RAG pipelines does increase overall performance. For example,...
**Is your feature request related to a problem? Please describe.** The `create_tool_from_function` is very useful as well as the `tool` decorator for not requiring users to have to specify `description`...