Earlier quoted context omitted.
Bullshit.
Not bullshit
GPT-6 Astra in code review: Gains, privacy, and cost
71–77 of 77 posts
Re: GPT-6 Astra in code review: Gains, privacy, and cost
#72I ran a few toy benches comparing Astra with Sol and found Astra ~30% faster and at similar cost to Sol for the same outcome https://x.com/__tosh/status/2096201900555170032 the token efficiency helps Astra even though sticker price is 2.5x that of Sol
Re: GPT-6 Astra in code review: Gains, privacy, and cost
#73Earlier quoted context omitted.
I’m not saying that it’s not useful, I’m saying that it’s not useful in a “human in the loop” situation. This type of AI-to-AI review should be done agent-to-agent, not through Github PRs with tools like Devin. In a manual review, I then expect all “machinery” to already be properly reviewed, and can focus on design / architecture. I would like an AI assisted review tool to make that part easier, not do the actual re…
I’m not convinced by the automatic agent-to-agent thing. I find that, if I manually ask a standard harness “Review a..b, individually and for combined effect”, I get some mix of catching genuine errors (some quite deep), incorrect flags where the correct course of action is to ignore them or modify the commit messages, and comments where the correct course of action is to think deeply. If I were to automate the back…
Re: GPT-6 Astra in code review: Gains, privacy, and cost
#74Earlier quoted context omitted.
Well, (AI-generated) test are about half of these PRs' code. So that's still ~8k lines to review... What techno/service did you base your framework on? How long did it take to set it up? How many are you?
That's the point, we don't review the test code either. Our platform gives us a UI for inspecting not the test code but what actually happened during the test. Like a browser replay, the results of a database query, assertions against those, etc. This is much more information dense than something like the tests and is a representation of what actually happened during the tests, rather than what the test itself did (w…
Re: GPT-6 Astra in code review: Gains, privacy, and cost
#75Earlier quoted context omitted.
That's the point, we don't review the test code either. Our platform gives us a UI for inspecting not the test code but what actually happened during the test. Like a browser replay, the results of a database query, assertions against those, etc. This is much more information dense than something like the tests and is a representation of what actually happened during the tests, rather than what the test itself did (w…
I don't know if that's what you are working on specifically (wink), but there is a product opportunity here.
Re: GPT-6 Astra in code review: Gains, privacy, and cost
#76Re: GPT-6 Astra in code review: Gains, privacy, and cost
#77Earlier quoted context omitted.
What really important things are human reviews catching in your org? I just feel more and more like the effort invested in manual reviews is not worth it
1. Whether the thing should be done in the first place 2. If it's the correct solution on a high level 3. Whether it conflicts with or duplicates other parts of the system 4. Whether the comments are actually useful or restating the LLM chat Also many others but these are the most common IME