25 pointsby anougaret3 days ago8 comments
  • malmz2 days ago
    Did i read that right? What part of a debugger would require the use of an AI language model?
    • anougaret2 days ago
      Hey, yeah I know sounds weird. We're experimenting with small custom models <1B params to figure out which part of your code you'd probably not want to instrumentalize the normal way (e.g. logging absolutely everything) and instead in a more tailored way (and what that tailored way is), for instance a python for loop with 10k iterations.
  • bluelightning2k2 days ago
    This is very, very, very cool.

    I implemented something like this once but had to use the typescript compiler to identify all the variable names and also use the typescript compiler to find valid moments they could change and insert code to capture their value at that time. Guessing you didn't go to that length in multiple languages. Sou how did you manage this? I'd be very interested in a technical write up and I suspect hn would too

    • anougaret2 days ago
      Will def. do a technical write up! Wanted to do a more target approach like you around valid mutations only but I think users want to observe variables not only where they are written but also where they are read, so a low hanging fruit was to wrap all the expressions I could (hundreds of lines of AST queries and tricks per language) with functions/lambdas and some sort of "logging". Of course this is only 4 weeks in the making so there is so much more to do. And as you guessed you probably can't do the targeted approach well in Python and others.
  • AntDes3 days ago
    Let me know once you've tested with PyTorch :)
  • clementclp3 days ago
    Promising one! Looking for Ruby integration
    • anougaret3 days ago
      Thank you! I feel like with Python we cracked the code rewriting issues very much to a point where Ruby could be supported fast
  • isalineDev3 days ago
    feels like this is growing trend : https://news.ycombinator.com/item?id=43280615
    • anougaret3 days ago
      very much haha, it seems like a lot of people are realizing the upcoming potential with coding agents using them
  • bluewin3 days ago
    Looks rad! Can't wait to integrate this into my workflow
  • demod63 days ago
    Consider shipping the components as an MCP.
    • anougaret3 days ago
      you caught me at the moment of coding this!
  • ThomasCloarec3 days ago
    looks cool!
    • anougaret3 days ago
      Thanks :) Let me know if you use it and get into any trouble