18 comments

  • smallstepforman9 hours ago
    Today I asked Gemini to extract a table from an PDF appendix and create C++ data table with its contents. After 15 or so iterations with corrections and new mistakes, it eventually gave up. I was floored when it said “I’m sorry, I cannot do this simple task, I’ve exceeded my error threshold and cannot do this task for you. My LLM prediction engine invents data instead of doing a simple data copy&#x2F;reformat”.<p>Stunned to see that Gemini threw its digital arms in the air and gave up.
    • hashta7 hours ago
      That&#x27;s interesting because my experience has been almost the opposite. A few months ago I tested Gemini on converting screenshots of tables from PDF files into CSV. I tried it on several different tables and it got every one right. It consistently outperformed ChatGPT.
      • jatora7 hours ago
        anyone who has used both knows this is inaccurate or dishonestly stated (ie. you were using gpt nano or some nonsense)
    • frankacter2 hours ago
      I just tried this and it worked without issue.<p>Some considerations:<p>1) tell it to extra t the data (in a new session) does that work?<p>2) if it doesn&#x27;t, could there be something up with the PDF?<p>As many commentors suggested, this works well with Gemini so there is likely a missing variable in play.<p>Share your prompt and the PDF and let&#x27;s see if we can determine what.
    • anigbrowl6 hours ago
      It&#x27;s extremely hit or miss. I&#x27;ve had it one-shot a pretty decent analytic prototype from a brief description, but also had it get trapped in hour-long back and forth regression hell over incredibly simple things like adding a static favicon (ie it would add it, then keep taking it away with every subsequent iteration, breaking something else every time it was asked to put the favicon back etc.).
    • chorizo2 hours ago
      I built a little research dashboard that monitors new papers from specific research labs. There is a paper ingest skill that writes Python scripts using pdfplumber to dismantle pdf’s. I have also used it to fetch supplementary information to replicate&#x2F;augment the published tables. It can also use plotdigitizer to extract raw data from plots.
    • base6988 hours ago
      That&#x27;s better than the loop grok got stuck in trying to use git and push the work it did leading to a $15 api credit deduction.
      • whh8 hours ago
        Getting AI&#x2F;ML to acknowledge &quot;I don&#x27;t know&quot; is such a challenge.
        • jgalt2128 hours ago
          Not true regarding ML, most ML methods support RMSE even if they are non parametric methods.
          • janalsncm6 hours ago
            RMSE is just an extrapolation from the training data. If the data is wrong because the world changed, any model (parametric or not) can be confidently incorrect.
        • taneq5 hours ago
          This is why the world model approach is so important. It allows you to feed back the prediction accuracy of the model to itself at training time, enabling it to predict (to some degree) its own uncertainty. If you jump through a couple of hoops you can also do this at run time to give it “spidey sense” that something’s not right with current inference.
    • 0xbadcafebee1 hour ago
      It does this pretty often. Gemini is an &quot;intelligent&quot; model, but it&#x27;s massively nerfed and so isn&#x27;t useful for real work. If you use it with an agent harness, you need to design the harness to detect this and start a new session. Once it nerfs itself it won&#x27;t try again.
    • hodgehog113 hours ago
      The PDF reader for Gemini is extraordinarily poor in my experience. I like the writing style of this model a little better, but for most tasks people would use AI for, Gemini is probably not what you want to be using.
      • trees1012 hours ago
        what is a good way to read PDFs using AI?
        • seanhunter1 hour ago
          In my experience it really depends on what sort of pdfs you are trying to extract (ie what the content is).<p>For regular pdfs that have been produced in a “normal way” (ie using latex or a modern application with a “save to pdf” function) will contain the text and for those I’ve had a lot of success on general pdfs using pypdf.<p>“Image” Pdfs that have been produced via a scan so don’t actually contain a text transcript require actual OCR. At the moment my personal rag pipeline is doing this using a local Gemma4 model (you could use something else).<p>Either way I do an audit post-ingest where I select a random set of pages and also get the local gemma model to try those same set and compare. The symptoms to look out for here will depend a lot on what you’re trying to extract but I’m extracting maths mostly so I get the model to check extraction of symbols, equations etc. One thing I have consistently found useful is to look for “mojibake” (scrambled text caused by decoding in an unintended character encoding) as this almost always catches pdfs that have just extracted as pure garbage. I added this step because I was ingesting a lot of old maths pdfs which have specialist notation that wasn’t always getting correctly ingested and as they were image pdfs it was coming in as pure garbage. So the fix here is to use a specialist ocr service (I have been using “mathpix” which has been great and isn’t too expensive if you don’t want to do too much).<p>The other thing that can cause problems is things like tables (eg if you were trying to ingest a lot of pdfs like financials of companies etc). Those can cause problems for both the ocr and the pure text extraction methods. I don’t have a current recommendation for that because I haven’t done it recently enough and the state of the art has moved a lot. It’s something to be aware of that will require special treatment though.
        • lostsock2 hours ago
          I have a standing instruction for any documents that can&#x27;t natively be read by a given AI to first be converted into .md using <a href="https:&#x2F;&#x2F;github.com&#x2F;microsoft&#x2F;markitdown" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;microsoft&#x2F;markitdown</a> which I&#x27;ve found to work really well
    • fsmv7 hours ago
      You should just have it OCR a screenshot of the PDF that would probably work better
    • BobbyTables26 hours ago
      Tabula + Excel could probably do it quicker.
      • jwrallie1 hour ago
        The table select option in Okular is also great, as you can manually rearrange the divisions. For low volume, of course. Tabula will work better otherwise. I also suggest Libreoffice Calc, the .csv support is leagues ahead of Excel.
    • anitil6 hours ago
      My go-to for this is to screenshot and use the built-in text extraction in the screenshot tool (I&#x27;m on a mac), then pass on that text data to whatever processing. It&#x27;s a pretty good tool so long as the PDF is in OK shape (I&#x27;ve had errors in scanned images).
      • nradov5 hours ago
        It&#x27;s so horrible that in 2026 people are still publishing important data and specifications in a format like PDF that&#x27;s difficult for LLMs to consume. We need to drag them kicking and screaming to HTML or Markdown. Heck, even Microsoft Word DOCX is superior for reliable parsing and content extraction.
    • staticman28 hours ago
      You didn&#x27;t say whether you were using the App but the App&#x27;s performance seems to be severely throttled compared to API.
    • jjice9 hours ago
      I haven&#x27;t heard any accounts of it doing that since Gemini 2.5, but it was pretty easy to get it to do it with a programming task back then after a few failed attempts. Very interesting to hear it&#x27;ll still do it.
    • mjcohen6 hours ago
      Years ago, I used Acrobat to extract tables from a PDF. Had to do it manually, but it pasted nicely into Excel.
    • staindk8 hours ago
      We&#x27;ve been quite impressed with GCP Document AI. Not sure if it has a free tier but perhaps that&#x27;s where Google is putting all the good OCR.
    • suuuuuuuu7 hours ago
      I envy you that it admitted that rather than simply making up data and lying about it.
    • nimchimpsky8 hours ago
      [dead]
  • jorjon4 hours ago
    Gemini Flash 3.5 (through agy) ran `git reset --hard` when I asked it to commit my changes, apparently it thought it was better to have a clean repo before `git add`. Of course I&#x27;m not trusting my computer to it. When will we have 3.5 Pro?
    • Synthetic73463 hours ago
      I want a lightweight sandbox with all my dev stuff that LLMs can&#x27;t escape before I turn on computer use
  • satvikpendem12 hours ago
    There&#x27;s still no MCP support in the Gemini app, which is very useful to get various pieces of info as a user just via chatting. For example I recently wanted to get an Airbnb and wanted to filter by specific criteria including house image analysis and Gemini couldn&#x27;t do it so I had to do it in Codex.
    • anticorporate12 hours ago
      Yeah, it seems like this is the biggest missing feature from the Gemini ecosystem.<p>If I can&#x27;t connect MCP, there&#x27;s really no selling point for me to use Gemini from my watch, car, smart speaker, etc. If I&#x27;m already bound to using my own front end, then I&#x27;m only evaluating Gemini as a model&#x2F;API, at which point it has many competitors that may be cheaper or better fit for the task.
    • mitchell_h11 hours ago
      I&#x27;m fairly convinced Claude&#x27;s strongest point is the app. AI users aren&#x27;t anywhere near as mature or smart as youtube&#x2F;hn would have folks believe. The claude app is amazing for bridging that gap.
      • dr_dshiv10 hours ago
        Didn’t it take them like 2 days to build the first one?
      • dr_dshiv10 hours ago
        [flagged]
    • lil-lugger8 hours ago
      I think native apps are critical infrastructure in AI development particularly around agents. The truth is there’s no good native interaction layer for custom agents. If you want to wire up and self host an agent that has access to anything ever your only option is a janky port to telegram or Slack. I’ve been building vessels.app because I think it’s the missing piece to agent interaction. I need testers if anyone is interested!
    • tonyrice12 hours ago
      This is why I don&#x27;t always use the official Gemini Web app. Lately I&#x27;ve found that it&#x27;s more useful to utilize a CLI. I&#x27;m looking forward to the day they add MCP in the web.
      • pregseahorses12 hours ago
        Gemini CLi now requires antigravity subscription..
        • tim-projects5 hours ago
          I tried antigravity. It absolutey sucks in comparison. Given up on Google
      • singingtoday11 hours ago
        CLI doesn&#x27;t work with my subscription..
    • solarkraft10 hours ago
      They only fixed stopping the model mid-generation losing the entire session pretty recently.<p>The Gemini apps suck.
  • shafiemoji45 minutes ago
    My work requires me to use `agy cli` (Google AI Ultra) for development, and it&#x27;s been incredibly frustrating. I strongly dislike the Gemini models because they consistently fail to grasp basic instructions. I also can&#x27;t use the Claude models included in the AI Ultra plan because the agy cli wrapper makes the experience completely unusable. I&#x27;d rather use the free plan on OpenCode than deal with this Gemini setup.
    • perbu18 minutes ago
      They can’t follow instructions at all. They are a year behind Claude.
  • mlmonkey12 hours ago
    It&#x27;s funny how in their own graph, <a href="https:&#x2F;&#x2F;storage.googleapis.com&#x2F;gweb-uniblog-publish-prod&#x2F;images&#x2F;gemini-3-5__benchmark-OSWorld-Ve.width-1000.format-webp.webp" rel="nofollow">https:&#x2F;&#x2F;storage.googleapis.com&#x2F;gweb-uniblog-publish-prod&#x2F;ima...</a> Gemini 3.5 Flash is beat hands down by both Opus 4.8 and GPT 5.5, and yet the graph is drawn as if Gemini wins ... :-D
    • mroche12 hours ago
      The graph has Gemini 3.5 Flash matching Sonnet 4.6, losing to Opus 4.8, and slightly behind GPT-5.5 by 0.3 points... That&#x27;s not that much of a hands-down loss for Gemini for this specific workload benchmark.<p>The methodology used:<p><a href="https:&#x2F;&#x2F;deepmind.google&#x2F;models&#x2F;evals-methodology&#x2F;gemini-3-5-flash" rel="nofollow">https:&#x2F;&#x2F;deepmind.google&#x2F;models&#x2F;evals-methodology&#x2F;gemini-3-5-...</a><p><i>Methodology: All Gemini scores are pass @1 except where otherwise noted. &quot;Single attempt&quot; settings allow no majority voting or parallel test-time compute. All of the results are all run with the Gemini API for the model-id gemini-3.5-flash with default sampling settings unless indicated otherwise below. To reduce variance, we average over multiple trials for smaller benchmarks.<p>All the results for non-Gemini models are sourced from providers&#x27; self reported numbers unless otherwise mentioned below. For Claude Opus 4.7 , Sonnet 4.6, and GPT-5.5 we default to reporting maximum thinking&#x2F;reasoning settings available, but when reported results are not available we use best available reasoning results.</i>
    • sheept12 hours ago
      It highlights the Gemini models blue since that&#x27;s what the article is about. The bar heights seem consistent with the values.
      • namuol7 hours ago
        They should be sorting the models by performance on the horizontal axis.
    • data-ottawa11 hours ago
      I think 3.5 flash is trying to target agentic work, like Google Search or ADK (agent development kit) use cases.<p>It’s something cheap enough you’d put out in front of your customers, and Opus is expensive enough you wouldn’t.
    • gb2d_hn11 hours ago
      It&#x27;s honest - people who know what they are looking at will take speed and token costs into account. I don&#x27;t use Gemini 3.5 for coding, but I use it as something in between a search engine and agent.
    • IncreasePosts7 hours ago
      It&#x27;s amazing how designers of charts trying to show their product is close to the leader always remember to start the axis at zero, and designers of charts trying to show how big their lead is always forget that
      • timacles4 hours ago
        Promotions material isn’t a medium for scientific rigor
  • YuechenLi7 hours ago
    So... has Google provided a Codex&#x2F;Claude Code equivalent to Gemini yet? I would like to use Gemini for coding tasks, but that&#x27;s kind of difficult to do as I don&#x27;t even know how to get Gemini to even &quot;clone this repo and read the code in it for static analysis&quot;, much less open PRs in repos.<p>ChatGPT&#x2F;Codex can do it, Claude can do it, why can&#x27;t Gemini?<p>And no, I don&#x27;t mean going through Antigravity, and personally I&#x27;m wary about LLMs having unsupervised access on my computer without explicit policy, so I really think Google is putting the cart before the horse here.
    • kakugawa6 hours ago
      Antigravity CLI (which replaced Gemini CLI):<p><a href="https:&#x2F;&#x2F;antigravity.google&#x2F;product&#x2F;antigravity-cli" rel="nofollow">https:&#x2F;&#x2F;antigravity.google&#x2F;product&#x2F;antigravity-cli</a>
      • anigbrowl6 hours ago
        So a couple weeks ago I decided to pay some money for the Gemini API cause I&#x27;d found myself getting a lot of use out of the free tier chat and figured they deserved some of my cash.<p>First headache was a lot of delays and &#x27;service unavailable due to excessive load messages&#x27;. Second headache was a lot of frustration with the Continue plugin in my IDE. Gemini chat suggests I try the Antigravity app. I do so. IT&#x27;s OK. Launch it on an agentic task, it gets part way through and stops, asking me to subscribe. Try getting it to use some of the Gemini credits I paid for a few days earlier. Turns out Antigravity is developed by a completely separate team within Google and they don&#x27;t recognize or accommodate Gemini credits because they are trying to maintain budgetary independence so as to maintain operational autonomy Gemini. At least, that&#x27;s the explanation Gemini (free tier) offered for why Antigravity (Free&#x2F;subscription only) won&#x27;t accept Gemini (prepaid&#x2F;subscription) payments. What a time to be alive.<p>You won&#x27;t be surprised to learn I switched to a competitor.
    • jatora7 hours ago
      no. gemini&#x27;s instruction following is currently abysmal. Gemini CLI could be a great scaffold for all we know, but we cant know because the models it uses are so horribly bad at being driven in that way.<p>no clue why google has dropped the ball this hard on IF.
      • nl4 hours ago
        I think 3.5 Flash is supposed to improve the long-range instruction following.<p>I haven&#x27;t tried it at that because for the short range tasks I gave it I found it around Sonnet level, but slower (because it takes more tries!) which makes it more expensive.<p>The old Flash models were great because they were fast.<p>3.5 Flash shows Google can work around the old &quot;Good, Fast or Cheap: Pick any two&quot; thing by picking none of them.
      • polski-g6 hours ago
        They have a 3.1-pro-customtools model which they allege its better at using custom tools&#x2F;MCPs&#x2F;etc.<p>It is not better.
    • andrewbutts7 hours ago
      Yes, Gemini CLI and Antigravity
    • liuchao-0014 hours ago
      [dead]
  • airstrike12 hours ago
    Computer use is such a terrible idea. It&#x27;s slow, insecure, error prone, expensive.<p>I guess if you&#x27;re trying to get people to tokenmaxx it may look like a valid strategy, but ain&#x27;t no way this will be delightful to users.<p>I think it&#x27;s a symptom of just not understanding how LLMs should interface with the OS because we&#x27;re still in their early days.<p>Eventually there&#x27;ll be an iPhone moment for the ergonomics of LLM usage outside of coding
    • gdudeman11 hours ago
      Computer use is a great idea. It gets the job done when nothing else will.<p>If you&#x27;re a person trying to get their job done at a big company, but half your job is in 1-2 proprietary tools or is stuck behind an API you can&#x27;t program against, computer use can allow you, a non-techie, to do your job more efficiently.<p>I think it&#x27;s an awesome way to circumvent gate keepers and the IT department to let people accomplish their goals.
      • airstrike10 hours ago
        That is an incredibly niche use case and comes with a boatload of footguns.<p>Even then, an AI writing AHK scripts likely outperforms.
      • Rebelgecko9 hours ago
        I think there&#x27;s a sweet spot- a lot of the time you&#x27;re probably better off with &quot;reverse engineer this web page and build me an API or personalized chrome extension to meet my needs&quot;.<p>I have an agent doing price checks for me for an item on a certain website. Instead of blasting through a zillion tokens processing the DOM over and over, it loaded the page once and figured out how to download a json with the price.
        • airstrike7 hours ago
          Does it have to view the page now repeatedly to download the JSON?
          • saaspirant4 hours ago
            The tool it built will do viewing, probably.
            • airstrike4 hours ago
              that tool is called Chrome with extra flags in the CLI
      • reacharavindh10 hours ago
        How are folks using “computer use” to click things on intranet portals that are behind an SSO? Even this OP example shows visitors a url and enter this search term… that is port of useless.<p>How can I automate things behind an SSO wall? Even if it means I manually authorize it once and watch it do things on its own..
        • hahajk8 hours ago
          I&#x27;ve never used Gemini computer use, but I assume it&#x27;s the same:<p>Claude computer use takes control of your whole computer inputs (mouse and keyboard) plus screenshots. You just log in, tell Claude you&#x27;re logged in, and let it get to work. It&#x27;ll use the browser you&#x27;re logged in with.<p>The chrome extension is a little better because it only takes control of its own chrome tabs (again: you just log in.)
        • pimeys7 hours ago
          Take manual control once, save the login info to a password manager, teach the model to login with it.
      • uejfiweun10 hours ago
        Yeah, it&#x27;s not that computer use is the most theoretically optimal paradigm, but there&#x27;s a reasonable case that given the constraints of modern software systems and how they&#x27;re built, that it&#x27;s the most <i>realistically</i> optimal paradigm.
    • thorum11 hours ago
      The “correct”, elegant way for AI to interact with existing software would take decades and billions of dollars to build. Someone would have to do the hard work of building new APIs, solving decades of accessibility issues, etc.<p>Or you can show an AI screenshots and ask it where to click.
      • sarreph11 hours ago
        I disagree if your application is networked. Most SaaS is built on RESTful APIs that can be converted trivially into interfaces &#x2F; contracts for tool use.
        • chatmasta10 hours ago
          So you can either wait for every application to do that, or at least make it possible for an LLM to do it… or you can make the LLM use a computer interface that works with every application by definition.
          • Chu4eeno10 hours ago
            The middle ground would be leveraging e. g. standard a11y APIs, and&#x2F;or hooking into applications like Squish does.<p>Then you get a nice textual world that fits the LLM without having to rewrite every application to have a fullblown HTTP server.
      • jubilanti10 hours ago
        it takes decades and billions of dollars to develop APIs?
    • johnsmith18403 hours ago
      The iphone moment is an AI that can completely manage your personal life. It has full access to every financial account you own handles all admin work. Could sign you up for a new account pay and give you the login.<p>If you can SAFELY do that it&#x27;s a big moment. But to be clear safe is a massive problem. Until you see a big company start saying the AI can use your SSN, CC, bank password safely we aren&#x27;t there yet.
      • fragmede3 hours ago
        Cars were around for decades before they came up with seatbelts. Claude Cowork will happily go through your files, which might just have your SSN in them, and ignore previous instructions.
        • johnsmith18402 hours ago
          But we have regulation and complaince for consumer secrets? That&#x27;s not a comparable example.<p>The difference is that if openai gave you a product and it leaked a million peoples bank passwords it would destroy the entire company.<p>Again until a big tech product can bring that to a clean user experience we&#x27;re not there yet. Even the most zealot openclaw users are not hooking their bank accounts into the AI yet. I&#x27;m sure they exist but I&#x27;ve not seen them.<p>Also every big tech computer use product actively screams for you not to give their agents secrets.
        • johnsmith18402 hours ago
          Every major company scream not to put secrets in their computer use bot.<p>Seatbelts were regulated later. Your SSN and CC are regulated over a decade ago.
    • orbital-decay10 hours ago
      Spreadsheet is such a terrible idea. It may look like a valid tool, but ain&#x27;t no way it&#x27;s delightful to users. Most of the time people need a database instead. Eventually there&#x27;ll be an iPhone moment for this.<p>Meanwhile, the entire world economy:
      • airstrike10 hours ago
        I mean, your words not mine. You can&#x27;t just claim I&#x27;m making a point I didn&#x27;t.<p>Spreadsheets are fucking glorious, powerful, clever, amazing and delightful, in my view.
    • nzach11 hours ago
      &gt; Computer use is such a terrible idea. It&#x27;s slow, insecure, error prone, expensive.<p>And yet having an agent able yo use a computer on your behalf is really useful.<p>Recently I gave a Nix OS vm to my hermes agent and it has been a good experience. I don&#x27;t really care if destroy the machine I can just rollback to an earlier version, and for any meaningful data he creates for me I make sure he creates a repo, commit and pushes to my private Gitea instance.
      • airstrike11 hours ago
        &gt; And yet having an agent able yo use a computer on your behalf is really useful.<p>It is, but there&#x27;s no need for it to be viewing your screen, browsing websites and watching ads.<p>That stuff is for humans, not for LLMs.
        • nzach11 hours ago
          Sure, I don&#x27;t want an agent watching MY screen. That&#x27;s why I gave him his own environment, and pretty quickly he discovered that you can open chrome and make it render to a framebuffer, this way he is able to &#x27;view&#x27; the website. And apparently with this he is able to bypass a lot of &#x27;anti-bot&#x27; measures.
      • dbbk10 hours ago
        &gt; And yet having an agent able yo use a computer on your behalf is really useful.<p>I honestly cannot think of a single use case
        • nzach9 hours ago
          I think the main advantage is adaptability.<p>Imagine you have a pretty exotic task you need to complete that involves converting a video file from one format to another.<p>You can use ChatGPT or something similar and the best you will get is either a script you can run on you machine that does what you need or he may decide to render a new video.<p>If you have something like OpenwebUI you could configure a MCP that converts videos and allow the model to use this MCP to do your task. This should work, but is quite a lot of work for something you&#x27;ll ever do once.<p>But if the agent has it&#x27;s own environment he can decide to install ffmpg, execute the transformation and serve you the file you want.<p>In reality there is no new capabilities with this approach, but things get a lot more comfortable.
          • quantumleaper9 hours ago
            This doesn&#x27;t require computer use, just a bash tool (and possibly fetch to get ffmpeg documentation)
            • dbbk6 hours ago
              Yeah even Claude Cowork would do this, doesn&#x27;t need &quot;computer use&quot;
        • johnsmith18403 hours ago
          Literally everything you do every day.<p>It&#x27;s the end game of AI. Have systems trained on doing EVERYTHING you do on a computer all day. Trained by you while doing the job.
        • golem144 hours ago
          I give you one: Google news is pretty terrible right now almost all interesting new sources are paywalls and so I get recommended all kind of weird lifestyle publications that are really horrible. With the computer use API I can just tell. Tell Gemini to look at Google news pick the articles that look interesting. Look them up on archive.is, and just give me the plain text article and construct a summary - I think that would probably work pretty well.
    • dyauspitr10 hours ago
      We shouldn’t optimize for token use. We should build infrastructure to make tokens dirt cheap instead.
    • api11 hours ago
      It&#x27;s great for testing and QA automation for UIs. It&#x27;s also possibly good for the vision impaired.
      • orbital-decay10 hours ago
        UI QA only works well if your model plausibly matches the average user behavior and&#x2F;or real-world edge cases. These models are far from that, and they are much less random than you&#x27;d like them to be for fuzzing (mode collapse).
        • Wowfunhappy7 hours ago
          It doesn&#x27;t need to be <i>that</i> kind of QA. Even just a basic &quot;I want the AI to build the beginnings of a GUI app for me&quot; will work much better if the AI can see the output of its work and iterate on it. Similar if you want the AI to fix a GUI bug—much better if you can show it the the bug and tell it how to test to see when it&#x27;s gone.
          • airstrike7 hours ago
            the LLM does not require computer use to see the GUI and, again, that&#x27;s a pretty niche use and not what Computer Use is being marketed for
  • revolvingthrow11 hours ago
    People using google’s models: am I holding it wrong or are the guardrails really overtuned?<p>I had the dubious pleasure of testing gemini of late and I kept running into refusals. How do I transfer a sim number from one provider to another? No. What should I consider when making backups on ntfs less prone to data loss and more bitrot resistant? No. Evaluate this piece of code? No.<p>I’m not sure if it’s cold feet from the mythos situation or what, but it reminds me of the dark days where you couldn’t use ai for much of anything. But then I go to chatgpt 5.5 and it does mostly everything I want outside of the usual cybersecurity boogeyman that you run into now and then.
    • sva_10 hours ago
      Interesting. I have the Google AI Pro plan and use Gemini several times each day and I don&#x27;t remember the last time I got a refusal. I wonder what criteria go into that, like maybe how they rate your Google account?
    • Chu4eeno10 hours ago
      I&#x27;ve always found all versions of gemini to be (for a lack of a better word) lazy.<p>I guess it&#x27;s economic wrt. token use, but it often either refused for absurd safety reasons, or other weird stuff like responding that an LLM like itself wasn&#x27;t a suitable tool for the job, and very quickly gives up.<p>Claude is on the other end of the spectrum, which makes it more noticeable when switching between them.
    • dekhn8 hours ago
      If I type your first query into Gemini, it immediately spits out a long and plausible answer.<p>What exactly are you saying it&#x27;s refusing? Can you give a screenshot or example?
    • kordlessagain10 hours ago
      I love antigravity. I’ve had zero issues with it.
    • k8sToGo10 hours ago
      The context window size is also very small if you use Gemini in the app. It starts forget quite fast. In my opinion Gemini on app is useless additionally to the guardrails.
    • nout10 hours ago
      I just asked gemini the question with sim number and it gives me full step by step guide.
    • WarmWash10 hours ago
      Are you outside the US?
      • esperent9 hours ago
        I&#x27;m outside the US, use Gemini models quite a bit, and I&#x27;ve never run into any refusals of any kind. I&#x27;m using them for a fairly wide range of things, I&#x27;m sure at least as risqué as asking how to transfer a sim. As a matter of fact I actually asked it&#x27;s advice on how to transfer banking apps and auth apps from one phone about 3 weeks ago and got decent answers.
        • WarmWash9 hours ago
          It&#x27;s more dependent on the specific country they are in (and I don&#x27;t know the specifics). But Google is large enough to have lawyers for every country, and Google is in a never ending whirlwind of national lawsuits&#x2F;fines, so you end up at the mercy of whatever the lawyers for your country think will not piss off regulators. The EU (and individual states) have pretty heavy AI regulations, and Google even just got fined for an AI overview being incorrect.<p>It also could just be which way the wind was blowing for OP, the models are stochastic to some degree, but there is no shortage of complaints from (mostly euro) users getting stonewalled.
          • joe_mamba9 hours ago
            I&#x27;ve seen similar refusals on X from Claude from users in Germany when the LLM assumed the users are asking for something forbidden about certain topics.<p>Ultimately I think that in 10 years time, this is what&#x27;s gonna kill paid consumer LLMs, and boost the usage of Chinese LLMs self hosted at home an your own hardware that people will torrent via VPNs, as they will also be banned because of &quot;disinformation and misinformation&quot;.<p>So the end winners will be the hardware companies that will sell AI chips to consumers after the datacenter bubble pops. Unless of course the EU will ban the sale of AI chips that don&#x27;t have some limitations baked in on which models you&#x27;re allowed to run (the state approved ones). Interesting times ahead. I think in 10-20 years time we&#x27;ll look back at present day LLMs the way we look back at the open internet of the 90&#x27;s-00&#x27;s.
    • TacticalCoder8 hours ago
      &gt; People using google’s models: am I holding it wrong or are the guardrails really overtuned?<p>They are quite insane. I was asking it to list candidates metal parts I could buy at a hardware store to add weight to 3D prints: stuff like angle brackets etc.<p>I wanted to know, bang for bucks, and ease of insertion (at print time) &#x2F; modelling in a 3D model.<p>Complete refusal as if I was a terrorist building a bomb.<p>Then there are the weird refusals that then are OK after all if you insist by asking it what&#x27;s wrong about it:<p><i>&quot;How should I cook eggs?&quot;</i><p><i>&quot;I&#x27;m sorry but I can&#x27;t help you with that&quot;</i> (it formulates it differently but that&#x27;s the idea)<p><i>&quot;What, I&#x27;m just hungry, is explaining me how to cook eggs really against your rules?&quot;</i><p>And then it answers <i>&quot;No of course not, here&#x27;s how to do it:...&quot;</i><p>Really strange stuff.
      • unbrice1 hour ago
        This is indeed strange. Do you get the same results if you disable personalisation using the top right button (&quot;temporary chat&quot;)? Can you please share a trace?
  • arjunchint7 hours ago
    Pretty doubtful about computer use&#x2F;screenshotting based approaches.<p>With Retriever AI, we construct custom accessibility trees to represent web pages and just switched over to using DeepSeek v4 Flash and its nearing 100x cost decrease.<p>We also had great success just reverse engineering the underlying APIs of websites and then writing code to hit them. This approach of using screenshots to take actions on a webpage to trigger the underlying network calls the website is making seems too naive.
    • 0xbadcafebee1 hour ago
      What happens when you need to control something that isn&#x27;t a web page?
      • arjunchint33 minutes ago
        Honestly with Fable I think anyone is going to be able to reverse engineer a desktop app and get the coding agent to automate it.<p>The Codex computer use functionality actually uses OS level accessibility trees, so thats also possible without screenshots.
    • infecto7 hours ago
      Reverse engineering APIs is just a recipe to get blocked sooner. Good luck!
      • arjunchint32 minutes ago
        its been working fine on LinkedIn&#x2F;IG, the trick is to make the requests from the main world of the website itself.
  • fridder11 hours ago
    I wonder if it will be better at building TUI&#x27;s. It has been absolutely abysmal at interacting with them and building them
    • chatmasta10 hours ago
      Claude can build UI but it sucks at testing it and iterating on it. Fable showed some improvements in this regard but alas.
      • Chu4eeno10 hours ago
        It seems to do it just fine when in desktop applications using Qt, fwiw., it leverages all the standard Qt GUI testing stuff (and if you have the money you can just integrate Squish which has LLM support now).
    • IncreasePosts7 hours ago
      That&#x27;s my experience too. I&#x27;ve had increased luck encouraging the LLM to structure the code in &quot;functional core, imperative shell&quot; style, and telling it stupid things like &quot;make sure you can test the code you&#x27;re writing&quot;.
  • beastman8212 hours ago
    No UI like their competitors Claude CoWork or Codex. This is vaporware
  • ai_fry_ur_brain6 hours ago
    I have basically unlimited access to every SOTA model and I opt for gemini flash 3.5 9&#x2F;10 times I use an LLM.<p>Llms are mostly useless but when I do use them its with gemini. If they&#x27;re going to waste my time 95% of the time, I might as well get it over with fast.
  • knollimar11 hours ago
    Where is 3.5 pro?
    • squidbeak10 hours ago
      Google said June, and all its model updates seem to be on Tuesdays, Wednesdays or Thursdays. So unless the release is slipping, either tomorrow or Tuesday.
      • WarmWash9 hours ago
        Rumor is now July, although preliminary A&#x2F;B tests people are getting show promise with whatever they have right now.
  • vulcan19642 hours ago
    Hot take: &quot;computer use&quot; is a dumb term for this concept; almost as if it was named by AI models...<p>Case in point: &quot;We are already seeing customers drive value with computer use.&quot;<p>Yes... since the early 1980s, most companies and businesses have driven their value with computer use... smdh.<p>I&#x27;m no AI dev, but dare I suggest a better possible name for this: &quot;agentic computer software interaction&quot; which can be shortened to agent_actor<p>I swear, the direction we are headed with Big Tech leading the way will surely spell long term disaster
  • villgax12 hours ago
    Will it skip Ads lol
    • humblyCrazy11 hours ago
      I looked at their demo and it does not
      • chatmasta10 hours ago
        Better question might be will it skip recaptcha?
        • SXX7 hours ago
          Only if its needed to save your grandma and a cat. It will hack few servers along the way.
  • zuzululu11 hours ago
    performance is quite impressive given that its 3x cheaper than 5.5
    • SoMomentary8 hours ago
      The speed was impressive when I tested it but unfortunately the accuracy left a lot to be desired. Be interesting to do the math on some of my normal workflows to see where the break even is between them, assuming the tasks you have can tolerate a couple of failures.
      • zuzululu6 hours ago
        we are talking about computer use here<p>gemini 3.5 flash isn&#x27;t meant to compete head to head with frontier models on tough problems
  • cws_ai_buddy9 hours ago
    [flagged]
  • paganartifact8 hours ago
    Who are these people talking about &quot;agentic&quot; stuff, and furthermore who are the people who can&#x27;t stfu about &quot;MCP&quot;??<p>Literally 90%+ comments on HN personify their alleged use of AI in a way that is in NO WAY related to how the tool is really used.<p>Using LLMs for building software has NOTHING to do with those concepts. Nobody has &quot;agents&quot;. That literally only exists in marketing. It&#x27;s not even how it works.<p>AT ALL<p>Useless forum