Ollama Turbo

(ollama.com)

409 points | by amram_art 23 hours ago

44 comments

  • extr 21 hours ago
    Nice release. Part of the problem right now with OSS models (at least for enterprise users) is the diversity of offerings in terms of:

    - Speed

    - Cost

    - Reliability

    - Feature Parity (eg: context caching)

    - Performance (What quant level is being used...really?)

    - Host region/data privacy guarantees

    - LTS

    And that's not even including the decision of what model you want to use!

    Realistically if you want to use an OSS model instead of the big 3, you're faced with evalutating models/providers across all these axes, which can require a fair amount of expertise to discern. You may even have to write your own custom evaluations. Meanwhile Anthropic/OAI/Google "just work" and you get what it says on the tin, to the best of their ability. Even if they're more expensive (and they're not that much more expensive), you are basically paying for the priviledge of "we'll handle everything for you".

    I think until providers start standardizing OSS offerings, we're going to continue to exist in this in-between world where OSS models theoretically are at performance parity with closed source, but in practice aren't really even in the running for serious large scale deployments.

    • coderatlarge 19 hours ago
      true but ignores handing over all your prompt traffic without any real legal protections as sama has pointed out:

      [1] https://californiarecorder.com/sam-altman-requires-ai-privil...

      • I_am_tiberius 16 hours ago
        I wouldn't be surprised if those undeleted chats or some inferred data that is based on it is part of the gpt-5 training data. Somehow I don't trust this sama guy at all.
      • supermatt 19 hours ago
        > OpenAI confirmed it has been preserving deleted and non permanent person chat logs since mid-Might 2025 in response to a federal court docket order

        > The order, embedded under and issued on Might 13, 2025, by U.S. Justice of the Peace Decide Ona T. Wang

        Is this some meme where “may” is being replaced with “might”, or some word substitution gone awry? I don’t get it.

        • wkat4242 14 hours ago
          Yeah noticed this too. Really weird for a professional publication
        • beowulfey 1 hour ago
          auto correct gone awry
        • kekebo 19 hours ago
          :)) Apparently. I don't have a better guess. Well spotted
        • mattmaroon 5 hours ago
          Or May in another language?
    • wkat4242 14 hours ago
      Gpt-oss comes only in 4.5 bit quant. This is the native model, so there's no fp16 original
  • jnmandal 21 hours ago
    I see a lot of hate for ollama doing this kind of thing but also they remain one of the easiest to use solutions for developing and testing against a model locally.

    Sure, llama.cpp is the real thing, ollama is a wrapper... I would never want to use something like ollama in a production setting. But if I want to quickly get someone less technical up to speed to develop an LLM-enabled system and run qwen or w/e locally, well then its pretty nice that they have a GUI and a .dmg to install.

    • mchiang 21 hours ago
      Thanks for the kind words.

      Since the new multimodal engine, Ollama has moved off of llama.cpp as a wrapper. We do continue to use the GGML library, and ask hardware partners to help optimize it.

      Ollama might look like a toy and what looks trivial to build. I can say, to keep its simplicity, we go through a deep amount of struggles to make it work with the experience we want.

      Simplicity is often overlooked, but we want to build the world we want to see.

      • leopoldj 2 hours ago
        > Ollama has moved off of llama.cpp as a wrapper. We do continue to use the GGML library

        Where can I learn more about this? llama.cpp is an inference application built using the ggml library. Does this mean, Ollama now has it's own code for what llama.cpp does?

      • dcreater 19 hours ago
        But Ollama is a toy, it's meaningful for hobbyists and individuals to use locally like myself. Why would it be the right choice for anything more? AWS, vLLM, SGLang etc would be the solutions for enterprise

        I knew a startup that deployed ollama on a customers premises and when I asked them why, they had absolutely no good reason. Likely they did it because it was easy. That's not the "easy to use" case you want to solve for.

        • mchiang 10 hours ago
          I can say trying many inference tools after the launch, many do not have the models implemented well, and especially OpenAI’s harmony.

          Why does this matter? For this specific release, we benchmarked against OpenAI’s reference implementation to make sure Ollama is on par. We also spent a significant amount of time getting harmony implemented the way intended.

          I know vLLM also worked hard to implement against the reference and have shared their benchmarks publicly.

        • jnmandal 15 hours ago
          Honestly, I think it just depends. A few hours ago I wrote I would never want it for a production setting but actually if I was standing something up myself and I could just download headless ollama and know it would work. Hey, that would also be fine most likely. Maybe later on I'd revisit it from a devops perspective, and refactor deployment methodology/stack, etc. Maybe I'd benchmark it and realize its fine actually. Sometimes you just need to make your whole system work.

          We can obviously disagree with their priorities, their roadmap, the fact that the client isn't FOSS (I wish it was!), etc but no one can say that ollama doesn't work. It works. And like mchiang said above: its dead simple, on purpose.

          • dcreater 13 hours ago
            But its effectively equally easy to do the same with llama.cpp, vllm or modular..

            (any differences are small enough that they either shouldn't cause the human much work or can very easily be delegated to AI)

            • evilduck 3 hours ago
              Llama.cpp is not really that easy unless you're supported by their prebuilt binaries. Go to the llama.cpp GitHub page and find a prebuilt CUDA enabled release for a Fedora based linux distro. Oh there isn't one you say? Welcome to losing an hour or more of your time.

              Then you want to swap models on the fly. llama-swap you say? You now get to learn a new custom yaml based config file syntax that does basically nothing that the Ollama model file already does so that you can ultimately... have the same experience as Ollama but now you've lost hours just to get back to square one.

              Then you need it to start and be ready with the system reboot? Great, now you get to write some systemd services, move stuff into system-level folders, create some groups and users and poof, there goes another hour of your time.

            • jnmandal 2 hours ago
              Sure but if my some of the development team is using ollama locally b/c it was super easy to install, maybe I don't want to worry about maintaining a separate build chain for my prod env. Many startups are just wrapping or enabling LLMs and just need a running server. Who are we to say what is right use of their time and effort?
      • buyucu 10 hours ago
        This kind of gaslighting is exactly why I stopped using Ollama.

        GGML library is llama.cpp. They are one and the same.

        Ollama made sense when llama.cpp was hard to use. Ollama does not have value preposition anymore.

        • mchiang 10 hours ago
          It’s a different repo. https://github.com/ggml-org/ggml

          The models are implemented by Ollama https://github.com/ollama/ollama/tree/main/model/models

          I can say as a fact, for the gpt-oss model, we also implemented our own MXFP4 kernel. Benchmarked against the reference implementations to make sure Ollama is on par. We implemented harmony and tested it. This should significantly impact tool calling capability.

          Im not sure if im feeding here. We really love what we do, and I hope it shows in our product, in Ollama’s design and in our voice to our community.

          You don’t have to like Ollama. That’s subjective to your taste. As a maintainer, I certainly hope to have you as a user one day. If we don’t meet your needs and you want to use an alternative project, that’s totally cool too. It’s the power of having a choice.

          • mark_l_watson 2 hours ago
            Hello, thanks for answering questions here.

            Is there a schedule for adding additional models to Turbo mode plan, in addition to gpt-oss 20/120b? I wanted to try your $20/month Turbo plan, but I would like to be able to experiment with a few other large models.

        • scosman 3 hours ago
          > GGML library is llama.cpp. They are one and the same.

          Nope…

    • steren 20 hours ago
      > I would never want to use something like ollama in a production setting.

      We benchmarked vLLM and Ollama on both startup time and tokens per seconds. Ollama comes at the top. We hope to be able to publish these results soon.

      • ekianjo 20 hours ago
        you need to benchmark against llama.cpp as well.
      • sbinnee 8 hours ago
        vllm and ollama assume different settings and hardware. Vllm backed by the paged attention expect a lot of requests from multiple users whereas ollama is usually for single user on a local machine.
      • apitman 19 hours ago
        Did you test multi-user cases?
        • jasonjmcghee 9 hours ago
          Assuming this is equivalent to parallel sessions, I would hope so, this is like the entire point of vLLM
    • miki123211 10 hours ago
      > I would never want to use something like ollama in a production setting

      If you can't get access to "real" datacenter GPUs for any reason and essentially do desktop, clientside deploys, it's your best bet.

      It's not a common scenario, but a desktop with a 4090 or two is all you can get in some organizations.

  • jasonjmcghee 22 hours ago
    Interested to see how this plays out - I feel like Ollama is synonymous with "local".
    • Aurornis 22 hours ago
      There's a small but vocal minority of users who don't trust big companies, but don't mind paying small companies for a similar service.

      I'm also interested to see if that small minority of people are willing to pay for a service like this.

      • jillesvangurp 11 hours ago
        The issue is not companies but governance. OSS licenses and companies are fine. Companies have a natural conflict of interest that can lead them to take software projects they control in a direction that suits their revenue goals but not necessarily the needs/wants of its users. That happens over and over again. It's their nature. This can means changes in direction/focus or worst case license changes that limit what you can do.

        The solution is having proper governance for OSS projects that matter with independent organizations made up of developers, companies, and users taking care of the governance. A lot of projects that have that have last for decades and will likely survive for decades more.

        And part of that solution is to also steer clear of projects without that. I've been burned a couple of times now getting stuck with OSS components where the license was changed and the companies behind it had their little IPOs and started serving share holders instead of users (elastic, redis, mongo, etc). I only briefly used Mongo and I got a whiff of where things were going and just cut loose from it. With Elastic the license shenenigans started shortly after their IPO and things have been very disruptive to the community (with half using Opensearch now). With Redis I planned the switch to Valkey the second it was announced. Clear cut case of cutting loose. Valkey looks like it has proper governance. Redis never had that.

        Ollama seems relatively OK by this benchmark. The software (ollama server) is MIT licensed and there appears to be no contributor license agreement in place. But it's a small group of people that do most of the coding and they all work for the same vc funded company behind ollama. That's not proper governance. They could fail. They could relicense. They could decide that they don't like open source after all. Etc. Worth considering before you bet your company on making this a foundational piece of your tech stack.

      • recursivegirth 21 hours ago
        Ollama, run by Facebook. Small company, huh.
        • mchiang 21 hours ago
          Ollama is not run by Facebook. We are a small team building our dreams.
          • criddell 21 hours ago
            I thought it was a Meta company because the name is so close to Llama which is a Meta product.

            I looked up the Ollama trademark and was surprised to see it's a Canadian company.

            • josephwegner 7 hours ago
              Same, actually. I’m feeling much more pro-ollama suddenly!
    • threetonesun 21 hours ago
      I view it a bit like I do cloud gaming, 90% of the time I'm fine with local use, but sometimes it's just more cost effective to offload the cost of hardware to someone else. But it's not an all-or-nothing decision.
      • theshrike79 7 hours ago
        Yep, if you just want to play one or two games at 4k HDR etc. it's a lot cheaper to pay 22€ for GeForce Now Ultimate vs. getting a whole-ass gaming PC capable of the same.
  • liuliu 21 hours ago
    Any more information on "Privacy first"? It seems pretty thin if just not retaining data.

    For Draw Things provided "Cloud Compute", we don't retain any data too (everything is done in RAM per request). But that is still unsatisfactory personally. We will soon add "privacy pass" support, but still not to the satisfactory. Transparency log that can be attested on the hardware would be nice (since we run our open-source gRPCServerCLI too), but I just don't know where to start.

    • pagekicker 20 hours ago
      I see no privacy advantage to working with Ollama, which can sell your data or have it subpoenaed just like anyone else.
      • liuliu 18 hours ago
        In theory, "privacy pass" should help, as you can subpoena content, but cannot know who made these. But that is still thin (and Ollama not doing that too anyway).
    • jmort 16 hours ago
      I don't see a privacy policy and their desktop app is closed source. So, not encouraging.

      [full disclosure I am working on something with actual privacy guarantees for LLM calls that does use a transparency log, etc.]

      • pbronez 4 hours ago
        I’d love to learn more about your project. I’m using socialized cloud regions for AI security and they really lag the mainstream. Definitely need more options here.

        Edit: emailed the address on the site in your profile, got an inbox does not exist error.

    • pogue 18 hours ago
      I would pay more if they let you run the models in Switzerland or some other GDPR respecting country, even if there was extra latency. I would also hope everything is being sent over SSL or something similar.
      • seanmcdirmid 18 hours ago
        I had to do a double take here. Switzerland surely isn’t in the GDPR, so you mean their own privacy laws or GDPR in the EU?
  • jacekm 20 hours ago
    What could be the benefit of paying $20 to Ollama to run inferior models instead of paying the same amount of money to e.g. OpenAI for access to sota models?
    • daft_pink 20 hours ago
      I feel the primary benefit of this Ollama Turbo is that you can quickly test and run different models in the cloud that you could run locally if you had the correct hardware.

      This allows you to try out some open models and better assess if you could buy a dgx box or Mac Studio with a lot of unified memory and build out what you want to do locally without actually investing in very expensive hardware.

      Certain applications require good privacy control and on-prem and local are something certain financial/medical/law developers want. This allows you to build something and test it on non-private data and then drop in real local hardware later in the process.

      • jerieljan 16 hours ago
        > quickly test and run different models in the cloud that you could run locally if you had the correct hardware.

        I feel like they're competing against Hugging Face or even Colaboratory then if this is the case.

        And for cases that require strict privacy control, I don't think I'd run it on emergent models or if I really have to, I would prefer doing so on an existing cloud setup already that has the necessary trust / compliance barriers addressed. (does Ollama Turbo even have their Trust center up?)

        I can see its potential once it gets rolling, since there's a lot of ollama installations out there.

      • fluidcruft 17 hours ago
        Me at home: $20/mo while I wait for a card that can run this or dgx box? Decisions, decisions.
      • dawnerd 18 hours ago
        Quickly test… the two models they support? This is just another subscription to quantized models.
        • daft_pink 3 hours ago
          it looks like the plan is to support way more models though. gotta start somewhere.
    • adrr 14 hours ago
      Running models without a filter on it. OpenAI has an overzealous filter and won’t even tell you what you violated. So you have to do a dance with prompts to see if it’s copyright, trademark or whatever. Recently it just refused to answer my questions and said it wasn’t true that a civil servant would get fired for releasing a report per their job duties. Another dance sending it links to stories that it was true so it could answer my question. I want a LLMs without training wheels.
    • rapind 20 hours ago
      I'm not sure the major models will remain at $20. Regardless, I support any and all efforts to keep the space crowded and competitive.
    • michelsedgh 20 hours ago
      I think its the data privacy is the main point and probably more usage before you hit limits? But mainly data privacy i guess
    • ibejoeb 20 hours ago
      I run a lot of mundane jobs that work fine with less capable models, so I can see the potential benefit. It all depends on the limits though.
    • _--__--__ 19 hours ago
      Groq seems to do okay with a similar service but I think their pricing is probably better.
      • woadwarrior01 8 hours ago
        Groq's moat is speed, using their custom hardware.
      • Geezus_42 19 hours ago
        Yeah, the NAZI sex not will be great for business!
        • fredoliveira 19 hours ago
          Groq (the inference service) != Grok (xAI's model)
        • gabagool 19 hours ago
          You are thinking of Elon Grok, not Groq
          • janalsncm 19 hours ago
            When Grok originally came out I thought it was unlucky on Groq’s part. Now that Grok has certain connotations, it’s even more true.
            • owebmaster 14 hours ago
              "There's no such thing as bad publicity." PT Barnum
    • AndroTux 20 hours ago
      Privacy, I guess. But at this point it’s just believing that they won’t log your data.
    • vanillax 20 hours ago
      nothing lmao. this is just ollama trying to make money.
  • captainregex 19 hours ago
    I am so so so confused as to why Ollama of all companies did this other than an emblematic stab at making money-perhaps to appease someone putting pressure on them to do so. Their stuff does a wonderful job of enabling local for those who want it. So many things to explore there but instead they stand up yet another cloud thing? Love Ollama and hope it stays awesome
    • janalsncm 19 hours ago
      The problem is that OSS is free to use but it is not free to create or maintain. If you want it to remain free to use and also up to date, Ollama will need someone to address issues on GitHub. Usually people want to be paid money for that.
      • captainregex 19 hours ago
        money is great! I like money! but if this is their version of buy me a coffee I think there’s room to run elsewhere for their skillset/area of expertise
        • mchiang 18 hours ago
          hmm, I don't think so. This is more of, we want to keep improving Ollama so we can have a great core.

          For the users who want GPUs, which cost us money, we will charge money for it. Completely optional.

  • dcreater 19 hours ago
    Called it.

    It's very unfortunate that the local inference community has aggregated around Ollama when it's clear that's not their long term priority or strategy.

    Its imperative we move away ASAP

    • tarruda 19 hours ago
      Llama.cpp (library which ollama uses under the hoods) has its own server, and it is fully compatible with open-webui.

      I moved away from ollama in favor of llama-server a couple of months ago and never missed anything, since I'm still using the same UI.

      • mchiang 19 hours ago
        totally respect your choice, and it's a great project too. Of course as a maintainer of Ollama, my preference is to win you over with Ollama. If it doesn't meet your needs, it's okay. We are more energized than ever to keep improving Ollama. Hopefully one day we will win you back.

        Ollama does not use llama.cpp anymore; we do still keep it and occasionally update it to remain compatible for older models for when we used it. The team is great, we just have features we want to build, and want to implement the models directly in Ollama. (We do use GGML and ask partners to help it. This is a project that also powers llama.cpp and is maintained by that same team)

        • am17an 15 hours ago
          I’ve never seen a PR on ggml from Ollama folks though. Could you mention one contribution you did?
        • kristjansson 17 hours ago
          > Ollama does not use llama.cpp anymore;

          > We do use GGML

          Sorry, but this is kind of hiding the ball. You don't use llama.cpp, you just ... use their core library that implements all the difficult bits, and carry a patchset on top of it?

          Why do you have to start with the first statement at all? "we use the core library from llama.cpp/ggml and implement what we think is a better interface and UX. we hope you like it and find it useful."

          • cortesoft 11 hours ago
            Why are you being so accusatory about a choice about which details are important?
          • mchiang 16 hours ago
            thanks, I'll take that feedback, but I do want to clarify that it's not from llama.cpp/ggml. It's from ggml-org/ggml. I supposed it's all interchangeable though, so thank you for it.
            • kristjansson 48 minutes ago

                % diff -ru ggml/src llama.cpp/ggml/src | grep -E '^(\+|\-) .*' | wc -l
                    1445
              
              i.e. as of time of writing +/- 1445 lines between the two, on about 175k total lines. a lot of which is the recent MXFP4 stuff.

              Ollama is great software. It's integral to the broader diffusion of LLMs. You guys should be incredibly proud of it and the impact its had. I understand the current environment rewards bold claims, but the sense I get from some of your communications is "what's the boldest, strongest claim we can make that's still mostly technically true". As a potential user, taking those claims as true until closer evaluation reveals the discrepancy feels pretty bad, and keeps me firmly in the 'potential' camp.

              Have the confidence in your software and the respect for your users to advertise your system as it is.

        • daft_pink 15 hours ago
          So I’m using turbo and just want to provide some feedback. I can’t figure out how to connect raycast and project goose to ollama turbo. The software that calls it essentially looks for the models via ollama but cannot find the turbo ones and the documentation is not clear yet. Just my two cents, the inference is very quick and I’m happy with the speed but not quite usable yet.
          • mchiang 14 hours ago
            so sorry about this. We are learning. Possible to email, and we will first make it right while we improve Ollama's turbo mode. [email protected]
            • daft_pink 3 hours ago
              no worries. i totally understand that the first day something is released it doesn’t work perfectly with third party/community software.

              thanks for the feedback address :)

        • tarruda 18 hours ago
          > Ollama does not use llama.cpp anymore

          That is interesting, did Ollama develop its own proprietary inference engine or did you move to something else?

          Any specific reason why you moved away from llama.cpp?

      • halJordan 18 hours ago
        Fully compatible is a stretch, it's important we dont fall into a celebrity "my guy is perfect" trap. They implement a few endpoints.
        • jychang 17 hours ago
          They implement more openai-compatible endpoints than ollama at least
      • om8 18 hours ago
        It’s unfortunate that llama.cpp’s code is a mess. It’s impossible to make any meaningful contributions to it.
        • kristjansson 17 hours ago
          I'm the first to admit I'm not a heavy C++ user, so I'm not a great judge of the quality looking at the code itself ... but ggml-org has 400 contributors on ggml, 1200 on llama.cpp and has kept pace with ~all major innovations in transformers over the last year and change. Clearly some people can and do make meaningful contributions.
      • theshrike79 7 hours ago
        Isn't the open-webui maintainer heavily against MCP support and tool calling?
      • A4ET8a8uTh0_v2 19 hours ago
        Interesting, admittedly, I am slowly getting to the point, where ollama's defaults get a little restrictive. If the setup is not too onerous, I would not mind trying. Where did you start?
        • tarruda 18 hours ago
          Download llama-server from llama.cpp Github and install it some PATH directory. AFAIK they don't have an automated installer, so that can be intimidating to some people

          Assuming you have llama-server installed, you can download + run a hugging face model with something like

              llama-server -hf ggml-org/gpt-oss-20b-GGUF -c 0 -fa --jinja
          
          
          And access http://localhost:8080
    • mchiang 19 hours ago
      hmm, how so? Ollama is open and the pricing is completely optional for users who want additional GPUs.

      Is it bad to fairly charge money for selling GPUs that cost us money too, and use that money to grow the core open-source project?

      At one point, it just has to be reasonable. I'd like to believe by having a conscientious, we can create something great.

      • dcreater 11 hours ago
        First, I must say I appreciate you taking the time to be engaged on this thread and responding to so many of us.

        What I'm referring to is a broader pattern that I (and several) others have been seeing. Of the top of my head: not crediting llama.cpp previously, still not crediting llama.cpp now and saying you are using your own inference engine when you are still using ggml and the core of what Georgi made, most importantly why even create your own version - is it not better for the community to just contribute to llama.cpp?, making your own propreitary model storage platform disallowing using weights with other local engines requiring people to duplicate downloads and more.

        I dont know how to regard these other than being largely motivated out of self interest.

        I think what Jeff and you have built have been enormously helpful to us - Ollama is how I got started running models locally and have enjoyed using it for years now. For that, I think you guys should be paid millions. But what I fear is going to happen is you guys will go the way of the current dogma of capturing users (at least in mindshare) and then continually squeezing more. I would love to be wrong, but I am not going to stick around to find out as its risk I cannot take.

      • tomrod 17 hours ago
        Everyone just wants to solarpunk this up.
        • dcreater 11 hours ago
          In an ideal world yes - as we should - especially for us Californian/Bay Area people, that's literally our spirit animal. But I understand that is idle dreaming. What I believe certainly is within reach is a state that is much better than what we are in.
          • tomrod 5 hours ago
            It needn't be idle dreaming? What fundamental law or societal agreement prevents solarpunk versus the current status quo of corporate anti-human cyberpunk?
            • dcreater 3 hours ago
              Being realistic about economics and how money works in the current paradigm where it is concentrated
    • sitkack 18 hours ago
      I believe that is what https://github.com/containers/ramalama set out to do.
    • janalsncm 19 hours ago
      Huggingface also offers a cloud product, but that doesn’t take away from downloading weights and running them locally.
    • mrcwinn 19 hours ago
      Yes, better to get free sh*t unsustainably. By the way, you're free to create an open source alternative and pour your time into that so we can all benefit. But when you don't — remember I called it!
      • rpdillon 19 hours ago
        What? The obvious move is to never have switched to Ollama and just use Llama.cpp directly, which I've been doing for years. Llama.cpp was created first, is the foundation for this product, and is actually open source.
    • Aurornis 17 hours ago
      > Its imperative we move away ASAP

      Why? If the tool works then use it. They’re not forcing you to use the cloud.

      • dcreater 11 hours ago
        There are many, many FOSS apps that use Ollama as a dependency. If Ollama rugs, then all those projects suffer.

        Its a tale we seen played out many times. Redis is the most recent example.

        • Hasnep 9 hours ago
          Most apps that integrate with ollama that I've seen just have an OpenAI compatible API parameter which defaults to port 11434 which ollama uses, but can be changed easily. Is there a way to integrate ollama more deeply?
          • dcreater 3 hours ago
            Yes, but I fear the average person will not understand that and assume you need Ollama. That false perception is sufficiently damaging im afraid
    • prettyblocks 14 hours ago
      Local inference is becoming completely commoditized imo. These days even docker has a local models you can launch with a single click (or command).
    • idiotsecant 19 hours ago
      Oh no this is a positively diabolical development, offering...hosting services tailored to a specific use case at a reasonable price ...
      • SV_BubbleTime 12 hours ago
        They can’t keep getting away with this.
    • jcelerier 16 hours ago
      happy sglang user here :)
    • fud101 11 hours ago
      i was trying to remove it but noticed they've hidden the uninstall away. It amounts to doing a rm - which is a joke.
    • cchance 17 hours ago
      I stopped using them when they started doing the weird model naming bullshit stuck with lmstudio since
  • leopoldj 2 hours ago
    For production use of open weight models I'd use something like Amazon Bedrock, Google Vertex AI (which uses vLLM), or on-prem vLLM/SGLang. But for a quick assessment of a model as a developer, Ollama Turbo looks appealing. I find Google GCP incredibly user hostile and a nightmare to navigate quotas and stuff.
  • ahmedhawas123 18 hours ago
    So much that is interesting about this

    For one of the top local open model inference engines of choice - only supporting OSS out of the gate feels like an angle to just ride the hype knowing OSS is announced today "oh OSS came out and you can use Ollama Turbo to use it"

    The subscription based pricing is really interesting. Other players offer this but not for API type services. I always imagine that there will be a real pricing war with LLMs with time / as capabilities mature, and going monthly pricing on API services is possibly a symptom of that

    What does this mean for the local inference engine? Does Ollama have enough resources to maintain both?

  • zacian 4 hours ago
    Does this mean we can access Ollama APIs for $20/mo and test them without running the model locally? I'm not hardware-rich, but for some projects, I'd like a reliable pricing.
  • timmg 20 hours ago
    It says “usage-based pricing” is coming soon. I think that is the sweet spot for a service like this.

    I pay $20 to Anthropic, so I don’t think I’d get enough use out of this for the $20 fee. But being able to spin up any of these models and use as needed (and compare) seems extremely useful to me.

    I hope this works out well for the team.

    • wongarsu 4 hours ago
      A flat fee service for open-source LLMs is somewhat unique, even if I don't see myself paying for it.

      Usage-based pricing would put them in competition with established services like deepinfra.com, novita.ai, and ultimately openrouter.ai. They would go in with more name-recognition, but the established competition is already very competitive on pricing

    • ac29 20 hours ago
      > It says “usage-based pricing” is coming soon. I think that is the sweet spot for a service like this.

      Agreed, though there are already several providers of these new OpenAI models available, so I'm not sure what ollama's value add is there (there are plenty of good chat/code/etc interfaces available if you are bringing your own API keys).

    • Aeolun 18 hours ago
      I mean $20/month for API access is definitely new.
  • aglazer 2 hours ago
    This is super exciting. Congratulations on the launch!
  • paxys 19 hours ago
    A subscription fee for API usage is definitely an interesting offering, though the actual value will depend on usage limits (which are kept hidden).
    • mchiang 19 hours ago
      we are learning the usage patterns to be able to price this more properly.
  • factorialboy 8 hours ago
    In case the website isn't clear, this seems to be a paid-hosted service for models.
  • moralestapia 22 hours ago
    Ollama is great but I feel like Georgi Gerganov deserves way more credit for llama.cpp.

    He (almost) single-handedly brought LLMs to the masses.

    With the latest news of some AI engineers' compensation reaching up to a billion dollars, feels a bit unfair that Georgi is not getting a much larger slice of the pie.

    • mrs6969 21 hours ago
      Agreed. Ollama itself is kind a wrapper around llamacpp anyway. Feel like the real guy is not included to the process.

      Now I am going to go and write a wrapper around llamacpp, that is only open source, truly local.

      How can I trust ollama to not to sell my data.

      • Patrick_Devine 21 hours ago
        Ollama only uses llamacpp for running legacy models. gpt-oss runs entirely in the ollama engine.

        You don't need to use Turbo mode; it's just there for people who don't have capable enough GPUs.

      • rafram 21 hours ago
        Ollama is not a wrapper around llama.cpp anymore, at least for multimodal models (not sure about others). They have their own engine: https://ollama.com/blog/multimodal-models
        • iphone_elegance 18 hours ago
          looks like the backend is ggml, am I missing something? same diff
    • freedomben 22 hours ago
      Is Georgi landing any of those big-time money jobs? I could see a conflict-of-interest given his involvment with llama.cpp, but I would think he'd be well positioned for something like that
      • apwell23 21 hours ago
        https://ggml.ai/

        > ggml.ai is a company founded by Georgi Gerganov to support the development of ggml. Nat Friedman and Daniel Gross provided the pre-seed funding.

      • moralestapia 21 hours ago
        (This is mere speculation)

        I think he's happy doing his own thing.

        But then, if someone came in with a billion ... who wouldn't give it a thought?

        • webdevver 21 hours ago
          really a billion bucks is far too much, that is beyond the curve.

          $50M, now thats just perfect. you're retired, nor burdened with a huge responsibility

    • am17an 15 hours ago
      Seriously, people astroturfing this thread by saying ollama has a new engine. It literally is the same engine that llama.cpp uses and georgi and slaren maintain! VC funding will make people so dishonest and just plain grifters
  • Havoc 18 hours ago
    That'll be an uphill battle on value proposition tbh. $20 a month for access to a widely available MoE 120B with ~5B active parameters at unspecified usage limits?

    I guess their target audience values convenience and easy of use above all else so that could play well there maybe.

    • selcuka 17 hours ago
      > Turbo includes hourly and daily limits to avoid capacity issues. Usage-based pricing will soon be available to consume models in a metered fashion.

      Doesn't look that much better than a ChatGPT Plus subscription.

  • st3fan 3 hours ago
    Does anyone know who or what ollama is in terms of people and company?
  • santa_boy 12 hours ago
    Is there an evaluation of such services available anywhere. Looking for recommendations for similar services with usage based pricing and pro-and-cons.

    ps: looking for most economic one to play around with as long as it a decent enough experience (minimal learning curve). buy, happy to pay too

    • splittydev 11 hours ago
      OpenRouter is great. Less privacy I guess, but you pay for usage and you have access to hundreds of models. They have free models too, albeit rate-limited.
  • llmtosser 21 hours ago
    Distractions like this probably the reason they still, over a year now, do not support sharded GGUF.

    https://github.com/ollama/ollama/issues/5245

    If any of the major inference engines - vLLM, Sglang, llama.cpp - incorporated api driven model switching, automatic model unload after idle and automatic CPU layer offloading to avoid OOM it would avoid the need for ollama.

    • jychang 20 hours ago
      That’s just llama-swap and llama.cpp
      • llmtosser 20 hours ago
        Interesting - it does indeed seem like llama-server has the needed endpoints to do the model swapping and llama.cpp as of recently also has a new flag for the dynamic CPU offload now.

        However the approach to model swapping is not 'ollama compatible' which means all the OSS tools supporting 'ollama' Ex Openwebui, Openhands, Bolt.diy, n8n, flowise, browser-use etc.. aren't able to take advantage of this particularly useful capability as best I can tell.

  • hanifbbz 12 hours ago
    I like how the landing page (and even this HN page until this point) completely miss any reference to Meta and Facebook. The landing page promises privacy but anyone who knows how FB used VPN software to spy on people, knows that as long as the current leadership is in place, we shouldn't assume they've all of a sudden became fans of our privacy.
    • tuckerman 12 hours ago
      Ollama isn’t connected to Meta besides offering Llama as one of the potential models you can run.

      There is obviously some connection to Llama (the original models giving rise to llama.cpp which Ollama was built on) but the companies have no affiliation.

  • domatic1 20 hours ago
    Open router competition?
  • turnsout 22 hours ago
    Man, busy day in the world of AI announcements! This looks coordinated with OpenAI, as it launches with `gpt-oss-20b` and `gpt-oss-120b`
    • sambaumann 22 hours ago
      Yep, on the ollama home page (https://ollama.com/) it says

      > OpenAI and Ollama partner to launch gpt-oss

    • hobofan 7 hours ago
      I do hope Ollama got a good paycheck from that, as they are essentially help OpenAI to oss-wash their image with the goodwill that Ollama has built up.
  • satellite2 21 hours ago
    "All hardware is located in the United States."

    If I use local/OSS models it's specifically to avoid running in a country with no data protection laws. It's a big close miss here.

    • bangaladore 21 hours ago
      I think what matters more here is "All hardware is located outside of China". Located in the US means little because that's not good enough for many regulated industries even within the US.

      All things considered though, Europe is getting confusing. They have GDPR but now pushing to backdoor encryption within the EU? [1]

      At least there isn't a strong movement in the US trying to outlaw E2E encryption.

      [1] https://www.eff.org/deeplinks/2025/06/eus-encryption-roadmap...

      Which brings up the point are truly private LLMs possible? Where the input I provide is only meaningful to me, but the LLM can still transform it without gaining any contextual value out of it? Without sharing a key? If this can be done, can it be done performantly?

      • blitzar 21 hours ago
        I would feel safer if the hardware was located in China than in the US.
      • bangaladore 21 hours ago
        Maybe I hit a nerve with the EU part? I thought it was a fair observation, but I'm open to being corrected if there's more nuance I missed.
        • spookie 20 hours ago
          The bill has been stalled since 2022.

          Yes, there is gonna be a new discussion for it on October 15, but I've already seen section of governments being against their own government position on the bill (Swedish Military for example).

      • wkat4242 21 hours ago
        Even the backdoor is an American lobby. Ashton Kutcher and Demi Moore's Thorn.
    • impulser_ 21 hours ago
      Then don't use it and keep using models locally?
    • riazrizvi 21 hours ago
      No I think the point is to choose the best jurisdiction to have cloud hosted data where your data is best protected from access by very wealthy entities via intelligence services bribery. That’s still hands down the USA.
      • pphysch 21 hours ago
        Any evidence for this claim that e.g. Mossad has less penetration into digital systems of USA than it does RF or PRC?
        • observationist 21 hours ago
          They might have access to any given machine, but they lack the broad scope of general surveillance. If they want to get you, just like most of the other nation state level threats, you will get got. For other threat models, the US works pretty well.

          I guarantee that nobody cares about or will be surveilling your private AI use unless you're doing other things that warrant surveillance.

          The reason big providers suck, as OpenAI is so nicely demonstrating for us, is that they retain everything, the user is the product, and court cases, other situations can unmask and expose everything you do on a platform to third parties. This country seriously needs a digital bill of rights.

          • riazrizvi 20 hours ago
            Nobody cares? That seems ludicrous to me. The last 3 decades of business have been characterized most of all by the increased access of private information on people for online business competitive insights. Sure if you are just a consumer you have nothing of real value except in the aggregate, but if you are an up-and-coming business drawing customers away from other businesses, your private AI use is absolutely of interest. Which is why serious businesses here scour the ToS.

            The biggest game in town has been managing platforms that give owners an information advantage. But at least the world generally trusts the USA to abide by laws and user agreements, which is why, to my mind, the USA retains the near monopoly on information platforms.

            I personally wouldn’t trust a UK platform for example, being a Brit native. The top echelon talent pool is so small and incestuous I don’t believe I would experience a fair playing field if a business of mine passed a certain size of national reach/importance.

            EDIT: from ChatGPT, new money entrepreneurs with no inheritence/political ties by economic region, USA ~63%, UK/HongKong/Singapore ~45%, Emerging Markets ~35%, EU ~22%, Russia ~10%

  • irthomasthomas 19 hours ago
    If these are FP4 like the other ollama models then I'm not very interested. If I'm using an API anyway I'd rather use the full weights.
    • mchiang 19 hours ago
      OpenAI has only provided MXFP4 weights. These are the same weights used by other cloud providers.
      • irthomasthomas 18 hours ago
        Oh, I didn't know that. Weird!
        • reissbaker 18 hours ago
          It was natively trained in FP4. Probably both to reduce VRAM usage at inference time (fits on a single H100), and to allow better utilization of B200s (which are especially fast for FP4).
          • irthomasthomas 17 hours ago
            Interesting, thanks. I didn't know you could even train at FP4 on H100s
  • jp1016 10 hours ago
    at this point, can i purchase the subscription directly from the model provider or hugging face and use it? or is this ollama attempt to become a provider like them.
  • rohansood15 14 hours ago
    The 'Sign In' link on the Ollama Mac App when you click Turbo doesn't work...
    • jmorgan 12 hours ago
      It should open ollama.com/connect – sorry about that. Feel free to message me [email protected] if you keep seeing issues
  • philip1209 20 hours ago
    Seems like an easy way to run gpt-oss for development environments on laptops. Probably necessary if you plan to self-host in production.
  • scosman 18 hours ago
    I build an app against the Ollama API. If this will let me test all Ollama models, I'm so in.
  • radioradioradio 17 hours ago
    Looks like Docker's "offload" product, but with less functionality and more vendor lock-in, the simple pricing both excites and worries me.
  • cchance 17 hours ago
    20$ ... for the openai opensource models in preview only?
  • orliesaurus 19 hours ago
    Does anyone know if this is like like OpenRouter?
    • ivape 19 hours ago
      Often the math works out that you get a lot more for $20 a month if you settle for smaller sized but capable models (8b-30b). I don’t see how it’s better other than Ollama can “promise” they don’t store your data where as OpenRouter is dependent on which host you choose (and there’s no indicator on OpenRouter exposing which ones do or don’t).

      In a universe where everything you say can be taken out of context, things like OpenAi will be a data leak nightmare.

      Need this soon:

      https://arxiv.org/abs/2410.02486

  • agnishom 16 hours ago
    > What is Turbo?

    > Turbo is a new way to run open models using datacenter-grade hardware.

    What? Why not just say that it is a cloud-based service for running models? Why this language?

    • owebmaster 14 hours ago
      Why use meaningful words in place of allegories like clouds, you ask?
  • smlacy 21 hours ago
    Watching ollama pivot from a somewhat scrappy yet amazingly important and well designed open source project to a regular "for-profit company" is going to be sad.

    Thankfully, this may just leave more room for other open source local inference engines.

    • mark_l_watson 1 hour ago
      I don't blame them. As soon as they offer a few more models available with the Turbo mode I plan on subscribing to their Turbo plan for a couple of months - a buying them a coffee, or keeping the lights on kind of thing.

      The Ollama app using the signed-in-only web search tool is really pretty good.

    • mchiang 21 hours ago
      we have always been building in the open, and so is Ollama. All the core pieces of Ollama are open. There are areas where we want to be opinionated on the design to build the world we want to see.

      There are areas we will make money, and I wholly believe if we follow our conscious we can create something amazing for the world while making sure we can keep it fueled to keep it going for the long term.

      Some of the ideas in Turbo mode (completely optional) is to serve the users who want a faster GPU, and adding in additional capabilities like web search. We loved the experience so much that we decided to give web search to non-paid users too. (Again, it's fully optional). Now to prevent abuse and make sure our costs don't go out of hand, we require login.

      Can't we all just work together and create a better world? Or does it have to be so zero sum?

      • xiphias2 20 hours ago
        I wanted to try web search to increase my privacy but it wanted to do login.

        For Turbo mode I understand the need for paying but the main poing of running a local model with web search is browsing from my computer without using any LLM provider. Also I want to get rid of the latency to US servers from Europe.

        If ollama can't do it, maybe a fork.

        • mchiang 20 hours ago
          login does not mean payment. It is free to use. It costs us to perform the web search, so we want to make sure it is not subject to abuse.
      • dcreater 19 hours ago
        I'm sorry but your words don't match your actions.
    • shepardrtc 21 hours ago
      I think this offering is a perfectly reasonable option for them to make money. We all have bills to pay, and this isn't interfering with their open source project, so I don't see anything wrong with it.
      • Aeolun 18 hours ago
        > this isn't interfering with their open source project

        Wait until it makes significant amounts of money. Suddenly the priorities will be different.

        I don’t begrudge them wanting to make some money off it though.

    • smeeth 21 hours ago
      Their FOSS local inference service didn't go anywhere.

      This isn't Anaconda, they didn't do a bait and switch to screw their core users. It isn't sinful for devs to try and earn a living.

      • kermatt 21 hours ago
        Another perspective:

        If you earn a living using something someone else built, and expect them not to earn a living, your paycheck has a limited lifetime.

        “Someone” in this context could be a person, a team, or a corporate entity. Free may be temporary.

      • blitzar 21 hours ago
        Yet. Their FOSS local inference service hasn't go anywhere ... yet.
      • dcreater 19 hours ago
        You can build this and go build something else as well. You don't need to morph the thing you built. That's underhanded
    • TuringNYC 21 hours ago
      >> Watching ollama pivot from a somewhat scrappy yet amazingly important and well designed open source project to a regular "for-profit company" is going to be sad.

      if i could have consistent and seamless local-cloud dev that would be a nice win. everyone has to write things 3x over these days depending on your garden of choice, even with langchain/llamaindex

    • satvikpendem 21 hours ago
      > important and well designed open source project

      It was always just a wrapper around the real well designed OSS, llama.cpp. Ollama even messes up the names of models by calling distilled models the name of the actual one, such as DeepSeek.

      Ollama's engineers created Docker Desktop, and you can see how that turned out, so I don't have much faith in them to continue to stay open given what a rugpull Docker Desktop became.

      • Philpax 20 hours ago
        I wouldn't go as far as to say that llama.cpp is "well designed" (there be demons there), but I otherwise agree with the sentiment.
    • user- 21 hours ago
      I remember them pivoting from being infra.hq
    • mythz 14 hours ago
      Same, was just after a small lightweight solution where I can download, manage and run local models. Really not a fan of boarding the enshittification train ride with them.

      Always had a bad feeling when they didn't give ggerganov/llama.cpp their deserved credit for making Ollama possible in the first place, if it were a true OSS project they would have, but now makes more sense through the lens of a VC-funded project looking to grab as much marketshare as possible to avoid raising awareness for alternatives in OSS projects they depend on.

      Together with their new closed-source UI [1] it's time for me to switch back to llama.cpp's cli/server.

      [1] https://www.reddit.com/r/LocalLLaMA/comments/1meeyee/ollamas...

    • dangoodmanUT 21 hours ago
      It was always a company
    • colesantiago 21 hours ago
      ollama is YC and VC backed, this was inevitable and not surprising.

      All companies that raise outside investment follow this route.

      No exceptions.

      And yes this is how ollama will fall due to enshittification, for lack of a better word.

    • otabdeveloper4 21 hours ago
      [flagged]
      • dang 20 hours ago
        "Please don't post shallow dismissals, especially of other people's work. A good critical comment teaches us something."

        https://news.ycombinator.com/newsguidelines.html

      • api 21 hours ago
        > Repackaging existing software while literally adding no useful functionality was always their gig.

        Developers continue to be blind to usability and UI/UX. Ollama lets you just install it, just install models, and go. The only other thing really like that is LM-Studio.

        It's not surprising that the people behind it are Docker people. Yes you can do everything Docker does with Linux kernel and shell commands, but do you want to?

        Making software usable is often many orders of magnitude more work than making software work.

        • otabdeveloper4 11 hours ago
          > Ollama lets you just install it, just install models, and go.

          So does the original llama.cpp. And you won't have to deal with mislabeled models and insane defaults out of the box.

          • lxgr 36 minutes ago
            Can it easily run as a server process in the background? To me, not having to load the LLM into memory for every single interaction is a big win of Ollama.
      • llmtosser 21 hours ago
        This is not true.

        No inference engine does all of:

        - Model switching

        - Unload after idle

        - Dynamic layer offload to CPU to avoid OOM

        • ekianjo 19 hours ago
          this can be added to llama.cpp with llama.swap currently so even without Ollama you are not far off
      • mchiang 21 hours ago
        sorry that you feel the way you feel. :(

        I'm not sure which package we use that is triggering this. My guess is llama.cpp based on what I see on social? Ollama has long shifted to using our own engine. We do use llama.cpp for legacy and backwards compatibility. I want to be clear it's not a knock on the llama.cpp project either.

        There are certain features we want to build into Ollama, and we want to be opinionated on the experience we want to build.

        Have you supported our past gigs before? Why not be more happy and optimistic in seeing everyone build their dreams (success or not).

        If you go build a project of your dreams, I'd be supportive of it too.

        • Maxious 15 hours ago
          > Have you supported our past gigs before?

          Docker Desktop? One of the most memorable private equity rugpulls in developer tooling?

          Fool me once shame on you, fool me twice shame on me

      • dangoodmanUT 21 hours ago
        Yes everyone should just write cpp to call local LLMs obviously
        • otabdeveloper4 11 hours ago
          Yes, but llama.cpp already comes with a ready-made OpenAI-compatible inference server.
          • reverius42 7 hours ago
            I think people are getting hung up on the "llama.cpp" name and thinking they need to write C++ code to use it.

            llama.cpp isn't (just) a C++ library/codebase -- it's a CLI application, server application (llama-server), etc.

  • computegabe 21 hours ago
    Why does everything AI-related have to be $20? Why can't there be tiers? OpenAI setting the standard of $20/m for every AI application is one of the worst things to ever happen.
    • paxys 20 hours ago
      https://openai.com/chatgpt/pricing/ - $0 / $20 / $200 / $25 (team) / custom enterprise pricing / on-demand API pricing

      https://www.anthropic.com/pricing - $0 / $17 (if billed annually) / $20 (if billed monthly) / $100 / $25 (team) / custom enterprise pricing / on-demand API pricing

      Sounds like tiers to me.

      • computegabe 15 hours ago
        I should have specified less expensive tiers (below the $20 standard). A tier <= $10 would be great. Anything over $10 for casual use seems excessive (or at least from my perspective)
    • thimabi 21 hours ago
      My guess is that’s the lowest price point that provides a modicum of profitability — LLMs are quite expensive to run, and even more so for providers like Ollama, which are entering the market and don’t have idle capacity.
    • furyofantares 21 hours ago
      Claude has $20, $100 and $200, ChatGPT $20, and $200, Google has $20 and $250. Those all have free tiers as well, and metered APIs. Grok has $30 and $300 it looks like, the list probably goes on and on.
    • joecot 20 hours ago
      I strongly recommend together.ai, which allows you to use a lot of different open source models and charges for usage, not a monthly fee.
    • colesantiago 21 hours ago
      Tokens are expensive and nobody is making any money.
      • senectus1 18 hours ago
        yep. this is the 2nd half of why the AI bubble is going to pop.
  • buyucu 10 hours ago
    More than one year in and Ollama still doesn't support Vulkan inference. Vulkan is essential for consumer hardware. Ollama is a failed project at this point: https://news.ycombinator.com/item?id=42886680
    • zozbot234 7 hours ago
      There's an open pull request https://github.com/ollama/ollama/pull/9650 but it needs to be forward ported/rebased to the current version before the maintainers can even consider merging it.

      Also realistically, Vulkan Compute support mostly helps iGPU's and older/lower-end dGPU's, which can only bring a modest performance speed up in the compute-bound preprocessing phase (because modern CPU inference wins in the text-generation phase due to better memory bandwidth). There are exceptions such as modern Intel dGPU's or perhaps Macs running Asahi where Vulkan Compute can be more broadly useful, but these are also quite rare.

  • _giorgio_ 14 hours ago
    Can anyone explain why this is a bad thing?

    Is it because they developed s new ollama which isn't open and which doesn't use llama.cpp?

  • yahoozoo 15 hours ago
    Daily limits yawn
  • ochronus 13 hours ago
    Ah, vague "limits". Hard pass.
  • colesantiago 21 hours ago
    No matter if a project is "open source" as long as they announce that they have raised millions amount of dollars from investors...

    It is completely compromised, especially if it is an AI company.

    How do you think ollama was able to provide the open source AI models to everyone for free?

    I am pretty sure ollama was losing money on every pull of those images from their infrastructure.

    Those that are now angry at ollama charging money or not focusing on privacy should have been angry when they raised money from investors.

  • fud101 15 hours ago
    No thanks, Ollama. I'd rather give the money to anyone but you grifters.
  • decide1000 21 hours ago
    It was fun because it was open. Now it's just another brand seeking dollars.
    • thimabi 21 hours ago
      I’m not throwing the towel on Ollama yet. They do need dollars to operate, but still provide excellent software for running models locally and without paying them a dime.
      • recursivegirth 21 hours ago
        ^ this. As a developer, Ollama has been my go-to for serving offline models. I then use cloudflare tunnels to make them available where I need them.
    • mchiang 21 hours ago
      Ollama at its core will always be open. Not all users have the computer to run models locally, and it is only fair if we provide GPUs that cost us money and let the users who optionally want it to pay for it.
      • ciaranmca 21 hours ago
        I think it’s the logical move to ensure Ollama can continue to fund development. I think you will probably end up having to add more tiers or some way for users to buy more credits/gpu time. See anthropic’s recent move with Claude code due to the usage of a number of 24/7 users.
    • DiabloD3 8 hours ago
      Although it is open, its really just all code borrowed from llama.cpp.

      If you want to see where the actual developers do the actual hard work, go use llama.cpp instead.