• AI Roadmap

    Pinned Locked
    1
    10 Votes
    1 Posts
    45 Views
    No one has replied
  • HISE Transformation to the new age

    23
    2 Votes
    23 Posts
    122 Views
    David HealeyD

    @Christoph-Hart said in HISE Transformation to the new age:

    template code that a human will never understand

    Is there a version that a human would be able to understand or is this the sort of thing that even if a human wrote it would still be gibberish?

    How is it for adding features or fixing bugs in the HISE codebase? This is where I would be most interested.

  • Agentic coding workflows

    12
    0 Votes
    12 Posts
    98 Views
    Christoph HartC

    @HISEnberg sure I'm holding back about 50-60 commits with that stuff, but as soon as the MVP is solid I'll let you all play with this. The current feature I'm toying around with is the ability to create a list of semantic events that will create a automated mouse interaction:

    { { type: "click", id: "Button1", delay: 0 } { type: "drag", id: "Knob1", delta: [50, 60] , delay: 500 }, { type: "screenshot", crop: "Knob1" } }

    AI agents sends this list to HISE, HISE opens a new window with an interface, simulates the mouse interaction that clicks on button1 ( had to hack the low-level mouse handling in JUCE to simulate a real input device for that), then drags knob1 and makes a screenshot. Evaluates that the expected screenshot uses the code path of the LAF it has send to HISE previously, then realizes that the path bounds need to be scaled differently and retries it until the screenshot matches its expected outcome. If it just needs to know whether the knob drag updated the reverb parameter, it fetches the module list from HISE and looks at the SimpleReverb's attribute directly - this won't waste context window space for the image analysis.

    It's that feedback loop that allows it to autonomously iterate to the "correct" solution (aka ralph loop), so even if it only gets it 90% of the time right, it will approximate to 99.9% after three rounds of this.

13

Online

2.2k

Users

13.4k

Topics

116.5k

Posts