Jared Luxenberg
Jared Luxenberg
I ran into this as well; in my case, the issue was that Webpack is aware of AMD `define` and will happily execute the `define` calls and replace the exports...
> Our workaround was to add `var define = null;` via the "banner" option e.g. Replying to myself here; it turns out there are two issues with this approach: (1)...
Using the `ChatOpenAI` model, if the response from the OpenAI API call looks like this: ``` { "code": null, "type": "server_error", "param": null, "message": "That model is currently overloaded with...
@timolins Any chance of getting this merged? I just merged `main` into it so should be good to go. Let me know if there's anything I can do to help!
@zpao Any chance of getting this merged? Let me know if there's anything you need from me.
Ah; it looks like `structuredClone` was added in version 3.20.x of `core-js`: https://github.com/zloirock/core-js/blob/master/packages/core-js-compat/src/modules-by-versions.mjs#L114 `babel-preset-react-app` will use the most recent version of `core-js`, however the `@babel/preset-env` is configured with `corejs` param...
> Heya @jluxenberg, > > Thank you so much for this PR and for the details. `goober` uses `microbundle` to bundle it up, `microbundle` has a `--strict` option. Have you...
This will also happen when using `esbuild` to bundle, since it doesn't emit the "use strict" directive at the top of each bundled module. See this esbuild-based repro: [2023-09-05_esbuild-x-goober_bug.tgz](https://github.com/cristianbote/goober/files/12533791/2023-09-05_esbuild-x-goober_bug.tgz) and...
This error is due to the Fidelio's handling of query string parameters. I've fixed this and submitted a pull request: https://github.com/nikcub/Fidelio/pull/12