Veylkh

Results 6 comments of Veylkh

It seems to me that the references are split between CJS and ESM in the package. Meaning that /`src/` becomes `/dist/esm `or `/dist/cjs`. In my case, it was react-scripts's source-map-loader...

Some differences I've noticed: #### 1.1.3 package.json ```json "main": "", "types": "index.d.ts", ``` #### 2.1.3 (latest) package.json ```json "main": "dist/cjs/index.js", "module": "dist/esm/index.es.js", "jsnext:main": "dist/esm/index.es.js", "files": [ "dist" ], "types": "dist/index.d.ts",...

Had it to work by simply running these two: ``` pip3 uninstall torch torchvision torchaudio pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118 ``` Nothing else required.

> thanks for the PR. I am going to make it so this allows any openai sdk version above the current. I was initially unsure if I could suggest this,...

Made the change, but you might want consider evaluating similar changes to the other dependencies, of course.