I’m new to the Jupyter ecosystem but am impressed with what this community has achieved.
I’m trying to integrate another open source software called H2O LLM Studio into the Hub. And right now for testing purposes only testing the Jupyter Server proxy with Jupyter LAB notebook server.
Now when the application opens at 127.0.0.1:8848/h2ollmstudio/ the index.html page opens but then the JS and CSS components are not found (404).
The index.html has relative paths referenced
And yet instead of opening at 127.0.0.1:8848/h2ollmstudio/wave-static/index-23cd8854.js the file is referenced at
127.0.0.1:8848/wave-static/index-23cd8854.js
Setting the base path is also creating similar behaviour.
What could I be doing wrong?? Any tips would be highly appreciated.
You’ll need to fix your app to either return relative paths, or to include a configurable /<prefix>/ in it’s paths. Maybe it’s already supported and it’s a matter of finding out where it’s configured? Otherwise you’ll probably need to talk to the developer, or perhaps submit a PR for that app?
Thanks for the response and suggestion. Yes I’m in touch with the developer of one app which does allow base path to be set and yet im facing challenges.
I was trying to create a workbench of different tools and this will not work now since most applications I need have fixed paths.