Zepp

Results 21 comments of Zepp

> I tried Parallels Desktop, they have a 'Rosetta' switch in vm settings, and even when I enable it, I can still share my usb device into the vm. I...

> TBD later after the switch to Ava 11 Now that Avalonia 11 officially released, any updates?

Just came across the same issue again, and this time I finally figured out the reason. Inside `darling shell`, the filesystem you see is synthesized by OverlayFS, which lives in...

`sudo` is unnecessary, you can symlink the file in Linux host directly: ```shell mkdir -p ~/.darling/private/etc ln -s /Volumes/SystemRoot/etc/resolv.conf ~/.darling/private/etc/ darling shutdown darling shell ``` Ideally, darling should take care...

Notes after some investigation (currently too busy to work on it): `csrutil enable --without debug` is sufficient for `DYLD_*` environment variables to work [This gist](https://gist.github.com/leiless/59c05535fbaf1bce0593235e4d50f40d) can check SIP status programatically,...

OK seems like it's a feature. But I still wonder why `typeof(zeros() + ones()) == Float64`, note there's no broadcast. Intuitively speaking, the sum of two arrays should always be...

IMHO, we should make things consistent here, if `ones() .+ ones()` returns a scalar while `ones() + ones()` returns an array, people will get confused. My suggestion is, broadcast SHOULD...

I succeeded with - patch #19075 - `--enable-auto-tool-choice --tool-call-parser hermes --chat-template tool_chat_template_deepseekr1.jinja`, template from #18874 ----- EDIT: my startup and test script (based on vllm 0.9.0) ```bash export VLLM_HOST_IP=1.2.3.4 export...

@alllexx88 @Zongru-Wang I updated my comment with setup & test script, you can give a try

> I can't change the serving_chat.py by sed, but does the response means it works? Yes, modifying `serving_chat.py` is to solve the json invalid error > If it works, my...