earonesty

Results 181 comments of earonesty

note: the polling observer, if you're using it, can't see changes if they happen in the same second

its not supported. im trying to build it now. not too hard, but really have to mess with the the llama pipeline. you'll pay a cost with a lot of...

got it to work, put up a patch. not that hard. but i had to access the private pipeline object to stuff things in the conversation.

it's the main program that runs the model and joins the results

shouldn't this just be an option: ```mypackage = { path = "../mypackage/", develop = true, editable_mode=strict}``` then poetry can pass that flag along when installing? or even ```mypackage = {...

Yes, it has a config settings flag. Look at docs for the build command On Sun, Mar 31, 2024, 10:37 PM Anderson Bravalheri ***@***.***> wrote: > shouldn't this just be...

isnt this the signature scheme used by most of the "crypto" ecosystem, as well as most "identity based encryption" products? seems quite broadly used given the 200 billion dollar market

Functioning patch is available here https://rt.cpan.org/Public/Bug/Display.html?id=55514

in the root build gradle file: ``` ext { hermesEnabled = (findProperty('expo.jsEngine') ?: "hermes") == "hermes" } ```

i generally prefer explicit factories (from_string, from_bytes) over inferred behavior. things like multiple inheritance, builtins, isinstance can be tricky/break things when automagically deducing argument types - especially where strings are...