Guillaume Calmettes
Guillaume Calmettes
Hello, Thanks for this project! `make rofi` was failing due to the need of `xcb-aux` as dependency. This MR adds it.
Once Scipy is included, would Scikit-Learn be trivial to add? (dependencies Numpy/Scipy)
- Add uploads minio backend (see https://github.com/redpwn/rctf/issues/609) - Update fastify stack to remove [deprecated expect-ct header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Expect-CT) (see https://github.com/helmetjs/helmet/issues/310) which are enforced in latest Google chrome
**Is your feature request related to a problem? Please describe.** Currently, the files uploads providers are limited to either local path or GCS for object storage, which might be too...
fix: https://github.com/envoyproxy/ratelimit/issues/730 In the current implementation of the `ratelimit` service, the `hitsAddend` value that is associated with each request is set to a minimum of `1`. This is done to...
The current minimum `hitsAddend` value is set to `1` (enforced via a [Max function](https://github.com/envoyproxy/ratelimit/blob/28b1629a21e885bdd2b527d6a1c1de8483dc47d4/src/redis/fixed_cache_impl.go#L52)). This prevents uses cases where the request itself would not carry any "weight" (e.g.: request to...
This is a rework of https://github.com/vllm-project/vllm/pull/13039 following the inputs from @robertgshaw2-redhat (see in particular [this comment](https://github.com/vllm-project/vllm/pull/13039#issuecomment-2648030594)) Currently only `ValueError` exceptions are catched for the preprocessing input step on the frontend...
The `MistralTokenizer` [does not currently support](https://github.com/vllm-project/vllm/blob/bc6ccb987877000ec271e0076317b03a66cde4bc/vllm/transformers_utils/tokenizers/mistral.py#L455) the `skip_special_tokens=False` argument. Because an `assert` is used to check for the `skip_special_tokens` value, if one makes a requests passing the `"skip_special_tokens": false` parameter...
This PR ensures the error message from the exception caught during the chat templating step is correctly propagated to the client. The previous implementation converted the error so it is...
When request is made with `"tool_choice":null,"tools":[]` in a json payload, vllm returns a `500 Internal Server Error`. The minimalist example below triggers the error: ``` curl -X POST -H "Content-Type:...