| ▲ | Ollama Web Search(ollama.com) |
| 216 points by jmorgan 10 hours ago | 120 comments |
| |
|
| ▲ | simonw 9 hours ago | parent | next [-] |
| I'd love to know what search engine provider they're using under the hood for this. I asked them on Twitter and didn't get a reply (yet) https://twitter.com/simonw/status/1971210260015919488 Crucially, I want to understand the license that applies to the search results. Can I store them, can I re-publish them? Different providers have different rules about this. |
| |
| ▲ | mchiang 8 hours ago | parent | next [-] | | We work with search providers and ensure that we have zero data retention policies in place. The search results are yours to own and use. You are free to do what you want with it. Of course you are bound by local laws of the legal jurisdiction you are in. | | |
| ▲ | simonw 6 hours ago | parent [-] | | OK, so it looks like you aren't willing to share which providers you are working with. Can you share the rationale for not sharing that information instead? | | |
| ▲ | mchiang 3 hours ago | parent [-] | | We have relationships with many providers and I don't want to be seen as promoting or not promoting a specific provider. Some decent privacy-preserving vendors - Brave, Exa, Parallel Web Systems, DuckDuckGo etc We will continue to monitor what's good to improve the output quality and results. Sometimes it could be the combination of providers to yield even better results. If I say one combination right now, and realize another combination is better, and make changes, I wouldn't need to broadcast it each time or risk misrepresenting the feature, which is to have amazing search and research capabilities that can augment models for a superior output. | | |
| ▲ | simonw 2 hours ago | parent | next [-] | | The reason I care about this is that different providers have different rules about how I can use the results. Brave: https://api-dashboard.search.brave.com/terms-of-service "Licensee shall not at any time, and shall not permit others to: store the results of the API or any derivative works from the results of the API" Exa: https://exa.ai/assets/Exa_Labs_Terms_of_Service.pdf "You may not [...] download, modify, copy, distribute, transmit, display, perform, reproduce, duplicate, publish, license, create derivative works from, or offer for sale any information contained on, or obtained from or through, the Services, except for temporary files that are automatically cached by your web browser for display
purposes" Many of the things I want to do with a search API are blocked by these rules! So I need to know which rules I am subject to. | | |
| ▲ | userbinator 2 hours ago | parent [-] | | (IANAL) You can normally safely ignore such things. | | |
| ▲ | jrvarela56 an hour ago | parent [-] | | I agree with you in spirit, but that’s not an answer you can apply when there’s someone else’s money at stake. |
|
| |
| ▲ | dcreater 3 hours ago | parent | prev [-] | | This information is very useful to the open source community. Whats the rationale in not "building in the public"? Is Ollama turning its back on the open source community? Also why should we believe ollama web search is better than my locally run searxng server? | | |
| ▲ | mchiang 2 hours ago | parent [-] | | Oh yes! that is why I want to provide the names of the providers we use. I do believe in building in the open. The web search functionality has a very generous free tier (it is behind Ollama's free account to prevent abuse) that allows you to give it a try comparing to running a searxng server locally. On making the search functionality locally -- we made considerations and gave it a try but had trouble around result quality and websites blocking Ollama for making a crawler. Using a hosted API, we can get results for users much faster. I'd want us to revisit this at some point. I believe in having the power of local. |
|
|
|
| |
| ▲ | kingnothing 8 hours ago | parent | prev | next [-] | | You can say you're training an AI model and do whatever you want with it. | |
| ▲ | userbinator 2 hours ago | parent | prev | next [-] | | You should ask if search results are even copyrightable, if they are just a list of links. | |
| ▲ | apimade 8 hours ago | parent | prev [-] | | It is strange to launch this type of functionality with not even a privacy policy in place. It makes me wonder if they’ve partnered with another of their VC’s peers who’s recently had a cash injection, and they’re being used as a design partner/customer story. Exa would be my bet. YC backed them early, and they’ve also just closed a $85M Series B. Bing would be too expensive to run freely without Microsoft partnership. Get on that privacy notice soon, Ollama. You’re HQ’d in CA, you’re definitely subject to CCPA. (You don’t need revenue to be subject to this, just being a data controller for 50,000 Californian residents is enough.) https://oag.ca.gov/privacy/ccpa I can imagine the reaction if it turns out the zero-retention provider backing them ended up being Alibaba. |
|
|
| ▲ | kgeist 10 minutes ago | parent | prev | next [-] |
| I use Llama.cpp with Tavily search (they give free credits each month). LibreChat has built-in support for it.
No Ollama needed. |
|
| ▲ | andrewmutz 6 hours ago | parent | prev | next [-] |
| Ollama is a business? They raised money? I thought it was just a useful open source product. I wonder how they plan to monetize their users. Doesn't sound promising. |
| |
| ▲ | blihp 3 hours ago | parent | next [-] | | There are very few recently launched pure open source projects these days (most are at least running donation-ware models or funded by corporate backers), none in the AI space that I'm aware of. | |
| ▲ | coolspot 6 hours ago | parent | prev [-] | | They are former Docker employees running Docker playbook. | | |
| ▲ | Cheer2171 6 hours ago | parent [-] | | [flagged] | | |
| ▲ | cristoperb 5 hours ago | parent [-] | | Ollama is a ycombinator startup, so I guess they have to find some roi at some point.[1] I personally found Ollama to be an easy way to try out local LLMs and appreciate them for that (and I still use it to download small models on my laptop and phone (via termux)), but I've long switched to llama.cpp + llama-swap[2] on my dev desktop. I download whatever ggufs I want from hugging face and just do `git pull` and `cmake --build build --config Release` from my llama.cpp directory whenever I want to update. 1: https://www.ycombinator.com/companies/ollama
2: https://github.com/mostlygeek/llama-swap |
|
|
|
|
| ▲ | coffeecoders 9 hours ago | parent | prev | next [-] |
| On a slightly related note- I've been thinking about building a home-local "mini-Google" that indexes maybe 1,000 websites. In practice, I rarely need more than a handful of sites for my searches, so it seems like overkill to rely on full-scale search engines for my use case. My rough idea for architecture: - Crawler: A lightweight scraper that visits each site periodically. - Indexer: Convert pages into text and create an inverted index for fast keyword search. Could use something like Whoosh. - Storage: Store raw HTML and text locally, maybe compress older snapshots. - Search Layer: Simple query parser to score results by relevance, maybe using TF-IDF or embeddings. I would do periodic updates and build a small web UI to browse. Anyone tried it or are there similar projects? |
| |
| ▲ | msephton an hour ago | parent | next [-] | | Perhaps not quite solving your problem, but I have a handful of domain-specific Google CSE (Custom Search Engine) that limit the results to predefined websites. I summon them from Alfred with short keywords when I'm doing interest-specific searches.
https://blog.gingerbeardman.com/2021/04/20/interest-specific... | |
| ▲ | harias 8 hours ago | parent | prev | next [-] | | YaCy (https://yacy.net) can do all this I think. Cloudflare might block you IP pretty soon though if you try to crawl. | |
| ▲ | andai 6 hours ago | parent | prev | next [-] | | Have you ever looked at Common Crawl dumps? I did a bit of data mining and holy cow is 99.99% of the web crap. Spam, porn, ads, flame wars, random blogs by angsty teens... I understand it has historical and cultural value — and maybe literary value, in a Douglas Coupland kind of way — but for my purposes, there was very little here that I considered of interest. Which was very encouraging to me, because it implies that indexing the Actually Important Web Pages might even be possible for a single person on their laptop. Wikipedia, for comparison, is only ~20GB compressed. (And even most of that is not relevant to my interests, e.g. the Wikipedia articles related to stuff I'd ever ask about are probably ~200MB tops.) | |
| ▲ | fabiensanglard 8 hours ago | parent | prev | next [-] | | Have you ever tried https://marginalia-search.com ? I love it. | |
| ▲ | computerex 3 hours ago | parent | prev | next [-] | | Kind of. I made ainews247.org that crawls certain sites and filters content so it's AI specific and valuable. I think it's a really good idea. | |
| ▲ | matsz 8 hours ago | parent | prev | next [-] | | You could take a look at the leaked Yandex source code from a few years ago. I'd believe their architecture should be decent enough. | | | |
| ▲ | toephu2 7 hours ago | parent | prev [-] | | With LLMs why do you even need a mini-Google? | | |
| ▲ | andai 6 hours ago | parent [-] | | For my LLM to use! I want sources, excerpts, cross-referencing... |
|
|
|
| ▲ | sorenjan 9 hours ago | parent | prev | next [-] |
| I had no idea they had their own cloud offering, I thought the whole point of Ollama was local models? Why would I pay $20/month to use small inferior models instead of using one of the usual AI companies like OpenAI or even Mistral? I'm not going to make an account to use models on my own computer. |
| |
| ▲ | mchiang 9 hours ago | parent | next [-] | | Fair question. Some of the supported models are large and wouldn't fit on most local devices. This is just the beginning, and Ollama does not need to exclude cloud hosted frontier models either with the relationship we've built with the model providers. We just have to be mindful and understand that Ollama stands with developers, and solve the needs. https://ollama.com/cloud | | |
| ▲ | sorenjan 9 hours ago | parent | next [-] | | > Some of the supported models are large and wouldn't fit on most local devices. Why would I use those models on your cloud instead of using Google's or Anthropic's models? I'm glad there are open models available and that they get better and better, but if I'm paying money to use a cloud API I might as well use the best commercial models, I think they will remain much better than the open alternatives for quite some time. | | |
| ▲ | mchiang 9 hours ago | parent | next [-] | | When we started Ollama, we were told how open-source (open-weight wasn't a term back then) will always be inferior to the close-sourced models. This was 2 years ago (Ollama's birthday is July 18th, 2023). Fast forward to now, open models are quickly catching up, and at a significantly lower price point for most and can be customized for specific tasks instead of being general purpose. For general purpose models, absolutely the closed models are currently dominating. | | |
| ▲ | typpilol 8 hours ago | parent [-] | | Ya a lot of ppl don't realize you could spend 2k on a 5090 to run some of the large models. Or spend 20 a month for models even a 5090 couldn't run. And not have to spend your own electricity, hardware, maintenance, updates etc. | | |
| ▲ | oytis 8 hours ago | parent [-] | | 20 a month for a commercial model is price dumping financed by investors. For ollama it's hopefully a sustainable price. |
|
| |
| ▲ | ineedasername 9 hours ago | parent | prev [-] | | A person can use Google’s Gemma models on ollama’s cloud and possibly pay less. And have more quality control that way (and other types of control I guess) since there is no don’t need to wonder if a recent model update or load balance throttling impacted results. Your use case doesn’t generalize. |
| |
| ▲ | disiplus 9 hours ago | parent | prev [-] | | hi, to me this sounds like you are going into the direction of openrouter. |
| |
| ▲ | kordlessagain 7 hours ago | parent | prev | next [-] | | You make an account to use their hosted models AND to have them available via the Ollama API LOCALLY. I'm spending $100 on Claude and $200 on GPT5, so $20 bucks is NOTHING and totally worth having access to: Qwen3 235b Deepseek 3.1 671b (thinking and non thinking) Llama 3.1 405b GPT OSS 120b Those are hardly "small inferior models". What is really cool is that you can set Codex up to use Ollama's API and then have it run tools on different models. | | |
| ▲ | n4bz0r 4 hours ago | parent [-] | | Has anyone tried the hosted models? How do they compare to GPT-5? I was thinking about trying ChatGPT Pro, but I seem to have completely missed that they bumped the price from $100 to $200. It was $100 just a while ago, right? Before GPT-5, I assume. |
| |
| ▲ | ricardobeat 9 hours ago | parent | prev | next [-] | | For models you can't run locally like gpt-oss-120b, deepseek or qwen3-coder 480b. And a way for them to monetize the success of Ollama. | |
| ▲ | dcreater 9 hours ago | parent | prev | next [-] | | Yeah it's been a steady pivot to profitable features. Wonderful to see them build a reputation through FOSS and codebase from free labor to then cash in. | | |
| ▲ | kergonath 8 hours ago | parent | next [-] | | As long as the software that runs locally gets maintained (and ideally improved, though if it is not I’ll simply move to something else), I find it difficult to be angry. I am more annoyed by software companies that offer a nerfed "community edition" whose only purpose is to coerce people into buying the commercial version. | | |
| ▲ | dcreater 8 hours ago | parent [-] | | > software companies that offer a nerfed "community edition" whose only purpose is to coerce people into buying the commercial version. This is the play. Its only a matter of time till they do it. Investors will want their returns | | |
| ▲ | Imustaskforhelp 7 hours ago | parent [-] | | pardon me but is Ollama a company though? I didn't knew that actually. And are they VC funded? Are they funded by Y-combinator or anything else.. I just thought it was a project by someone to write something similar to docker but for LLM's and that was its pitch for a really really long time I think | | |
|
| |
| ▲ | all2 8 hours ago | parent | prev | next [-] | | What sort of monetization model would you like to see? What model would you deem acceptable? | | |
| ▲ | dcreater 8 hours ago | parent | next [-] | | Ollama , the local inference platform, stays completely local. Maintained by a non-profit org with dev time contributed to by a for-profit company. That company can be VC backed and can make their cloud inference platform. And can use ollama as its backed, as a platform to market etc. But keep it as a separate product (not named ollama). This is almost exactly how duckdb/motherduck functions and I think theyre doing an excellent job. EDIT: grammar and readability | |
| ▲ | troyvit 7 hours ago | parent | prev | next [-] | | If I were them I'd go whole-hog on local models and: * Work with somebody like System76 or Framework to create great hardware systems come with their ecosystem preinstalled. * Build out a PaaS, perhaps in partnership with an existing provider, that makes it easy for anybody to do what Ollama search does. I'm more than half certain I could convince our cash strapped organization to ditch elastic search for that. * Partner with Home Assistant, get into home automation and wipe the floor with Echo and its ilk (yeah basically resurrect Mycroft but add whole-house automation to it). Each of those are half-baked, but it also took me 7 minutes to come up with them, and they seem more in line with what Ollama tries to represent than a pure cloud play using low-power models. | |
| ▲ | Cheer2171 6 hours ago | parent | prev [-] | | Have ollama server support auth / API keys (closed as out of scope) and monetize the way everyone else does around SSO. |
| |
| ▲ | Cheer2171 6 hours ago | parent | prev [-] | | What reputation? People who actually know how to develop software or work with LLMs know ollama is a child's tricycle and to run the hell away from what is just a buggy shell around other people's inference engines. Ollama is beloved by people who know how to write 5 lines of python and bash to do API calls, but can't possibly improve the actual app. | | |
| ▲ | dcreater 5 hours ago | parent [-] | | Thats what I thought so as well - that it was for people like me who arent professional SWEs and thus im sad to see them go this way. But what ive found is people are using it for "on-prem" style deployment, have no idea if this is common but I wouldnt be surprised given the reality of AI startups + the abundance of ollama in training dataset leading to relatively greater vibe coding success rate |
|
| |
| ▲ | zmmmmm 7 hours ago | parent | prev [-] | | a lot of "local" models are still very large to download and slow to run on regular hardware. I think it's great to have a way to evaluate them cheaply in the cloud before deciding to pull down the model to run locally. At some level it's also more of a principle that I could run something locally that matters rather than actually doing it. I don't want to become dependent on technology that someone could take away from me. |
|
|
| ▲ | andai 6 hours ago | parent | prev | next [-] |
| I added search to my LLMs years ago with the python DuckDuckGo package. However I found that Google gives better results, so I switched to that. (I forget exactly but I had to set up something in a Google dev console for that.) I think the DDG one is unofficial, and the Google one has limits (so it probably wouldn't work well for deep research type stuff). I mostly just pipe it into LLM apis. I found that "shove the first few Google results into GPT, followed by my question" gave me very good results most of the time. It of course also works with Ollama, but I don't have a very good GPU, so it gets really slow for me on long contexts. |
| |
| ▲ | ivape 3 hours ago | parent [-] | | How do you meaningfully use it without using scraping APIs? Aren't the official apis severely limited? | | |
|
|
| ▲ | MisterBiggs 9 hours ago | parent | prev | next [-] |
| I was hoping for more details about their implementation, I saw ollama as the open source // platform agnostic tool but I worry their recent posturing is going against that |
| |
| ▲ | jmorgan 9 hours ago | parent | next [-] | | We did consider building functionality into Ollama that would go fetch search results and website contents using a headless browser or similar. However we had a lot of worries about result quality and also IP blocking from Ollama creating crawler-like behavior. Having a hosted API felt like a fast path to get results into users' context window, but we are still exploring the local option. Ideally you'd be able to stay fully local if you want to (even when using capabilities like search) | |
| ▲ | wirybeige 6 hours ago | parent | prev | next [-] | | Their GUI is closed-source. If someone wants an easy to use & easy to setup app, may as well use LMStudio, which doesn't try to pretend to be OSS. Or use ramalama which is basically just containerizing LLMs and the relevant bits, pretty damn similar to ollama. Or just go back to "basics" and use llama.cpp or vllm. | |
| ▲ | dcreater 9 hours ago | parent | prev [-] | | Their posture has continually been getting worse and worse. It's deceptive and I've expunged it from all my systems |
|
|
| ▲ | thomastraum 6 hours ago | parent | prev | next [-] |
| I am just working on a tool using websearch and iterating over different providers. openAI, xAI, gemini all suffer from not being allowed on respective competitor sites. this searched works for me with some quick tests well on YT videos, which OpenAI web search can't access. It kind of failed on X but sometimes returned ok relevant results. Definitely hit and miss but on average good |
|
| ▲ | drnick1 8 hours ago | parent | prev | next [-] |
| What "Ollama account?" I am confused, I thought the point of Ollama was to self-host models. |
| |
| ▲ | mchiang 8 hours ago | parent [-] | | To provide additional features or using Ollama's cloud hosted models, you can signup for an Ollama account. For starter, this is completely optional. It can be completely local too for you to publish your own models to ollama.com that you can share with others. |
|
|
| ▲ | jerrygoyal 3 hours ago | parent | prev | next [-] |
| I'm looking to use web search in production, but they haven't mentioned the price. Only thing that's mentioned is $20/month, but how much quota does it include? |
| |
| ▲ | mchiang 3 hours ago | parent | next [-] | | Sorry about this. We are working really hard on providing a usage based pricing. During the preview period we want to start offering a $20 / month plan tailored for individuals - and we are monitoring the usage and making changes as people hit rate limits so we can satisfy most use cases, and be generous. | |
| ▲ | enoch2090 3 hours ago | parent | prev [-] | | That's the essence of these services, they never explicitly mention the quota, or secretly lowers it at some point. |
|
|
| ▲ | yggdrasil_ai 9 hours ago | parent | prev | next [-] |
| I wish they would instead focus on local tool use. I could just use my own web search via brave api. |
| |
| ▲ | parthsareen 9 hours ago | parent [-] | | Hey! Author of the blogpost and I also work on Ollama's tool calling. There has been a big push on tool calling over the last year to improve the parsing. What's the issues you're running into with local tool use? What models are you using? | | |
| ▲ | vrzucchini 8 hours ago | parent [-] | | Hey, unrelated to the question you're answering but where do I see the rate limits for free and paid tiers? |
|
|
|
| ▲ | mrkeen 9 hours ago | parent | prev | next [-] |
| Any tips on local/enterprise search? I like using ollama locally and I also index and query locally. I would love to know how to hook ollama up to a traditional full-text-search system rather than learning how to 'fine tune' or convert my documents into embeddings or whatnot. |
| |
| ▲ | ineedasername 8 hours ago | parent | next [-] | | You can use solr, very good full text search and it has an mcp integration. That’s sufficient on its own and straightforward to setup: https://github.com/mjochum64/mcp-solr-search A slightly heavier lift, but only slightly, would be to also use solr to also store a vectorized version of your docs and simultaneously do vector similarity search, solr has built in knn support fort it. Pretty good combo to get good quality with both semantic and full-text search. Though I’m not sure if it would be relatively similar work to do solr w/ chromadb, for the vector portion, and marry the result stewards via llm pixie dust (“you are the helpful officiator of a semantic full-text matrimonial ceremony” etc). Also not sure the relative strengths of chromadb vs solr on that- maybe scales better for larger vector stores? | |
| ▲ | all2 8 hours ago | parent | prev [-] | | docling might be a good way to go here. Or consider one of the existing full text search engines like Typesense. |
|
|
| ▲ | throwaway12345t 9 hours ago | parent | prev | next [-] |
| Do they pull their own index like brave or are they using Bing/Google in the background? |
| |
| ▲ | tripplyons 9 hours ago | parent [-] | | Based on the fact that there are very few up-to-date English-language search indexes (Google, Bing, and Brave if you count it), it must be incredibly costly. I doubt they are maintaining their own. | | |
| ▲ | throwaway12345t 9 hours ago | parent [-] | | We need more indexes | | |
| ▲ | tripplyons 8 hours ago | parent | next [-] | | More competition in the space would be great for me as a consumer, but the problem is that the high fixed costs make starting an index difficult. | | |
| ▲ | andai 6 hours ago | parent [-] | | I've been wondering can't this be done p2p? Didn't we solve most of the technical problems in the late 90s / early 2000s? And then just abandoned that entire way of thinking for some reason? If many thousands of people care about having a free / private / distributed search engine, wouldn't it make sense for them to donate 1% of their CPU/storage/network to an indexer / db that they they then all benefit from? |
| |
| ▲ | JumpCrisscross 9 hours ago | parent | prev | next [-] | | > We need more indexes Not particularly. Indexes are sort of like railroads. They're costly to build and maintain. They have significant external costs. (For railroads, in land use. For indexes, in crawler pressure on hosting costs.) If you build an index, you should be entitled to a return on your investment. But you should also be required to share that investment with others (at a cost to them, of course). | |
| ▲ | pzo 7 hours ago | parent | prev | next [-] | | perplexity added API today, got the following email: > Dear API user,
We’re excited to launch the Perplexity Search API — giving developers direct access to the same real-time, high-quality web index that powers Perplexity’s answers. | |
| ▲ | ineedasername 8 hours ago | parent | prev [-] | | Do we know what OpenAI uses? Have they built their own, or piggy back on moneybags $MS and Bing? | | |
|
|
|
|
| ▲ | anonyonoor 8 hours ago | parent | prev | next [-] |
| I know it might be a security nightmare, but I still want to see an implementation of client-side web search. Like a full search engine that can visit pages on your behalf. Is anyone building this? |
| |
| ▲ | apimade 7 hours ago | parent | next [-] | | AgenticSeek, or you can get pretty far with local qwen and Playwright-Stealth or SeleniumBase integrated directly into your Chrome (running with Chrome DevTools Protocol enabled). | |
| ▲ | not_really 8 hours ago | parent | prev [-] | | sounds like a good way to get your IP flagged by cloudflare |
|
|
| ▲ | chrisshroba 6 hours ago | parent | prev | next [-] |
| Are the rate limits documented somewhere? |
|
| ▲ | alberth 3 hours ago | parent | prev | next [-] |
| Dumb question: is this affiliated with Meta? Or is this just someone trying to monetize Meta open source models? |
| |
|
| ▲ | riskable 7 hours ago | parent | prev | next [-] |
| WTF is going to happen to Google's ad revenue if every PC has an AI that can perform searches on the user's behalf? |
| |
| ▲ | onesociety2022 7 hours ago | parent | next [-] | | How is that any different than someone installing an ad blocker in their browser? Arguably ad blocker is much simpler technology than running a local LLM and has been available for years now. And yet Google’s ad revenue seems to have remained unaffected. | |
| ▲ | tartoran 7 hours ago | parent | prev | next [-] | | They'll have to squeeze it all from Youtube! | |
| ▲ | thimabi 7 hours ago | parent | prev | next [-] | | They can always pivot to their Search-via-API business :) It takes lots of servers to build a search engine index, and there’s nothing to indicate that this will change in the near future. | |
| ▲ | system2 6 hours ago | parent | prev | next [-] | | There are millions of websites, and a local LLM cannot scrape all of them to make sense of them. Think about it. OpenAI can do it because they spend millions to train its systems. Many sites have hidden sitemaps that cannot be found unless submitted to google directly. (Not even listed in robots txt most of the time). There is no way a local LLM can keep up with up to date internet. | |
| ▲ | andrewmcwatters 7 hours ago | parent | prev [-] | | google.com/sorry |
|
|
| ▲ | frabonacci 9 hours ago | parent | prev | next [-] |
| This is a nice first step - web search makes sense, and it’s easy to imagine other tools being added next: filesystem, browser, maybe even full desktop control. Could turn Ollama into more than just a model runner. Curious if they’ll open up a broader tool API for third-party stuff too |
|
| ▲ | lxgr 9 hours ago | parent | prev | next [-] |
| Does this work with (tool use capable) models hosted locally? |
| |
| ▲ | parthsareen 9 hours ago | parent | next [-] | | Hi - author of the post. Yes it does! The "build a search agent" example can be used with a local model. I'd recommend trying qwen3 or gpt-oss | | |
| ▲ | lxgr 8 hours ago | parent [-] | | Very cool, thank you! Looking forward to try it with a few shell scripts (via the llm-ollama extension for the amazing Python ‘llm’) or Raycast (the lack of web search support for Ollama has been one of my biggest reasons for preferring cloud-hosted models). | | |
| ▲ | parthsareen 8 hours ago | parent [-] | | Since we shipped web search with gpt-oss in the Ollama app I've personally been using that a lot more especially for research heavy tasks that I can shoot off. Plus with a 5090 or the new macs it's super fast. |
|
| |
| ▲ | yggdrasil_ai 9 hours ago | parent | prev [-] | | I don't think ollama officially supports any proper tool use via api. | | |
| ▲ | lxgr 9 hours ago | parent [-] | | Huh, I was pretty sure I used it before, but maybe I’m confusing it with some other python-llm backend. Is https://ollama.com/blog/tool-support not it? | | |
| ▲ | all2 8 hours ago | parent [-] | | It depends on the model. Deepseek-R1 says it supports tool use, but the system prompt template does not have the tool-include callouts. YMMV |
|
|
|
|
| ▲ | chungus42 10 hours ago | parent | prev | next [-] |
| My biggest gripe with small models has been the inability to keep it informed with new data. Seems like this at least eases the process. |
| |
| ▲ | mchiang 10 hours ago | parent [-] | | I was pleasantly surprised on the model improvements when testing this feature. For smaller models, it can augment it with the latest data by fetching it from the web, solving the problem of smaller models lacking specific knowledge. For larger models, it can start functioning as deep research. |
|
|
| ▲ | orliesaurus 5 hours ago | parent | prev | next [-] |
| Exa, Tavily or Firecrawl. Which one is it? |
|
| ▲ | dumbmrblah 8 hours ago | parent | prev | next [-] |
| What is the data retention policy for the free account versus the cloud account? |
|
| ▲ | nextworddev 8 hours ago | parent | prev | next [-] |
| Can someone tell me how much this costs and how this compares to Tavily etc |
| |
| ▲ | typpilol 8 hours ago | parent [-] | | Taviy gives you 1k free requests a month. Even with heavy ai usage I'm only at like 400/1000 for the month |
|
|
| ▲ | kordlessagain 7 hours ago | parent | prev | next [-] |
| I have a MCP tool that uses SERP API and it works quite well. |
|
| ▲ | mmaunder 5 hours ago | parent | prev | next [-] |
| So, use ollama to avoid cloud models and services, but ollama sells cloud models and services. The dissonance makes my teeth hurt. |
|
| ▲ | Cheer2171 6 hours ago | parent | prev | next [-] |
| Your regular reminder that you don't need ollama to get a quick chat engine on the command line, you can just do this with pretty much any major model on huggingface: pip install transformers transformers chat Qwen/Qwen2.5-0.5B-Instruct |
|
| ▲ | bigyabai 9 hours ago | parent | prev | next [-] |
| > Create an API key from your Ollama account. Dead on arrival. Thanks for playing, Ollama, but you've already done the leg work in obsoleting yourself. |
| |
| ▲ | timothymwiti 7 hours ago | parent | next [-] | | Does anyone know if the python and JavaScript examples on the blog work without an Ollama Account? | |
| ▲ | disiplus 9 hours ago | parent | prev [-] | | they had at some point start earning money. | | |
| ▲ | bigyabai 9 hours ago | parent [-] | | At some point you have to earn user trust. If Ollama won't be the Open Source Ollama API provider, there are several endpoint-compatible alternatives happy to replace them. From where I'm standing, there's not enough money in B2C GPU hosting to make this sort of thing worthwhile. Features like paid search APIs this really hammer home how difficult it is to provide value around that proposition. |
|
|
|
| ▲ | tripplyons 10 hours ago | parent | prev [-] |
| Just set up SearXNG locally if you want a free/local web search MCP: https://gist.github.com/tripplyons/a2f9d8bd553802f9296a7ec3b... |
| |
| ▲ | disiplus 9 hours ago | parent | next [-] | | That's what i have together with open webui and gpt-oss-120b. it works reasonably well. But sometimes the searches are slow. | | |
| ▲ | tripplyons 9 hours ago | parent [-] | | You can try removing search engines that fail or reducing their timeout setting to something faster than the default of a few seconds. | | |
| ▲ | disiplus 9 hours ago | parent [-] | | SearXNG is fast, its mostly the code that triggers the searches. Because, my daily is chatgpt, i still did not try to tweak it. | | |
| ▲ | tripplyons 9 hours ago | parent [-] | | I haven't needed to tweak mine for similar reasons, but I'm surprised to hear that the "code that triggers the searches" is slow. Are you referring to something in Open WebUI? | | |
|
|
| |
| ▲ | mchiang 10 hours ago | parent | prev [-] | | I haven't tried SearXNG personally. How does it compare to Ollama's web search in terms of the search content returned? | | |
| ▲ | tripplyons 9 hours ago | parent [-] | | I have no idea how well Ollama's works, but I haven't ran into any issues with SearXNG. The alternatives aren't worth paying for in any use case I've encountered. |
|
|