Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. North Korea 'Likely' Behind $388M Hack of Crypto Exchange Bitget (gizmodo.com)
    —discuss
  2. Excel now supports multiple values in a single cell (techcommunity.microsoft.com)
    —discuss
  3. Analyzing Frontier Model Progress with My Favourite Game: Prince of Persia (blog.priyan.in)
    —discuss
  4. Learning the Bitter Lesson of Agent Harnesses [video] (youtube.com)
    1comments
  5. What one vLLM replica on an L40 can carry and how it fails (percentes.ai)
    —discuss
  6. The stupidity and arrogance of GNOME developers (felipec.wordpress.com)
    —discuss
  7. Finally, A True Blue Rose Exists (sciencenews.org)
    —discuss
  8. Using Claude Code: Spending your effort (twitter.com/trq212)
    —discuss
  9. Cringe and Corny (ambrook.com)
    —discuss
  10. Yegge's Paradox (willbeddow.substack.com)
    —discuss
  11. Show HN: Piloxa – an MCP server that sends USPS Certified Mail from your AI (piloxa.com)
    —discuss
  12. Tell HN: Chrome 154 corrupt Fontconfig cache and crash KDE Plasma
    —discuss
  13. Too AI; Didn't Read (tai-dr.com)
    —discuss
  14. The Scarcity Premium: AI made images free; advertising as a solvency bond (danieldeboulay.com)
    —discuss
  15. Asteroids named after Tom Lehrer and 'Weird Al' Yankovic (slashdot.org)
    —discuss
  16. Show HN: I read ISO 273 off the standard because the online charts disagree (silviaai.dev)
    —discuss
  17. Anthropic's Claims over Its "Supply Chain Risk" Exclusion by Dow Rejected (reason.com)
    2comments
  18. Show HN: A free resume builder where the AI can rewrite but can't invent (payanai.com)
    —discuss
  19. More than a taken branch per cycle? (lemire.me)
    —discuss
  20. Of 1,364 four-year colleges, 17 admit fewer than 1 in 10 applicants (regrok.info)
    —discuss
  21. One Shotted (quarter--mile.com)
    —discuss
  22. Container Registry on the Edge (ewpratten.com)
    —discuss
  23. AI starter pack for the X-curious (xstarterpack.com)
    —discuss
  24. AI will grow beyond our control, we must instill good values before it does (kradle.ai)
    —discuss
  25. Making `wc` 20x faster with parallel state machines (aarol.dev)
    —discuss
  26. Writing Efficient C++ Code (asawicki.info)
    —discuss
  27. Time Measurement in Game Programming (asawicki.info)
    —discuss
  28. 2027 Tesla Semi First Drive (motortrend.com)
    —discuss
  29. Build Plugins for Claude (claude.com)
    —discuss
  30. Commodified Intelligence (herecomesthemoon.net)
    —discuss

Meta's Muse appears to use an OpenAI model labeled muse-special

65 pointsby 2h agomouse.dev
27 comments
2h agoHN ↗

author here. I kept digging through the Muse filesystem after my first post hit the front page here this week.

Going through my logs I found a background agent that used a model called azure/muse-special while building my website. I found this interesting and dug a little deeper.

The transcript and daemon binary point to an OpenAI model running on Azure. Still unclear which one or why it was selected.

The runtime also ships with an Anthropic client and a catalogue listing Claude, GPT and Kimi models. I didn’t observe Claude being used in my own sessions, but this is my Part 2 of exploring the Muse file system.

original post: https://x.com/heypeterjames/status/2103545183400800746

pete at mouse dot dev

2h agoHN ↗

Nice work!

Are you sure this isn't just a custom model that is API-compatible with OpenAI?

2h agoHN ↗

If it's using the same weird (and awful) "backend prompt encryption" pattern and mechanism that Codex also uses (https://news.ycombinator.com/item?id=48905028), then I'd also say it points to OpenAI being involved. Hopefully that shit isn't becoming a more popular pattern, absolutely awful for troubleshooting stuff.

1h agoHN ↗

I asked muse. It’s for codex-cli, and it routes through “OpenAI inference proxy”

1h agoHN ↗

I'm not no. Someone from meta would have to chime in... but its very openai shaped and served differently from all the other models listed in the daemon, under a mysterious name.

a fine-tuned OpenAI model on Azure for the purpose of compaction or something could make sense I guess but that would still be OpenAI's weights with meta ontop, and they already have a compaction model served under azure/avocado-compaction-v1

13m agoHN ↗

why not the same ones, is there a unique need for a different surface?

46m agoHN ↗

This feels like the far more likely option.

The Muse public APIs seem to be heavily inspired by OpenAI's, they even support the richer "responses" API. They have a similarly shaped compaction API, they have the same "encrypted" reasoning. Even the Muse harness seems heavily inspired by (open source) Codex. Considering Azure's historic involvement w/ OpenAI, it seems more plausible that Azure is used as spill-over capacity, and the same Azure infra used to encrypt GPT models encrypts Muse models.

My guess that the generally visible Anthropic/OpenAI details are leftovers from the whole meta "move fast" behavior. There are a few rough edges on the product where it leaks internal codenames (eg. signing in w/ WhatsApp required consenting to using "hatch" on one screen), so I'd believe that this was a leftover on the VM from the prototyping stage, before the Muse models were ready, or because the dev's got to benchmark against different models.

2h agoHN ↗

I don't really see evidence that it's an "OpenAI" model, the title is IMO very misleading.

2h agoHN ↗

Meta already serves its own models on Azure under their real names. azure/avocado-compaction-v1 and azure/avocado-memory-flush-v1 are in the same catalog. Those sessions do not come back as gpt_responses_v1 items with rs_ ids and encrypted reasoning.

1h agoHN ↗

router makes sense. fill a gap with someone else’s model wearing a mask, swap it out with your model not wearing a mask when (or if) you reach that.

definitely tracks with alexandr’s hand-wavey influencer turn.

1h agoHN ↗

I'm not sure I understand why they would route it to other models. It can't be that they don't have enough compute. Maybe worried that the answer from their own models would be bad? Doesn't really make sense, but I could be missing something.

1h agoHN ↗

i agree, and it's what made me spend time exploring today.

fair q. call_ ids and gAAAAA blobs arent damning but the rs_ reasoning ids embed a unix timestamp that matches the session to the second, then OpenAI's 819x marker. plus the summary is in OpenAI's summarizer voice.

its just a best guess.

1h agoHN ↗

It'd be hilarious that meta chose to pay openai. If there was such a deal, would it come to light in any public/official filings?

1h agoHN ↗

No reason for it to. Software companies use products from other software companeis all the time.

59m agoHN ↗

meta already pays openai and anthropic for employee use despite having their own models available

20m agoHN ↗

Depends on the size of the deal. OpenAI would have to disclose it in their S-1 if it crossed the threshold of being material information for investors.

1h agoHN ↗

Muse 1.3 spark occasionally spits out Chinese character responses to me like internal instructions. “Go fast” or “Get help”…

1h agoHN ↗

Got Russian from it once. As a child of the '80s I jumped right on it, but the explanation seemed believable.

Still sleeping with one eye open.

1h agoHN ↗

I had a totally benign chat with OpenAI and it titled it as “amateur porn” in Chinese characters, it was very alarmed when I pointed the conversation name out to it. It almost never misses these days, but when it does the failure modes are very strange.

1h agoHN ↗

A Hindi word in the middle of a normal reply for me (but once I translated the word it was right in context heh)

1h agoHN ↗

This used to happen a lot with GPT 5.4. It would start outputting entire sentences in Korean for no apparent reason.

10m agoHN ↗

People that know multiple languages sometimes code switch too funnily enough