Trent V.
Trent V.
ok I figured it out - sorry for my confusion here. normally I run ollama from a podman container so the process is a bit different for me. The install...
>So now i stop the ollama using sudo systemctl stop ollama and type in ollama serve and restart from the beginning? Thanks so much for the help! you don't need...
try `ollama run dolphin-mixtral:latest` instead of `ollama run dolphin:mixtral:latest`
Hope you got this working. Some information reguarding how this works: When Ollama is installed on Linux it sets up a 'Service' that allows ollama to run `ollama serve` in...
This looks like a hardware acceleration issue with the terminal emulator. I could be way off here but I remember seeing stuff like this with Alacritty (another hardware accelerated terminal...
found and cleaned up the occurences of the overflow in the configmap file as well. I dont see any others with a quick grep so that should cover all the...
I am an absolute noob and set up another branch have been attempting to do this (but running into problems with the imports). Thinking through it I think you're right...
ok so while trying to reproduce - I have found that I may be fundementally misunderstanding the issue here. It seems that in go int and int64 are both 64bit...
``` lbs.set("modifiedAt", strconv.Itoa(int(time.Now().Unix()))) ``` interesting looks like its casting Int (32bit) in an int64 (which is what is returned by time.Now().Unix()). I suspect the reason is that Itoa requires a...
That is a fantastic approach too. I know the input is only the unix time so it shouldn't be much of a concern but trying to think about safety and...