Shroototem

Results 16 comments of Shroototem

Same issue here. Same version too.

But we could always use more. XD I'm trying to get the lowest MSPT possible on my server. Really just for overhead.

That's fair enough. I just always want my servers to run with max performance in mind.

CC: Tweaked Speaker: https://github.com/cc-tweaked/CC-Tweaked/blob/mc-1.16.x/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java#:~:text=Push%20position%20updates%20to%20any%20speakers

In most cases the bots needs to be told how to use `newAction` from within the profile json file. It's also not guaranteed that the specific model will understand. ```json...

Are you able to supply any logs or the command you are giving? Maybe the settings you are using as well?

You should be able to specify the embedding model by adding `"embedding": "ollama",` in the profile json file. ex. ```json "name": "andy", "model": { "api": "ollama", "model": "llama3.2-vision" }, "embedding":...

If you have multiple bots then it requires you to use the `/msg` \ `/w` command to whisper to each bot.

Make sure you have set the correct profile uncommented and set the model parameters correctly. **settings.js** ```js "profiles": [ // "./andy.json", // "./profiles/andy_npc.json", // "./profiles/gpt.json", "./profiles/gemini.json", // "./profiles/claude.json", // "./profiles/llama.json",...

You can use the command `ollama ps` to see if you have a running model. If not then you can use `ollama run llama3.2` or and ollama model you want....