Viewing profile — t1amat
t1amat
HN member- Joined
- Wed, Dec 04, 2013, 8:27 PM UTC
- HN karma
- 199
- Public activity
- 121 items
- HN profile
- View on Hacker News ↗
About t1amat
Recent public activity
-
comment
Comment #47466213
Claude Code is closed source so this isn’t a concern they should have as Opus is great at Rust.
-
comment
Comment #47183943
Interesting idea, but I think it might have made more sense to use something like repomix to generate the source bundle and tiktoken’d that. Practically speaking you don’t send man…
-
comment
Comment #47039128
When most people refer to “GLM” they refer to the mainline model. The difference in scale between GLM 5 and GLM 4.7 Flash is enormous: one runs on acceptably on a phone, the other …
-
comment
Comment #46927346
Perhaps the opposite: a language small enough that its entirety can easily be stuffed in context.
-
comment
Comment #46590690
Not a direct answer but it looks like v0.5 is a nanoGPT arch and v1 is a Phi 1.5 arch, which should be well supported by quanting utilities for any engine. They are small too and s…
-
comment
Comment #46393325
With M2, yes - I’ve used it in Claude Code (e.g. native tool calling), Roo/Cline (e.g. custom tool parsing), etc. It’s quite good and for some time the best model to self-host. At …
-
comment
Comment #45375684
You might have 1A rights as an American but it seems to me the manner in which this person protested would be grounds for termination in many jurisdictions.
-
comment
Comment #45304691
This is the right take. You might be able to get decent (2-3x less than a GPU rig) token generation, which is adequate, but your prompt processing speeds are more like 50-100x slow…
-
comment
Comment #44833810
The problem with OpenAI models is the lack of a Max-like subscription for a good agentic harness. Maybe OpenAI or Microsoft could fix this. I just went through the agony of provisi…
-
comment
Comment #44833553
Is this actually true? Last I checked (a week ago?) Codex the agents were free at some tiers in a preview capacity (with future rate limits based on tier), but codex cli was not. W…
- comment
-
comment
Comment #44600391
I doubt this is true anymore, if ever. Both require string escaping, which is the real hurdle. And they are heavily trained on JSON for tool calling.
-
comment
Comment #44534679
With 32B active parameters it would be ridiculously slow at generation.
-
comment
Comment #44516432
The user should be able to enable/disable tools or an entire tab’s toolset. Some keep open hundreds of tabs and that’s simply too many potential tools to expose. Deduping doesn’t m…
-
comment
Comment #44486007
Your filter doesn’t seem to be working properly right now.
-
comment
Comment #44383071
(Replying to both siblings questioning this) If the primary use case is input heavy, which is true of agentic tools, there’s a world where partial GPU offload with many channels of…
-
comment
Comment #44383010
The UI is the product. If you just want the engine, use mlx-omni-server (for MLX) or llama-swap (for GGUF) and huggingface-cli (for model downloads).
-
comment
Comment #44382987
I would recommend Qwen3 30B A3B for you. The MLX 4bit DWQ quants are fantastic.
-
comment
Comment #44382981
Gemma3 models can follow instructions but were not trained to call tools, which is the backbone of MCP support. You would likely have a better experience with models from the Qwen3…
-
comment
Comment #44174902
Not a lawyer but the timing of this seems poor when the govt is deciding on whether Google should spin off Chrome or not.
-
comment
Comment #44034644
Llama is arguably the reason open weight LLM’s are a thing, with the leak of Llama 1 and subsequent release of Llama 2. Llama 3 was a huge push for quality, size, context length, a…
-
comment
Comment #43816527
But that’s just it: 300 good lines of reasonably complex working code in an hour vs o4-mini can churn out 600 lines of perfectly compilable code in less than 2 minutes, including t…
-
comment
Comment #43712090
Use a tool like repomix (npm), which has extensions in some editors (at least VSCode) that can quickly bundle source files into a machine readable format
-
comment
Comment #43669878
This looks interesting, however Zod has become a standard of sorts and a lot of libraries I use expect, for example, a JSON schema defined as a Zod schema. I would need some sort o…
-
comment
Comment #43669835
With Zod you can build a schema that would match an existing type. Typescript will complain if the schema you build does not match the type you are representing, which is helpful. …