Bazyli Brzóska

Results 289 comments of Bazyli Brzóska

@Whiddershin How do you control the position of the added items with gather?

Sorting shouldn't be done on the idAttribute, but on an arbitrary attribute. A chat can receive 2 messages at exactly the same time and thus time cannot always be used...

As long as the insertion sort method is configurable, the proposed solution should be fine.

The unix philosophy generalizes `stderr` for writing information _about_ errors, not necessarily just errors themselves. Check out how tools like `curl` use `stderr` for diagnostic output (progress meters, and other...

From my perspective it is definitely a bug and might just force me to switch away from `moon` to another task runner if you confirm that you don't plan to...

Would you suggest not modeling this dependency using the DAG and instead splitting the commands run on the CI into two serial commands? Like this: ```bash $ moon run :clean...

Here's a pure JavaScript / TypeScript port of tiktoken: https://github.com/niieani/gpt-tokenizer Playground online: https://gpt-tokenizer.dev

@shylockWu they're not incorrect. You've set gpt-tokenizer to tokenize using GPT-3.5/GPT-4 encoding, whereas the official openAI token calculator uses the older GPT-3. If you switch the playground to use the...

You can keep `compilerOptions.strict: true`, you just need to set `compilerOptions.alwaysStrict: false`. But yeah, this should be fixed. Ideally the extension should remove 'use strict' before executing the file internally.