Currently running into this error using `"@e2b/code-interpreter": "^0.0.5"`: ``` RPC Error (-32000): error reading file '/root/.jupyter/kernel_id': open /root/.jupyter/kernel_id: no such file or directory ``` This is the code I'm using to create a new Sandbox that's hitting the error: ``` const newSandbox = await CodeInterpreter.create({ apiKey: process.env.E2B_API_KEY, metadata: { session_id: this.sessionID, }, }); ``` If I roll back to an earlier version i.e: `0.0.3` or `0.0.4`, I get a different error about not being able to instantiate a Sandbox directly.