JonLuca De Caro
JonLuca De Caro
Fixes https://github.com/chroma-core/chroma/issues/366
A temporary workaround for anyone experiencing this is to just override the defaults ``` // @ts-ignore this.collection.api.axios.defaults.maxContentLength = Infinity; // @ts-ignore this.collection.api.axios.defaults.maxBodyLength = Infinity; ```
Nope you shouldn't need anything like this for fetch - this is an internal axios config. Awesome, looking forward to that PR!
This also crashes the client, since `response` is undefined and you're trying to access `response.data`
Sorry about that, we export more types now in v11.2.2 and v11.2.4
I dont think Object.assign is a good solution, as it only works for top level properties. I'm open to using @udamir's library, but I'm not sure how to best integrate...
This is fixed in v11+
What node version are you using? We didn't change anything with the build, although there was an async import of node-fetch in there Can you try v11.2.2?
Did you bump the version to that? There's no references to node-fetch in the version 11.2.2. Can you try clearing your node modules and let me know if it still...