Julius Berger

Results 8 comments of Julius Berger

> works when i navigate to this page from another route, BUT crash the server when i reload the page. Could it be that you have a universal instead of...

The only solution for me right now to this, while still making use of the streaming feature is to catch the error in-place and handle the object in the page....

> I'm wondering if we should allow some more configurations for this. Let's say you want to only convert png to webp and not jpg for some reason 🤔 This...

> hey [@vsowmya105](https://github.com/vsowmya105) did you follow this guide? [docs.confident-ai.com/docs/guides-using-custom-llms](https://docs.confident-ai.com/docs/guides-using-custom-llms) now being here: https://deepeval.com/guides/guides-using-custom-llms#json-confinement-for-custom-llms

> I also had this issue where building my app would include all the icons. The workaround is to import all icons as a default export. I'm using Svelte but...

Disabling write cache and telemetry fixed it for me. To disable write cache, when calling `evaluate`, add a cache config: ```python evaluate(test_cases=..., metrics=..., cache_config=CacheConfig(use_cache=False, write_cache=False)) ``` To disable telemetry, set...

You additionally need to disable telemetry, so it won't write anything. See here https://github.com/confident-ai/deepeval/issues/975#issuecomment-3052576693

@vemel the issue actually got trickier. The boto3-stubs package version itself is not the problem, but the dependency of `mypy-boto3-bedrock-runtime`. The tricky part: Even when forcing the version of stubs...