Cerebras Code

(cerebras.ai)

342 points | by d3vr 12 hours ago

30 comments

  • Flux159 10 hours ago
    Tried this out with Cline using my own API key (Cerebras is also available as a provider for Qwen3 Coder via via openrouter here: https://openrouter.ai/qwen/qwen3-coder) and realized that without caching, this becomes very expensive very quickly. Specifically, after each new tool call, you're sending the entire previous message history as input tokens - which are priced at $2/1M via the API just like output tokens.

    The quality is also not quite what Claude Code gave me, but the speed is definitely way faster. If Cerebras supported caching & reduced token pricing for using the cache I think I would run this more, but right now it's too expensive per agent run.

    • sysmax 8 hours ago
      Adding entire files into the context window and letting the AI sift through it is a very wasteful approach.

      It was adopted because trying to generate diffs with AI opens a whole new can of worms, but there's a very efficient approach in between: slice the files on the symbol level.

      So if the AI only needs the declaration of foo() and the definition of bar(), the entire file can be collapsed like this:

        class MyClass {
          void foo();
          
          void bar() {
              //code
          }
        }
      
      Any AI-suggested changes are then easy to merge back (renamings are the only notable exception), so it works really fast.

      I am currently working on an editor that combines this approach with the ability to step back-and-forth between the edits, and it works really well. I absolutely love the Cerebras platform (they have a free tier directly and pay-as-you-go offering via OpenRouter). It can get very annoying refactorings done in one or two seconds based on single-sentence prompts, and it usually costs about half a cent per refactoring in tokens. Also great for things like applying known algorithms to spread out data structures, where including all files would kill the context window, but pulling individual types works just fine with a fraction of tokens.

      If you don't mind the shameless plug, there's a more explanation how it works here: https://sysprogs.com/CodeVROOM/documentation/concepts/symbol...

      • postalcoder 7 hours ago
        this works if your code is exceptionally well composed. anything less can lead to looney tunes levels of goofiness in behavior, especially if there’s as little as one or two lines of crucial context elsewhere in the file.

        This approach saves tokens theoretically, but i find it can lead to wastefulness as it tries to figure out why things aren’t working when loading the full file would have solved the problem in a single step.

        • sysmax 7 hours ago
          It greatly depends on the type of work you are trying to delegate to the AI. If you ask it to add one entire feature at a time, file level could work better. But the time and costs go up very fast, and it's harder to review.

          What works for me (adding features to huge interconnected projects), is think what classes, algorithms and interfaces I want to add, and then give very brief prompts like "split class into abstract base + child like this" and "add another child supporting x,y and z".

          So, I still make all the key decisions myself, but I get to skip typing the most annoying and repetitive parts. Also, the code don't look much different from what I could have written by hand, just gets done about 5x faster.

        • DrBenCarson 7 hours ago
          Yep and it collapses in the enterprise. The code you’re referencing might well be from some niche vendor’s bloated library with multiple incoherent abstractions, etc. Context is necessarily big
          • sysmax 6 hours ago
            Ironically, that's how I got the whole idea of symbol-level edits. I was working on project like that, and realized that a lot of work is actually fairly small edits. But to do one right, you need to you need to look through a bunch of classes, abstraction layers, and similar implementations, and then keep in your head how to get an instance of X from a pointer to Y, etc. Very annoying repetitive work.

            I tried copy-pasting all the relevant parts into ChatGPT and gave it instructions like "add support for X to Y, similar to Z", and it got it pretty well each time. The bottleneck was really pasting things into the context window, and merging the changes back. So, I made a GUI that automated it - showed links on top of functions/classes to quickly attach them into the context window, either as just declarations, or as editable chunks.

            That worked faster, but navigating to definitions and manually clicking on top of them still looked like an unnecessary step. But if you asked the model "hey, don't follow these instructions yet, just tell me which symbols you need to complete them", it would give reasonable machine-readable results. And then it's easy to look them up on the symbol level, and do the actual edit with them.

            It doesn't do magic, but takes most of the effort out of getting the first draft of the edit, than you can then verify, tweak, and step through in a debugger.

            • hooo 5 hours ago
              Totally agree with your view on the symbolic context injection. Is this how things are done with code/dev AI right now? Like if you consider the state of the art.
              • seunosewa 1 hour ago
                They search for the token of interest, e.g. grep -n then they read that line and the next 50 lines or so. They continue until they get to the end.
    • seunosewa 1 hour ago
      The Cerebras.ai plan offers a flat fee of $50 or $200.

      The API price is not a reason to reject the subscription price.

    • BenGosub 3 hours ago
      If they say it costs $50 per month, why do you need to make additional payments?
      • davidweatherall 2 hours ago
        $50 per month is their SaaS solution that let's you make 1000 requests per day. The openrouter cost is the raw API cost if you try to use qwen3-coder via the pay as you go model when using Cline
    • Havoc 9 hours ago
      This seems to be rate limited by message not token so the lack of cache may matter less
      • andhuman 4 hours ago
        No it’s by token. The FAQ says this:

        > Actual number of messages per day depends on token usage per request. Estimates based on average requests of ~8k tokens each for a median user.

        https://cerebras-inference.help.usepylon.com/articles/346886...

      • NitpickLawyer 5 hours ago
        Yes, but the new "thing" now is "agentic" where the driver is "tool use". So at every point where the LLM decides to make a tool use, there is a new request that gets sent. So a simple task where the model needs to edit one function down the tree, there might be 10 calls - 1st with the task, 2-5 for "read_file", then the model starts writing code, 6-7 trying to run the code, 8 fixing something, and so on...
        • itsafarqueue 4 hours ago
          Yup. If you’ve ever watched a 60+ minute agent loop spawning sub agents, your “one message” prompt leaves you several hundred messages in the hole.
      • Flux159 9 hours ago
        The lack of caching causes the price to increase for each message or tool call in a chat because you need to send the entire history back after every tool call. Because there isn’t any discount for cached tokens you’re looking at very expensive chat threads.
  • thanhhaimai 12 hours ago
    > running at speeds of up to 2,000 tokens per second, with a 131k-token context window, no proprietary IDE lock-in, and no weekly limits!

    I was excited, then I read this:

    > Send up to 1,000 messages per day—enough for 3–4 hours of uninterrupted vibe coding.

    I don't mind paying for services I use. But it's hard to take this seriously when the first paragraph claim is contradicting the fine prints.

    • superasn 10 hours ago
      Pretty sure this is there to prevent this[1] from happening to them

      [1] https://www.viberank.app/

      • bravesoul2 9 hours ago
        That's a CO2 emissions leader board!
        • LudwigNagasena 5 hours ago
          That’s almost no CO2 emissions at all. Here is a CO2 emissions leaderboard (need to sort by the correct column): https://celebrityprivatejettracker.com/leaderboard/
          • wraptile 2 hours ago
            The number one has 32k which is equivellent of 64,000 commercial transantlantic flight trips (per person). For reference, 2024 had a record flights summer of 140k.
      • echelon 7 hours ago
        Oh my god. That's insane.

        The anti-AI people would be pulling their pitchforks out against these people.

        Would there be any way of compiling this without people's consent? Looking at GitHub public repos, etc.?

        I imagine a future where we're all automatically profiled like this. Kind of like perverse employee tracking software.

        • stingraycharles 12 minutes ago
          The pro-AI people are as well, as these people are all on the Claude Max plan, and they’re just burning through resources for internet lols, while ruining the fun for the rest of us. It’s the tragedy of the commons at work.
    • attentive 9 hours ago
      To put this into perspective, github copilot Business license is 300 "premium" requests a MONTH.
      • Paradigma11 1 hour ago
        But one premium request includes all subrequests from tool use and/or internal follow up requests.
    • sneilan1 11 hours ago
      1,000 messages per day should be plenty as a daily development driver. I use claude code sonnet 4 exclusively and I do not send more than 1,000 messages per day. However, that is my current understanding. I am certainly not pressing enter 1,000 times! Maybe there are more messages being sent under the hood that I do not realize?
      • thanhhaimai 11 hours ago
        The issue is not about whether the limit is too high or too low. What turned me back was that they claimed "no weekly limits" as a selling feature, without mentioning that they change it to a "daily limits".

        I understand it's a sale tactics. But it seems not forthcoming, and it's hard for me to trust the rest of the claims.

        • twothreeone 11 hours ago
          I don't see what's hard to understand about this.. other providers have weekly limits and daily limits. If you max out your daily every day you might still hit your weekly after 3-4 days of usage, meaning you cannot send more for the rest of the week. This is saying that no such weekly limit exists on top of the daily. E.g. see https://techcrunch.com/2025/07/28/anthropic-unveils-new-rate...
          • brandall10 11 hours ago
            Claude Code does not have a daily limit, it has 5 hour windows that reset. On the $100 plan it's pretty hard to hit a window limit w/ Sonnet unless you're using multiple/subagents. The $200 is better suited to those who do that or want to use a significant amount of Opus.

            Also the weekly limit selling point is silly - it almost certainly only impacts those who are abusing, ie. running 24/7.

            • b2m9 1 hour ago
              At this point I'm afraid to ask, but I will do I anyways:

              How do Claude's rate limits actually work?

              I'm not a Pro/Max5/Max20 subscriber, only light API usage for Anthropic - so it's likely that I don't really understand the limits there.

              For example, community reports that Anthropic's message limit for Max 5 translates to roughly 88k token per 5-hour window (there's variance, but it's somewhere in this 80-120k ballpark based on system load; also assuming Sonnet, not Opus). A normal user probably won't consume more than 250k token per day with this subscription. That's like 5M token for a month of 20 active days - which doesn't justify the 100 USD subscription cost. This also doesn't square with Anthropic's statement that users can consume 10000+ USD of usage on the Max 20 tier.

              I'm clearly misunderstanding Claude's rate limits here. Can someone enlighten me? Is the 5-hour window somehow per task/instance and not per account?

          • brendoelfrendo 10 hours ago
            It's not hard to understand, but I think there's a compelling argument to be made that the "daily AND weekly" limits is surely user hostile and differing limits across different pricing tiers can make it harder to tell at a glance what you actually need. It's not that Cerebrus has a feature worth advertising, it's that everyone else has introduced an anti-feature that has become the norm.
            • twothreeone 10 hours ago
              I don't know, I thought it was useful info given the context of the market. When I buy any service in general (e.g. a phone line) I'd like to know the highlights that differentiate that particular provider from others. And it didn't seem to me like this was front and center to their marketing, it sure seems like their output speed is the killer feature. This was just another item mentioned at the end of a sentence which also says a number of other things and just provides additional clarity about the endpoint.. ¯\_ (ツ)_/¯
      • itsafarqueue 4 hours ago
        Your “one enter” press might generate dozens or even hundreds of messages in an agent. Every file read, re-read, read a bit more, edit, whoops re-edit, ls, grep, etc etc counts as a message.
      • SamDc73 11 hours ago
        Still not sure if it's 1000 messages or calls though, if messages that's good.
    • Palmik 1 hour ago
      Yes, to differentiate from Claude Code which has 5-hour-window limits as well as weekly limits on top
    • kristjansson 9 hours ago
      It’s a true statement - no weekly limits, just a daily limit. Easier to work with when you can only get locked out of your tool for 23h59m
      • brandall10 9 hours ago
        The CC weekly limits are in place to thwart abuse. This bit of marketing isn't particular useful as that limit primarily impacts those who are running it at all hours.

        OTOH, 5 hour limits are far superior to daily limits when both can be realistically hit.

      • handfuloflight 3 hours ago
        You're going to send 1,000 messages in 1 minute?
      • bongodongobob 7 hours ago
        The weekly limit is the daily limit x 7.
      • bluelightning2k 9 hours ago
        What a productive second you must have had
    • amirhirsch 12 hours ago
      the distinction is from weekly limits of claude code.
      • sneilan1 11 hours ago
        Claude code weekly limits are hard to distinguish. It's not easy to understand their usage limits. I've found when I run into too much opus usage, I switch to sonnet but I've never ran into a usage limit with sonnet 4 yet.
  • crawshaw 11 hours ago
    If you would like to try this in a coding agent (we find the qwen3-coder model works really well in agents!), we have been experimenting with Cerebras Code in Sketch. We just pushed support, so you can run it with the latest version, 0.0.33:

      brew install boldsoftware/tap/sketch
      CEREBRAS_API_KEY=...
      sketch --model=qwen3-coder-cerebras -skaband-addr=
    
    Our experience is it seems overloaded right now, to the point where we have better results with our usual hosted version:

      sketch --model=qwen
  • unraveller 7 hours ago
    Some users who signed up for pro ($50 p.m.) are reporting further limitations than those advertised.

    >While they advertise a 1,000-request limit, the actual daily constraint is a 7.5 million-token limit. [1]

    Assumes an average of 7.5k/request whereas in their marketing videos they show API requests ballooning by ~24k per request. Still lower than the API price.

    [1] https://old.reddit.com/r/LocalLLaMA/comments/1mfeazc/cerebra...

    • itsafarqueue 4 hours ago
      Bait and switched their FAQ after the fact too. Come on Cerebras, it’s only VC money you’re burning here in the first place, let’s see some commitment to winning market share. :money: :fire:
  • alfalfasprout 12 hours ago
    2k tokens/second is insane. While I'm very much against vibe coding, such performance essentially means you can get near-github copilot level speed with drastically better quality.

    For in-editor use that's game changing.

    • itsafarqueue 4 hours ago
      At full pace that means 62 mins until you hit the daily cap.
      • kvemkon 2 hours ago
        Reminds me of high write speed on SSD (1.5 GB/s continuously to TLC) means 1 TB SSD warranty expires instead of 5 years just in less than 5 days (600 TB written).
  • exclipy 4 hours ago
    Windsurf also has Cerebras/Qwen3-Coder. 1000 user messages per month for $15

    https://x.com/windsurf/status/1951340259192742063

  • namanyayg 12 hours ago
    I was waiting for more subscription base services to pop up to compete with the influence provider on a commodities level.

    I think a lot more companies will follow suit and the competition will make pricing much better for the end user.

    congrats on the launch Cerebras team!

  • ktsakas 12 hours ago
    Does it work with claude-code-router? I was getting API errors this week trying to use qwen3 Cerebras through OpenRouter with Claude code router.
    • d4rkp4ttern 10 hours ago
      I really wish Qwen3 folks put up an Anthropic-compatible API like the Kimi and GLM/Zai folks cleverly did — this makes their models trivially usable in Claude Code, via this dead-simple setup:

      https://github.com/pchalasani/claude-code-tools?tab=readme-o...

    • amirhirsch 11 hours ago
      API Error: 422 {"error":{"message":"Error from provider: {\"message\":\"body.messages.0.system.content: Input should be a valid string\",\"type\":\"invalid_request_error\",\"param\":\"validation_error\",\"code\":\"wrong_api_format\"}
  • another_twist 2 hours ago
    How does context buildup work for the code generating machines generally ? Do the programs just use human notes + current code directly ? Are there some specific ranking steps that need to be done ?
  • lvl155 11 hours ago
    Their hardware is incredible. Why aren’t more investors lining up for this in this environment?
    • no_flaks_given 3 hours ago
      This model is super quantized and the quality isn't great, but that's necessary because just like everyone else except for Nvidia and AMD

      They shat the bed. They went for super crazy fast compute and not much memory, assuming that models would plateu at a fee billion parameters.

      Last year 70b parameters was considered huge, and a good place to standardize around.

      Today we have 1t parameter models and we know it still scales linearly with parameters.

      So next year we might have 10T parameter LLMs and these guys will still be playing catch up.

      All that matters for inference right now is how many HBM chips you can stack and that's it

    • dmitrygr 10 hours ago
      Contradictions do not exist. Whenever you think that you are facing a contradiction, check your premises. You will find that one of them is wrong.
      • thfuran 8 hours ago
        Neither do perfectly efficient, perfectly rational markets.
        • sejje 4 hours ago
          A perfectly efficient market would be a bad premise, sure.
      • orbifold 8 hours ago
        In this case the hardware is a nightmare to program.
      • arisAlexis 3 hours ago
        Or just bad marketing vs the Goliath (Nvidia)
  • sneilan1 12 hours ago
    I'm so excited to see a real competitor to Claude Code! Gemini CLI, while decent, does not have a $200/month pricing model and they charge per API access - Codex is the same. I'm trying to get into the https://cloud.cerebras.ai/ to try the $50/month plan but I can't even get in.
    • bangaladore 11 hours ago
      Unless I'm misunderstanding something. Cerebras Code is not equivalent to Claude Code or Gemini CLI. It's a strange name for a subscription to access an API endpoint.

      You take your Cerebras Code endpoint and configure XYZ CLI tool or IDE plugin to point at it.

      • sneilan1 11 hours ago
        Oh so this is not an integrated command line tool like Claude code? I assumed it was something where Cerebras released a decent prompt and command line agent setup. A lot of the value of Claude Code is how polished it is and how much work went into the prompt design.
        • unshavedyak 11 hours ago
          There is i believe a forked Gemini Code which will work like Claude Code, or so it looks like on Youtube.
          • d4rkp4ttern 10 hours ago
            Yes it’s called OpenCode and today I was surprised to learn it works with Claude Pro/Max subscriptions:

            https://opencode.ai/docs/

            • dcre 8 hours ago
              OpenCode is not a fork of the Gemini CLI. It is its own thing.
    • wordofx 9 hours ago
      This doesn’t feel like a competitor. Amp does tho.
      • flashblaze 4 hours ago
        I don't hear about Amp often. Have you tried it? How does it compare to Claude Code?
        • wordofx 3 hours ago
          It’s really good. Was discussing it with a friend recently who said he thinks it works out cheaper because it takes less loops to get things right. I’ve been having better success with it so would recommend it over Claude Code for now.
  • segmondy 6 hours ago
    FYI, you are probably going to use up your tokens because there's a total limit of tokens per day, so in about 300 requests it's feasible to use it all up. See https://www.reddit.com/r/LocalLLaMA/comments/1mfeazc/cerebra...
  • clbrmbr 11 hours ago
    At $200/month the comparable should be Opus 4 not Sonnet 4.
    • rowanG077 11 hours ago
      Not really. With Opus 4 you will burn into the thousand a month with serious usage. I tested it yesterday and 5 hours of use was 60$. If I extrapolate that you will easily hit 1K+.
      • lordofgibbons 10 hours ago
        Are you comparing using opus via API based usage vs opus via the $200/mo plan?
        • rowanG077 10 hours ago
          I didn't know anthropic offered a fixed price version.
  • sophia01 12 hours ago
    My understanding is that the coding agents people use can be modified to plug into any LLM provider's API?

    The difference here seems to be that Cerebras does not appear to have Qwen3-Coder through their API! So now there is a crazy fast (and apparently good too?) model that they only provide if you pay the crazy monthly sub?

    • social_quotient 12 hours ago
      Exactly! You can use tools like https://github.com/musistudio/claude-code-router which let you use other LLMs.

      The way I would use this $50 Cerebras offering is as a delegate for some high token count items like documentation, lint fixing, and other operations as a way not only to speed up the workflow but to release some back pressure on Anthropic/claude so you don’t hit your limits as quickly… especially with the new weekly throttle coming. This $50 dollar jump seems very reasonable, now for the 1k completions a day, id really want to see and get a feel for how chatty it is.

      I suppose thats how it starts but id the model is competent and fast, the speed alone might force you a bit to delegate more to it. (Maybe sub agent tasks)

    • pxc 12 hours ago
      You can still get it pay-as-you-go on OpenRouter, afaict, and the billing section of the Cerebras Cloud account I just created has a section for Qwen3-Coder-480B as well.
      • sophia01 11 hours ago
        Yeah just checked apparently it is available as a preview (not on main models/pricing page).
    • baq 12 hours ago
      define 'crazy'.

      it's two kilotokens per second. that's fast.

      • bangaladore 11 hours ago
        It's more than 10x faster than the fastest alternative. And roughly 50x the average alternative.

        Certainly, somewhere between fast and crazy.

      • amelius 11 hours ago
        It generates code faster than I can inspect it.

        In other words, it's needlessly fast.

        • pxc 8 hours ago
          You might be able to use the extra time to have it do things like run some formatters, linters, run the code in a VM before you inspect it, or modify it for compliance with a style guide that you've written, and continually revise it for up to 5 tries until the conditions are met, something like that.

          So maybe there's something useful to do with the extra speed. But it does seem more "useful" for vibe coding than for writing usable/good code.

      • ttoinou 12 hours ago
        I’d say super fast
  • attentive 8 hours ago
    Attn: Cerebras

    Any attempt to deal with "<think>" in the code gets it replaced with "<tool_call>".

    Both in inference.cerebras.ai chat and API.

    Same model on chat.qwen.ai doesn't do it.

  • deevus 8 hours ago
    I'm finding myself switching between subscriptions to ChatGPT, T3 Chat, DeepSeek, Claude Code etc. Their subscription models aren't compatible with making it easy to take your data with you. I wish I could try this out and import all my data.
  • JackYoustra 12 hours ago
    I've been waiting on this for a LONG time. Integration with Cursor when Cerebras released their earlier models was patchy at best, even through openrouter. It's nice to finally see official support, although I'm a bit worried about long-term the time for bash mcp calls ending up dominating.

    Still, definitely the right direction!

    EDIT: doesn't seem like anything but a first-party api with a monthly plan.

  • unshavedyak 11 hours ago
    Super curious to see some comparisons to claude code. Especially Opus, since they're primarily comparing it to Sonnet in that graph.
  • atkailash 8 hours ago
    I use regular cerebras for plan stage in cline, so I’m very excited to try this out
  • lxe 10 hours ago
    Is this available as cline/roo-code integration? I think it might be on openrouter too.
  • dpkirchner 11 hours ago
    For those that have tried this, what kind of time-to-first-token latency are you seeing?
    • M4v3R 3 hours ago
      The high TTFT (around 5-6 seconds) is what kills the excitement for this for me. Sure, when it starts outputting its crazy fast so it’s good for generating single file prototypes, but as soon as you try to use it in Cline or any other agentic loop you’ll be waiting for API requests constantly and it’s a real bottleneck.
      • hollerith 3 hours ago
        TTFT == time to first token.

        (I would've just said, "the throughput is fantastic, but the latency is about 3 times higher than other offerings".)

    • anonym29 7 hours ago
      I had 9 seconds, earlier with Cline. That said, resulting output file I had requested generation of was over 122KB in 58.690 seconds, so I was approaching 2KB per second even factoring in high TTFT.
    • txyx303 11 hours ago
      feels very low compared to claude/gpt for me
  • scosman 10 hours ago
    Groq also probably has this in the works. Fun times.
  • cellis 9 hours ago
    What are the token prices?
    • anonym29 7 hours ago
      $2/Mtok in and out but no caching discounts
  • esafak 7 hours ago
    They should just host all the latest open source models FTW.
  • knicholes 11 hours ago
    It says it works with your favorite IDE-- How do you (the reader) plan to use this? I use Cursor, but I'm not sure if this replaces my need to pay for Cursor, or if I need to pay for Cursor AND this, and add in the LLM?

    Or is VS code pretty good at this point? Or is there something better? These are the only two ways I'd know how to actually consume this with any success.

    • alfalfasprout 11 hours ago
      any plugin that allows using an OpenAI compatible endpoint should work fine (eg; RooCode, Cline, etc. for VSCode).

      Personally, I use code-companion on neovim.

      Maybe not the best solution for vibe coders but for serious engineers using these tools for AI-assisted development, OpenAI API compatibility means total flexibility.

  • HardCodedBias 11 hours ago
    This has to be a monstrous money loser.

    If they can maintain this pricing level, and if Qwen3‑Coder is as good as people say then they will have an enormous hit on their hands. A massive money losing hit, but a hit.

    Very interesting!

    PS: Did they reduce the context window, it looks like it.

    • kristopolous 11 hours ago
      They are a hardware company. They have a custom chip they are running it on.

      The $200/month is their "poor person" product for people who can't shell out $500k on one of their rigs.

      https://www.cerebras.ai/system

      • HardCodedBias 11 hours ago
        I know. These things are unbelievable machines. The people at Cerebras are fearless wrt. taking on difficult hardware challenges.

        But this will certainly be a money loser. They have likely been waiting for an open source model that somewhat conforms to their hardware's limitations and which gives acceptable recommendations.

        It looks like they have found it with QWEN. We'll see!

    • UnPerson-Alpha2 4 hours ago
      Honest ? What are you thinking in terms of cost structure that makes you sure it is a money loser? Can you break down your assumptions.
  • supernova8 11 hours ago
    How is this even possible?
    • kristopolous 11 hours ago
    • unshavedyak 11 hours ago
      Incase i'm missing something, why wouldn't it be possible?

      Claude and Gemini have similar offerings for a similar/same price, i thought. Eg if Claude Code can do it for $200/m, why can't Cerebras?

      (honest question, trying to understand the challenge for Cerebras that you're pointing to)

      edit: Maybe it's the speed? 2k tokens/s sounds... fast, much faster than Claude. Is that what you're referring to?

      • UnPerson-Alpha2 5 hours ago
        He just wrote another way of making an exclamation, like "wow, incredible!".
    • meepmorp 10 hours ago
      They make frisbee-sized CPUs.
  • evrennetwork 4 hours ago
    [dead]
  • dude250711 12 hours ago
    [flagged]
    • dang 10 hours ago
      "Don't be snarky."

      "Don't be curmudgeonly."

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

    • andrewmutz 11 hours ago
      If you review every change as it goes, vibecoded results are often better than human-only and written much faster
      • jbc1 11 hours ago
        If you’re reviewing every change then what does “vibe coding” even mean?
        • steve_adams_86 10 hours ago
          If I'm not mistaken, vibe coding is supposed to be when you don't review at all, you just let'r rip. Reviewing the AI's code is just... Like if coding was riding a bike, and you got an electric bike. Kind of. It doesn't seem like vibes to me.
          • 0xfaded 10 hours ago
            This is me seeing co-workers PRs :(
        • chpatrick 11 hours ago
          It's not like human code doesn't need review.
          • jazzyjackson 11 hours ago
            the usage of vibe coding in my experience is towards those folks who run whatever the AI produced and if it does what they expect without throwing errors they ship it. If it throws errors they plug that back into the chatbot until the code stops throwing errors.

            The whole point of vibe coding is its working faster than you would on your own. If you're reviewing it carefully and understand how it works, you might as well have written it by hand.

            • tjr 10 hours ago
              Even if it appears to do what you want, but you don't actually read and understand the code, how do you know it doesn't do something else also? Maybe something you don't want?
              • jdiff 10 hours ago
                Irrelevant in vibe coding. If it walks like a duck and quacks like a duck, you don't go looking for extra heads, eyes, fingers, tongues, or tails. You ship it then throw repl.it under the bus when it blows up.
      • dxxvi 10 hours ago
        I agree 100%.
      • teaearlgraycold 10 hours ago
        I call this "half vibe coding" (needs a better term). For instances where you know how you'll solve a problem but don't want to type it all out it's great. I tend to comb through the output. Even the SOTA models will make pretty bad performance mistakes, poor maintenance decisions, etc. But it's super useful for getting over the hump of getting started on something.
    • reactordev 11 hours ago
      Nah, we’ll have a Legacy Coder agent to fix vibe coding agents so you’ll be supervising those. Yey…
    • fishsticks89 11 hours ago
      It will just be replaced by more vibe code in the future. Code is like toilet paper now.
  • hexagrams64 7 hours ago
    [dead]