Kevin Gibbons
Kevin Gibbons
Per [this twitter thread](https://twitter.com/theshawwn/status/1632569215348531201). See commit [here](https://github.com/shawwn/llama/commit/40d99d329a5e38d85904d3a6519c54e6dd6ee9e1).
First, this is extremely cool. Second: I note that there are [an absolute ton](https://civitai.com/) of models derived from Stable Diffusion around. Depending on your device, you might be able to...
[This](https://github.com/1rgs/jsonformer) is a neat idea: basically, constrain the output to a particular subset of tokens so that you are guaranteed to generate data of a particular format, and also fill...
The new [function calling API](https://openai.com/blog/function-calling-and-other-api-updates) is neat, but there's no docs anywhere I can find which tell you how many tokens your functions will cost. Can you update the [sample...
The [escape function](https://github.com/lionel-rowe/deno_std/blob/c8673a43e8dbdf09ef8406539bd527bf41cc8b32/regexp/escape.ts) neglects to escape leading digits, which means it doesn't actually work in all contexts: ```js // ten characters, followed by the first character again, followed by the...
### What problem are you trying to solve? Body has an `.arrayBuffer()` method, but that's [almost never what you actually want](https://github.com/w3ctag/design-principles/issues/463), since you can't read out of a buffer directly...
### What is the issue with the Web IDL Standard? As of [this proposal](https://github.com/tc39/proposal-resizablearraybuffer) / [PR](https://github.com/tc39/ecma262/pull/3116), the `[[ByteLength]]` slot on TypedArrays and DataViews can be `~auto~` instead of an integer....
[Proposal repo](https://github.com/tc39/proposal-arraybuffer-base64). ~It's only stage 2, so I'm marking this as a draft for now. I'm hoping to ask for stage 3 at the coming meeting, and that requires "sufficient"...
The [Float16Array proposal](https://github.com/tc39/proposal-float16array) is now stage 3 (🎉). That means it's time for tests! Here's the things which occur to me offhand; feel free to edit this issue to add...