Glenn Maynard

Results 31 comments of Glenn Maynard

I wonder how this could happen, since AFAIK rsync doesn't delete files unless the --delete option is given, which it isn't by default. I'm worried about an "it deleted all...

Can you show what's not working for you? I haven't been in Maya land recently, but it loads for me in the versions of 2023 and 2024 I have installed.

It works for me with the v1/completions endpoint if I set logprobs: 10 in the request, at least with the exl2 backend.

One way of doing this could be to batch the generation, but only return the first response and cache the others. If the same request is made again, just return...

The UI wouldn't need to show every stream in parallel, just the currently-selected response.

I was searching crbugs for this just now and ran across this: https://issues.chromium.org/issues/41477953 Looks like it was filed in 2019 and somebody claimed the bug... a few hours ago. Fingers...

FYI, I don't seem to be able to reproduce this anymore. (This is one of those things that's really annoying when it happens, but you don't really notice when it...

A workaround that doesn't require modifying the package is to assign the missing functions that you need. For example: ```js import { NativeModules } from 'react-native'; import AppleHealthKit from 'react-native-health';...

A workaround can be to set options after opening with container.options.update() instead of passing them to av.open. I'm guessing there are options that you want set during av.open, but it's...

Seems like it happens with any MPEG: ``` ffmpeg -f lavfi -i color=size=320x240:rate=25:color=black -t 1 -an test.mpg >>> import av >>> av.open('test.mpg', mode='r', options={'abcd': 'efgh'}) ``` It doesn't discover the...