Tom Leamon
Tom Leamon
Concise solutions for both horizontal and vertical. ```ts export const getStyleHorizontalLock = style => style?.transform ? ({ ...style, transform: `translate(${style.transform.split(',')[0].split('(').pop()}, 0px)` }) : style ``` ```ts export const getStyleVerticalLock =...
> Other problems I found: In the example `index.js` file the source of `whisper-node` is wrong. Changed `../../build/Release/whisper-addon` to `../../build/bin/Release/whisper-addon.node`. I had to also download the model, but that is...
I am experiencing this issue as well. Thank you @DustinBrett for the suggestion, modifying the code to use an offscreen canvas worked.
I'm having the same issue and it's driving me crazy. I need to fix this for my use case.
I was able to fix this issue. I'll share my solution, but I don't plan on making a pull request. Feel free to add it to the project if you...
Update: also got it working for touch: ```jsx // Slider.tsx const handleStartDrag = ( clientX: number, clientY: number, originalEvent: React.MouseEvent | React.TouchEvent ) => { const { width, height, left,...
Really looking forward to this feature. Once it's live we should put together a demo that uses a websocket server and client to speak with the language model in real...
I'm using V3 successfully, but it doesn't work with ChatGPT Plus accounts, unfortunately.
Might be a duplicate of #638
That does work, but it seems to take significantly longer to use the tool and respond compared to using a ContextChatEngine. Is this a limitation of function calling APIs? Or...