Slava Razum
Slava Razum
Hi @pernielsentikaer 🙌 Checked latest change and the behavior has changed from what was originally planned. Separate **Pick Color** command just copies a result to clipboard. When you run **Pick...
@fe9lix I want to achieve opening color picker from 2 different commands with 2 different behavior. Running one command from another is not suitable to provide different results. You can...
@pernielsentikaer Made some additions in #3360 New issue with "root window flickering" appeared. Details in description.
@pernielsentikaer This one only implement picking in default format with "root window flickering" issue and doesn't cover [picking in other formats](https://github.com/raycast/extensions/blob/e9a20ecbdc59a2d7b2cae6c2b704a7f59e44b1f9/extensions/color-casket/src/components/ColorPickers.tsx#L86). In https://github.com/raycast/extensions/pull/3360 behavior with other formats is already implemented....
Have anyone found a reason? I get duplicate messages issue in random order. SocketsId sends correctly.
An error occurs when a component is mounted after the component initialization: ``` Error: domTarget must be defined ``` Using with `onMounted()` hook doesn't help. ```js onMounted(() => { useDrag(dragHandler,...
In [the current draft](https://github.com/openai-php/client/pull/21) we trying to save the same [`CreateResponse`](https://github.com/openai-php/client/blob/main/src/Responses/Completions/CreateResponse.php) object which allows to iterate over himself when stream response was requested.
In the [new commit](https://github.com/openai-php/client/pull/21/commits/a1f2d8ad42976199595c69508e3d90f3fd32484f), replaced custom `Stream` object with `Generator` to stay more native. You can iterate directly through returned generator object: ```diff - foreach ($stream->read() as $item) { +...
@nunomaduro @gehrisandro Any thoughts or suggestions? ðŸ’
@nunomaduro The main reason is that the `stream` parameter is optional and false by default [in OpenAI API](https://beta.openai.com/docs/api-reference/completions/create#completions/create-stream). Stream response requires to handle iterable type. It might be confusing if...