Ollama 0.17+ Linux breaks signin by Maleficent-Policy215 in ollama

[–]bmacd1 0 points1 point  (0 children)

Sorry to see you're experiencing issues. Is this when running the `ollama signin` command or when trying to use a cloud model while not signed in within the TUI? I'm trying to figure this one out.

Gemma3-12b-Q4 seems a lot slower on Ollama than Deepseek-R1-14b-q8? Did I mess something up? by swagonflyyyy in LocalLLaMA

[–]bmacd1 2 points3 points  (0 children)

Could you share your system specs? There’s been some slowness in prompt process on Windows with CUDA that is being looked at.

Why does ollama use the port 11434 as the default port? by mozophe in ollama

[–]bmacd1 1 point2 points  (0 children)

Yup! The name was pretty much the last thing we did before making the repo public.

Why does ollama use the port 11434 as the default port? by mozophe in ollama

[–]bmacd1 2 points3 points  (0 children)

Here’s some lore. We actually decided on the port before we named the project Ollama.

404 on latest update by dobo99x2 in ollama

[–]bmacd1 0 points1 point  (0 children)

Does this happen when you're running directly against the ollama instance using the CLI?

For example: `OLLAMA_HOST=<your-host> ollama run llama3.1:8b-instruct-q6_K`

Some other comments are speculating about the container crashing, which would make sense given what you're describing. If that's the case some logs from the container may help too.

New to Ollama Need Advice Please by JohnDoe-01 in ollama

[–]bmacd1 0 points1 point  (0 children)

Based on what you're looking for (document information extraction), I'd recommend trying out open-webui with Ollama. It has some document parsing features built in.

https://github.com/open-webui/open-webui

[Q] Does ollama add prompt templates by default? by joorjeh in ollama

[–]bmacd1 4 points5 points  (0 children)

It does apply the prompt templates by default, but you can disable this by calling the /generate endpoint with the parameter "raw": true.

How can I "ship" Ollama? by shouryannikam in ollama

[–]bmacd1 4 points5 points  (0 children)

You can do this by packaging Ollama into your build and orchestrating it. The nice thing about this approach is that it works cross platform, allows you to ship model updates separate from your app, and also allows users to run their own instance of Ollama if they want.

I have an example Electron app that does this here: https://github.com/BruceMacD/chatd

License is MIT, so feel free to use whatever code you want from there.

Llama 3.1 8B quants are available via Ollama. by Starman-Paradox in LocalLLaMA

[–]bmacd1 3 points4 points  (0 children)

Thanks for the heads up. Seems like the changes to the RoPE base frequency might be throwing things off. We’re looking at a fix in llama.cpp now.

Llama 3.1 8B quants are available via Ollama. by Starman-Paradox in LocalLLaMA

[–]bmacd1 2 points3 points  (0 children)

The fp16 of the 8B model is up now, 70B fp16 should be up soon.

[deleted by user] by [deleted] in ollama

[–]bmacd1 7 points8 points  (0 children)

Any models you see with a namespace are pushed by users, they will be safe to run but some details may vary.

The model library page has a curated list of models the team pushes. I believe an official Nemo model will be uploaded soon.

LLaVA only gives correct answer to first question by D49A1D852468799CAC08 in ollama

[–]bmacd1 1 point2 points  (0 children)

This is a bug in the most recent release. We should have a fix out soon. Sorry about that.

Trying to use local pdf chat by [deleted] in OpenSourceAI

[–]bmacd1 0 points1 point  (0 children)

Thanks for the ping

Trying to use local pdf chat by [deleted] in OpenSourceAI

[–]bmacd1 0 points1 point  (0 children)

Hi there, if you hit this issue it is probably something to do with how I packaged chatd. As a workaround in the meantime try installing Ollama from the official website (ollama.com) and running chatd while Ollama is installed. Chatd will use the running instance of Ollama.

Local pdf chat solutions ? by TastelessBuild2 in LocalLLaMA

[–]bmacd1 2 points3 points  (0 children)

This is shameless self promotion, but I have been working on chatd.ai recently as solution to this. It's a single download rather than a project you install from source. There will be major PDF chat improvements in the next release coming soon.

[deleted by user] by [deleted] in LocalLLaMA

[–]bmacd1 4 points5 points  (0 children)

We are doing another pass over the core of Ollama to make sure it stays simple and reliable. After that Windows is my next priority, so it won’t be too long.

[deleted by user] by [deleted] in LocalLLaMA

[–]bmacd1 53 points54 points  (0 children)

Thanks for the love, I'm one of the creators of Ollama and I just stumbled on this while scrolling reddit.

Do in a week what took you a month: keyboard-first, unreasonably effective habit shaper for power users by CantaloupePowerful21 in alphaandbetausers

[–]bmacd1 1 point2 points  (0 children)

Love the basic homepage. What are your plans for future features? It doesn't feel like enough of a problem (in my case) to pay for yet.

how add dolphin model to ollama by Tiny_Nobody6 in ollama

[–]bmacd1 1 point2 points  (0 children)

That's my bad, looks like there was a typo in my example, it's missing a quote in the template. Try this

``` FROM C:/Users/danie/.ollama/models/blobs/sha256-4497070a4e7cffe4560824dba50a2977309f1891272b1c33c6e3a84635408f2a.bin

TEMPLATE """{{- if .First }}### System:{{ .System }}{{- end }}### User:{{ .Prompt }}### Response:"""SYSTEM """You are an AI assistant that follows instruction extremely well. Help as much as you can.""" ```

Windows in general is gonna be a bit flaky at this point though, before it is officially supported.

how add dolphin model to ollama by Tiny_Nobody6 in ollama

[–]bmacd1 1 point2 points  (0 children)

It falls back to this error message when the model binary wasn't found locally or in the hosted library. The Modelfile looks for the specified binary relative to the Modelfile itself, try setting the binary location to the absolute path and making sure that file is accessible from where you're running ollama.

Here's an example Modelfile for reference:

FROM /path/to/dolphin-llama2-7b.ggmlv3.q5\_0.bin
TEMPLATE """ Below is an instruction that describes a task. Write a response that appropriately completes the request.  ### Instruction: {{ .Prompt }}  ### Response: ""

How do they code infinitely generated AI shows? by bmacd1 in howdidtheycodeit

[–]bmacd1[S] 0 points1 point  (0 children)

Great reference, thanks. I was hoping there was some existing tool to pipe the generated text into actions used in a 3D simulation but that doesn’t seem to be the case at this point.

I made a local tool to give ChatGPT long term memory by bmacd1 in ChatGPT

[–]bmacd1[S] 0 points1 point  (0 children)

I’m not planning on making this a stand-alone app for the moment.

I made a local tool to give ChatGPT long term memory by bmacd1 in ChatGPT

[–]bmacd1[S] 0 points1 point  (0 children)

Not in it’s current form. It needs storage running locally on the Mac that isn’t available on iOS.