This is incredibly!<p>I've been benchmarking several LLMs to identify a possible bug in a snippet of code given no context on what is expected from the code. Neither chatgpt, vacuna, open assistant or mpt where able to identify the bug. When I fed the same prompt into this app, the initial reply said there were no bugs, but the first branch immenditly questioned itself with the expected line of thought to identify the bug!<p>I might subscribe to chatgpt just to use this app, great work!<p>I'd love it if this got open sourced.<p>Here's the prompt if you want to test it out:<p>Can you find any bugs in the following snippet?<p>```ts<p>const queuePositions = [<p>1,<p>2,<p>3<p>];<p>const pairs: number[][] = [];<p>for (let i = 0; i < queuePositions.length; i += 2)<p>pairs.push(queuePositions.slice(i, i + 2));<p>```