Curious if anyone else had the same reaction as me This model is specifically trained on this task and significantly[1] underperforms opus. Opus costs about 6x more. Which seems... totally worth it based on the task at hand. [1]: based on the total spread of tested models
Agreed. The idea is nice and honorable. At the same time, if AI has been proving one thing, it's that quality usually reigns over control and trust (except for some sensitive sectors and applications). Of course it's less capital-intense, so makes sense for a comparably little EU startup to focus on that niche. Likely won't spin the top line needle much, though, for the reasons stated.
Leanstral: Open-source agent for trustworthy coding and formal proof engineering
51–60 of 234 posts
Re: Leanstral: Open-source agent for trustworthy coding and formal proof engineering
#52Curious if anyone else had the same reaction as me This model is specifically trained on this task and significantly[1] underperforms opus. Opus costs about 6x more. Which seems... totally worth it based on the task at hand. [1]: based on the total spread of tested models
Re: Leanstral: Open-source agent for trustworthy coding and formal proof engineering
#53I don’t know a single person using Mistral models.
Re: Leanstral: Open-source agent for trustworthy coding and formal proof engineering
#54Re: Leanstral: Open-source agent for trustworthy coding and formal proof engineering
#55I don’t know a single person using Mistral models.
I've also used Devstral Small to make a simple raytracer[5][6] (it was made using the "classic" chat by copy/pasting code, not any agentic approach and i did fix bits of it in the process) and a quick-and-dirty "games database" in Python+Flask+Sqlite for my own use (mainly a game backlog DB :-P).
I also use it to make various small snippets, have it generate some boilerplate stuff (e.g. i have an enum in C and want to write a function that prints names for each enum value or have it match a string i read from a json file with the appropriate enum value), "translate" between languages (i had it recently convert some matrix code that i had written in Pascal into C), etc.
[0] https://i.imgur.com/f4OrNI5.png
[1] https://i.imgur.com/Zac3P4t.png
[2] https://i.imgur.com/jPYYKCd.png
[3] https://i.imgur.com/WZGfCdq.png
[4] https://i.imgur.com/ytYkyQW.png
[5] https://i.imgur.com/FevOm0o.png (screenshot)
[6] https://app.filen.io/#/d/e05ae468-6741-453c-a18d-e83dcc3de92... (C code)
Re: Leanstral: Open-source agent for trustworthy coding and formal proof engineering
#56Re: Leanstral: Open-source agent for trustworthy coding and formal proof engineering
#57I don’t know a single person using Mistral models.
Re: Leanstral: Open-source agent for trustworthy coding and formal proof engineering
#58Re: Leanstral: Open-source agent for trustworthy coding and formal proof engineering
#59Re: Leanstral: Open-source agent for trustworthy coding and formal proof engineering
#60The real world success they report reminds me of Simon Willison’s Red Green TDD: https://simonwillison.net/guides/agentic-engineering-pattern... > Instead of taking a stab in the dark, Leanstral rolled up its sleeves. It successfully built test code to recreate the failing environment and diagnosed the underlying issue with definitional equality. The model correctly identified that because def creates a rigid definit…