HN user

deevelton

14 karma

github.com/dvelton

Posts4
Comments17
View on HN

This was just a fun thought experiment.

Feed it two inputs (e.g. chance of rain and wind speed; this is one of the examples in the demo) and it learns to answer a yes/no question like "bring an umbrella?" It's a one-neuron binary classifier with three learned parameters: two weights and a bias. Those three numbers map directly to Red, Green, and Blue. Save the model: you get a 1x1 PNG. Load the pixel: you get your classifier back. The color is the model.

This was just a small experiment, but as a teammate and I watched our respective agents (each loaded with its owner’s context/preferences/etc) negotiate directly with one another to schedule and agree on lunch plans on our behalf, there was definitely a feeling that what we were watching was the tip of an iceberg.

Parents in my son's hockey league used to track shots on goal with pen and paper during games, to help coaches both during and after the games. It was tedious and the data was hard to use afterward.

Not a developer, so I used AI to build a free web app to replace it. You tap where on the rink each shot came from, tag whether it was a goal or save, and at the end of the game you get a full report with shot maps, heatmaps, and per-player breakdowns. Works on your phone, no account needed.

It's not fancy tech, but it's pretty rewarding to see it actually in use by the team and now even spreading to other teams in the league :)

This hits home for me. Lawyer, not developer here. Implementation was never a hard part for me, it was an impossible part. Now that the time/cost needed to experiment with prototypes has dropped to near zero I've been been spending a lot of time doing exactly what you describe (steering, brainstorming). I find it fun but I do it mainly as a bunch of personal side projects. Can understand how it might feel different for users when the stakes are much higher (like when it's part of the day-to-day in a real job).

LLM-as-a-Courtroom 6 months ago

Experimented very briefly with a mediation (as opposed to a litigation) framework but it was pre-LLM and it was just a coding/learning experience: https://github.com/dvelton/hotseat-mediator

Cool write-up of your experiment, thanks for sharing. Would be interesting to see how results from one framework (mediation, whose goal is "resolution") differ from the other (litigation, whose goal is, basically, "truth/justice").