Live data from Hacker News

Launch HN: Morph (YC S23) – Apply AI code edits at 4,500 tokens/sec

news.ycombinator.com

81–90 of 196 posts

Re: Launch HN: Morph (YC S23) – Apply AI code edits at 4,500 tokens/sec

#81
I’d just like to put a pitch in here for someone to do “smart rebase+merge” with AI. Now THAT would really speed up development, if my AI was intelligently merging code from different users in the background, based on understanding the intent behind each conflicting change.

Re: Launch HN: Morph (YC S23) – Apply AI code edits at 4,500 tokens/sec

#82
post #55

Earlier quoted context omitted.

I do it like simultaneous exhibition in chess: - Multiple repos or independent changes in monorepo - First round of changes idgaf about anything beyond public interface and unit tests - I review public interface and make changes if needed - I review unit tests it wrote to see that at least from the outside it looks alright. - here I either: - make more unit tests (features, edge cases and make it write code for it) -…

sounds like flow state to me

oh it's fore sure is. But I use amazon q almost exclusively. One thing that gets me out of this state: when I have to do the math on "should I just do it myself" vs "keep refining prompt/context until this thing finally gets it right".

Re: Launch HN: Morph (YC S23) – Apply AI code edits at 4,500 tokens/sec

#84

I’d just like to put a pitch in here for someone to do “smart rebase+merge” with AI. Now THAT would really speed up development, if my AI was intelligently merging code from different users in the background, based on understanding the intent behind each conflicting change.

how often do you run into merge conflicts?

Re: Launch HN: Morph (YC S23) – Apply AI code edits at 4,500 tokens/sec

#85

Earlier quoted context omitted.

Correct, but morph is a LLM as well. In practice its basically Big LLM using small LLM as a tool call

I see. How is this not going to get run over immediately by big players? Google's diffusion model is already in the wings, and it's both wicked fast and ~flash-lite intelligent.

Google's a great tech organization but they generally don't create dominant tech products like they used to back in the Maps / Mail days (this is nearly two decades ago).

Google wrote AKYNIA. OpenAI wrote ChatGPT.

Re: Launch HN: Morph (YC S23) – Apply AI code edits at 4,500 tokens/sec

#86
post #34

This uses an OpenAI-compatible endpoint, so got this working with my https://llm.datasette.io/ CLI tool. First I added their models to my ~/Library/Application Support/io.datasette.llm/extra-openai-models.yaml file: - model_id: morph-auto model_name: auto api_base: https://api.morphllm.com/v1 api_key_name: morph Then I added the API key like this: llm keys set morph # Paste in API key from https://morphllm.com/api-ke…

Wow that was fast - this is awesome. it shouldnt be a problem unless your code has both and internally. 1 or the other should be fine

[flagged]

Re: Launch HN: Morph (YC S23) – Apply AI code edits at 4,500 tokens/sec

#88
post #60

Earlier quoted context omitted.

As far as i understand, this is not +-300ms. It is 300ms vs. 10 sec or something. That is a huge difference. I personally find the time to wait for these larger models a limiting factor. It’s also probably a resource waste for fairly simple task like this. (Compared to the general function approximation of the llms) But I honestly feel like the task of smartly applying edits falls somewhat within traditional coding t…

you misunderstood. its 300ms just for the apply model, the model that takes your coding models output (eg sonnet) and figures out where the code should be changed in the file. Cursor has its own, and claude uses a different technique with strings as well. So its 10sec vs 10sec +300ms using your analogy

Their selling point is to be a more open version of what cursor has. So the alternative is to use a full llm. So it is 10s+ 10s vs 10s+ 300ms

Re: Launch HN: Morph (YC S23) – Apply AI code edits at 4,500 tokens/sec

#89
post #82

Earlier quoted context omitted.

sounds like flow state to me

oh it's fore sure is. But I use amazon q almost exclusively. One thing that gets me out of this state: when I have to do the math on "should I just do it myself" vs "keep refining prompt/context until this thing finally gets it right".

so frustrating how slow edits are in Q dev

Re: Launch HN: Morph (YC S23) – Apply AI code edits at 4,500 tokens/sec

#90
Have been using morph for a while (I am one of the authors of goose) and was surprised when introduced at the boost it gave me (much less iteration with the main expensive LLM, and I can even make the editing process simpler to take a load off the agent). Used it with claude 3.5, 3.7, 4 and currently with a o3/openai and anthropic/claude4 + morphllm combo today.
Post reply on HN