Pau Sanchez
Programming, technology & business

Experimenting with GPT Luna

Two Hacker News comments

After reading a couple of comments on Hacker News, I started reflecting on the latest AI models and how everything has evolved over the last few months.

On the one hand, the latest GPT Luna models and the latest DeepSeek Flash update are very, very cheap. What catches my attention the most is that using max with these models seems to give them quite a bit of power.

So I looked at a few benchmarks and decided to run a small experiment.

Current benchmarks

In the Artificial Analysis Intelligence Index, GPT Luna Max scores 51 points. It is behind the models at the top of the ranking, but it is already in a fairly competitive range.

GPT Luna Max in the Artificial Analysis Intelligence Index

The second screenshot is even more interesting because it compares Luna with models that marked a turning point, such as GPT-4.1 when it came out and Claude Opus 4.6, which, at least for me, marked a before and after in using AI for programming.

GPT Luna Max compared with previous models in the Artificial Analysis Intelligence Index

Seeing them on the same chart is a reminder of how quickly all of this moves.

The experiment

I tested several OpenAI models with exactly the same task and the same starting point and context, to understand whether all the models behaved the same way and whether they could solve it. In the end, I measured time and cost.

It was a relatively simple programming task, but it involved looking up what I was referring to in my prompt, figuring out which files would be involved, making a few changes, and adding tests.

This experiment is more anecdotal than anything else, but the results are still interesting:

ModelTimeCost
Sol Medium208 seconds47.7 cents
Terra High67 seconds19.1 cents
Terra Medium45 seconds13.9 cents
Luna Max96 seconds2.7 cents
Luna Medium41 seconds1.6 cents

The price difference is quite significant. Using Luna Max as the baseline, the table looks like this:

ModelTimeCost
Luna Medium0.43x0.59x
Luna Max*1.00x1.00x
Terra Medium0.47x5.15x
Terra High0.70x7.07x
Sol Medium2.17x17.67x

Luna Medium is considerably faster and cheaper, although it is probably not capable of handling complex tasks. If you want to save money and time is not a problem, Luna Max is a good model for many things. If cost is not an issue, Terra High seems like a reasonable choice: it is much more expensive, but relatively fast. Finally, Sol is very, very expensive and much slower than the others, although it may certainly be able to do things the others cannot.

In my day-to-day work, Terra has genuinely surprised me. From now on, I will probably use Luna Max more often for personal projects because its price is unbeatable.

I am still not sure to what extent it makes sense, in terms of time and money, to make a first pass on a task with cheaper models, such as Luna Medium, and then use Terra High to review and improve the implementation. But it is certainly worth exploring.

Conclusion

With these cheaper new models and their current capabilities, I’m just hoping in the future we can see models with similar capabilities and prices, but 10x or 100x faster.