Open whoabuddy opened 8 months ago
Linking #8 since I also saw white on white
Sorry for the trouble and thanks for the detailed feedback!
Once you run start.sh, it should show you the host/port it's running on, and that includes the pre-built frontend. The frontend directory is only needed for development.
I think the readme doesn't make that clear and I'll update it.
And thanks for pointing out the white text issue. I'll try to figure that out today!
Updated Step 3 in the setup section to:
Step 3
Run ./start.sh to start the app. The first run will take a bit to download the SentenceTransformers models for RAG support.
Once the app has started, you will see a line like:
* Running on http://127.0.0.1:4742
Open the link in your browser to start using Nucleo!
Hope this helps future users. I also think I fixed the white text issue.
Stumbled across the repo and was interested in trying out the assistant concept with some beefed up local model settings.
My env is quite different than what's used here and my goal was to document my journey to help with docs.
Unfortunately, I couldn't get the UI to communicate correctly with my local LLM, and ran out of the extra time I had to play with it.
Everything below is an artifact of that process, in case it helps someone else!
Stumbled across this and wanted to share my manual setup as my local env is a little different:
Backend setup:
Modified config:
Frontend setup:
Note: Just running
npm install
failed due to dependency issues between vite and vite-plugin-singlefile. I could've forced it but explored just updating the minor versions of the packages withnpm-check-updates
first:After the minor upgrade this worked to get it running and accessible on my local network.
The UI was working but had white bg + white text so was really hard to read.
Switched to dark mode, everything looks good but was showing "Connection Error" top right and the settings didn't pick up the correct IP.
Narrowed it down to setting my local IP plus port 5000 for the OpenAI API. The connection error went away.
Chats still weren't working though, and after deleting something I'm stuck with an undefined list that I can't add to.
I also see this error in the console running vite, looks like it's using port 4742 for something?
Maybe next time!