Jason Koolman

Results 8 comments of Jason Koolman

The current README should be correct. Port 5000 is used, not port 5005

I experience the same issue with `useCompletion` after awaiting `complete(prompt)`. `isLoading` stayed true whilst the stream already ended. I found that using the `BytesOutputParser` for Langchain resolved the issue. The...

`ThemeProvider` does two things (both on the server as on the client): 1. Adds a **class** to `` 2. Adds a **style** attribute `colorScheme` to `` The problem is that...

This was driving me nuts. Experienced the same issue and can confirm that downgrading to Next 12.3.0 works. Something has changed in [v12.3.1](https://github.com/vercel/next.js/releases/tag/v12.3.1) which is causing the issue. @maneesht The...

@mohamedcherifmo Try using [fetch-event-source](https://www.npmjs.com/package/@microsoft/fetch-event-source) Example usage: ```ts fetchEventSource('/api/chat', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ question, history, }), onmessage: (event) => { console.log(event) } }); ```

Tree shaking does not work for me on a freshly installed nx workspace using Webpack and Babel. ### Reproduce issue 1. Create workspace by running `npx create-nx-workspace@latest monorepo` 2. Select...

+1, fixes https://github.com/MichalZalecki/storage-factory/issues/29

I built upon @jordanbrown0 's code and suggestions and came up with the following code: ```scad // Example usage write(["This", "is", "multiline", "text."], font = "Liberation Sans", size = 10);...