fromTheregister
4 days agoArtificial intelligence
Cursor is better at marketing than coding
Cursor claimed an AI-built browser, but the code is largely nonfunctional, misrepresented, and the experiment consumed trillions of tokens costing millions.
I recently implemented a feature here on my own blog that uses OpenAI's GPT to help me correct spelling and punctuation in posted blog comments. Because I was curious, and because the scale is so small, I take the same prompt and fire it off three times. The pseudo code looks like this: for model in ("gpt-5", "gpt-5-mini", "gpt-5-nano"): response = completion( model=model, api_key=settings.OPENAI_API_KEY, messages=messages, ) record_response(response)