Tobias Wochinger

Results 22 issues of Tobias Wochinger

### Related Issues - fixes #issue-number ### Proposed Changes: ### How did you test it? ### Notes for the reviewer ### Checklist - I have read the [contributors guidelines](https://github.com/deepset-ai/haystack/blob/main/CONTRIBUTING.md) and...

type:documentation
topic:CI
2.x
topic:core

**Describe the bug** A pipeline fails validation if my component imports `from __future__ import annotations`. If I drop the line, the validation passes. **Error message** ``` E haystack.core.errors.PipelineConnectError: Cannot connect...

Seems both demos are currently broken: * `explore_the_world`: broken because ElasticSearch fails to come up ``` explore_the_world-elasticsearch-1 | {"type": "server", "timestamp": "2023-03-31T11:48:07,987Z", "level": "ERROR", "component": "o.e.i.g.GeoIpDownloader", "cluster.name": "docker-cluster", "node.name": "397ae3798dd8",...

**Describe the bug** Looking at this code [here](https://github.com/deepset-ai/haystack/blob/201db5b28813d25066f60e0e710d501623f79682/haystack/components/routers/file_type_router.py#L89): [The `ByteStream` class has an attribute `mime_type`](https://github.com/deepset-ai/haystack/blob/fe0ac5c4a280b6196fc984d580d3dd2675f893ae/haystack/dataclasses/byte_stream.py#L14). We should rather using this than using the metadata for this. **Error message** None **Expected...

P1

Hi y'all, I'm currently writing a wrapper for the standard logger to make the log calls look a certain way. The problem is that my wrapper ends up in the...

enhancement
stdlib

Hi, I suggest to add support for the etag field. The change would be just a few lines in client.py: ```python find_attributes = { 'created': ".//{DAV:}creationdate", 'name': ".//{DAV:}displayname", 'size': ".//{DAV:}getcontentlength",...

the example is currently tied to the 1.0.0 release. Update it to the latest release.

- [ ] document usage - [ ] add `slots mapped in domain`

**Problem** First of all, I really like syntax to create selectors. Very clean and pythonic 💯 In our case we'd like to pass in the selector via environment variable. This...

**Version** 24.4.0 **Code to reproduce** ```python def test_structlog(): structlog.configure(processors=[ExceptionRenderer(ExceptionDictTransformer(show_locals=True)), JSONRenderer()]) logger = structlog.get_logger(__name__) try: my_variable = "number" raise ValueError() except ValueError as e: logger.exception("An error occurred") ``` **Problem** The local...