Yvan
Yvan
Hi. First of all, thanks for Numo. I propose to make numo ractor-safe in order to use it with ruby 3 ractors by calling rb_ractor_safe(true) in the C-code. Otherwise it...
Hi, I found out Context::Pipeline#collect requires block: https://github.com/socketry/async-redis/blob/da5a38cef1b84463f9374bab076006b88fa9a811/lib/async/redis/context/pipeline.rb#L93 What's the purpose of this yield? It does nothing but just the block execution.
Hi. Thirst of all, thanks a lot for the gem. But there's an issue with keywords arguments passing that leads to ``` ArgumentError: wrong number of arguments (given 3, expected...
Hi, first of all, thanks for the Goofys. There's an issue that can be reproduced with the following steps: 1. open file with O_RDWR|O_CREAT|O_TRUNC flags 2. seek 0 bytes with...
According to [ollama docs](https://github.com/ollama/ollama/blob/main/docs/api.md#request-35) the embeddings path should be `api/embed`. The Ollama server doesn't reply correctly when requested at `api/embeddings`. ``` curl http://ollama.local:11434/api/embeddings -d '{"model": "llama3.3:70b", "input": ["Why is the...
Hi, @ioquatix. Starting a container from Async block fails after container instance block completion or on first async code encounter. ``` app % irb 3.3.6 :001 > require 'async' =>...