Alrik Wendel

Results 39 comments of Alrik Wendel

@ianldgs I gave up on finding a reliable node zstd implementation. Ended up using node's native brotly compression at the lowest compression level, which is very fast and compresses at...

I second this, streaming experience is currently not good and only seems to return all chunks in bulk instead of as they come in. This is especially problematic with large...

I solved it using the inbuilt node http / https module: ``` const prompt = "Sample prompt. What's 2+2?" const req = https.request({ hostname:"api.openai.com", port:443, path:"/v1/completions", method:"POST", headers:{ "Content-Type":"application/json", "Authorization":"Bearer...

Yes I also found this strange, sometimes the OpenAI API returns multiple segments of `data: {}` that are not comma seperated and hence hard to parse as JSON What I...

## Developer Feedback (continuation) see Discussion in [Chromium Issue](https://bugs.chromium.org/p/chromium/issues/detail?id=600482&q=component%3AInternals%3ECompositing%3ERasterization%20will-change&can=1) which led to this (abandoned) [proposal](https://docs.google.com/document/d/1P4I2MxA0E1eyf4ihULaktIk4UdOtIDLWg9Tp2Y7g_-M/edit) Another relevant discussion of the need in another abandoned [proposal at CSS Drafts ](https://github.com/w3c/csswg-drafts/issues/236#issuecomment-272585914) Relevant...

This looks very good! Great API and implementation from what I can tell. Seems to work well for smaller sample sizes. I am currently running into an error on Windows...

Yes, changing the optional Parameters to a single (optional) config object where each entry is also optional and has a sane default isa a great idea (in typescript this would...

I just rewrote my benchmark to use the Class interface ... and unfortunately it is not looking good so far. It seems to perform exponentially worse the more samples I...

Ah, I see, since it's dependent on the Rust implementation. So this seems to be the blocking issue for now: https://github.com/PSeitz/lz4_flex/issues/21 and if it's fixed there, one could also incorporate...