alex
alex
> For self-hosted instances? If so you can dump the (single) application package deployed using the deploy/v2 API: https://docs.vespa.ai/en/reference/deploy-rest-api-v2.html#content-get Ok yes that would work for some of our cases. But...
Hi @kkraune thanks for the update -- that makes sense. I'll watch out for any updates thanks!
Still encountering this issue and can recreate with different `numpy` versions (I just pin `onnxruntime = "==1.16.3"` for Cent OS 7 compatibility). This produces seg fault: ``` numpy = "==2.0.0"...
We have a similar situation where fuzzy matching an (`array`) indexed field in streaming mode would be very convenient. If we just try fuzzy matching we can see that ```...
I think an implementation of https://github.com/vespa-engine/vespa/issues/29549 would solve this? We have the same issue (each doc has many paragraphs) and in streaming mode we sometimes experience latency upper bounded by...
Same issue here: `Unable to find installation candidates for onnxruntime (1.18.0)`. Weirdly it only happens when running within my Dockerfile. Is this an issue related to timeouts to the package...
Just to clarify, poetry has no way to reinstall a path dependency? If such a dependency has an unversioned change I need to either: - clear the entire cache and...
Hi @vekterli sorry I forgot to reply. The use case is fuzzy prefix matching, so we're looking at: `"partici"` to match `"participate", "participant", ...` `"participent"` to match `"participant", ...` You...