HackerTrans
TopNewTrendsCommentsPastAskShowJobs

LuxBennu

no profile record

Submissions

[untitled]

1 points·by LuxBennu·11 giorni fa·0 comments

Show HN: CtxGov – see what instructions your AI agent inherits before it runs

github.com
3 points·by LuxBennu·16 giorni fa·0 comments

[untitled]

1 points·by LuxBennu·23 giorni fa·0 comments

Show HN: CtxGov – drop in AI memory files, get an influence-boundary report

ctxgov.github.io
2 points·by LuxBennu·24 giorni fa·0 comments

Show HN: CtxGov – a local claim firewall for AI memory claims

ctxgov.github.io
2 points·by LuxBennu·mese scorso·0 comments

Show HN: CtxVault – receipts for AI context, not another memory store

ctxvault.github.io
1 points·by LuxBennu·2 mesi fa·0 comments

[untitled]

1 points·by LuxBennu·2 mesi fa·0 comments

Show HN: CtxVault – local receipts for AI context handoffs

github.com
3 points·by LuxBennu·2 mesi fa·0 comments

Making prompts longer did not help. Making the task contract explicit did

signaldepth.ai
1 points·by LuxBennu·3 mesi fa·0 comments

Show HN: Reprompt – Analyze what you type into AI tools, not what they output

github.com
3 points·by LuxBennu·3 mesi fa·3 comments

Show HN: Reprompt – Score your AI coding prompts with NLP papers

github.com
13 points·by LuxBennu·4 mesi fa·2 comments

comments

LuxBennu
·16 giorni fa·discuss
[flagged]
LuxBennu
·2 mesi fa·discuss
[flagged]
LuxBennu
·3 mesi fa·discuss
Chatgpt for Excel is still an office add-in running in the same sandbox though. strongpigeon described the exact bottleneck upthread, process boundary crossings, context.sync() roundtrips that take seconds on web. That's a platform limitation, not a model limitation. Swapping AI behind the add-in doesn't fix the fundamental constraint that third-party add-ins can't deeply integrate with Excel's runtime the way a native feature can. If copilot is bad despite having more access to excel internals(I don't like how Copilot is designed or implemented tho), an add-in with less access is likely not be better.
LuxBennu
·3 mesi fa·discuss
[dead]
LuxBennu
·3 mesi fa·discuss
Yeah sorry that was unclear on my part. I chunk at the endpoint level, whisper itself obviously processes 30s windows. The memory/latency thing I was referring to is more about processing longer files end to end through the pipeline, not a single whisper pass. My fastapi wrapper just splits the audio and runs chunks sequentially so total wall time scales linearly with file length, nothing fancy.
LuxBennu
·3 mesi fa·discuss
Oh nice, the pyannote coreml port is interesting. Last time I looked at pyannote it was pytorch only so getting it to run efficiently on apple silicon was kind of a pain. Does the coreml version handle diarization or just activity detection?
LuxBennu
·3 mesi fa·discuss
Ah that makes sense, quadratic scaling is brutal. So with 96gb i'd probably get somewhere around 4-5k total sequence length before hitting the wall, which is still pretty limiting for anything multimodal. Do you do any gradient checkpointing or is that not worth the speed tradeoff at these sizes?
LuxBennu
·3 mesi fa·discuss
I run whisper large-v3 on an m2 max 96gb and even with just inference the memory gets tight on longer audio, can only imagine what fine-tuning looks like. Does the 64gb vs 96gb make a meaningful difference for gemma 4 fine-tuning or does it just push the oom wall back a bit? Been wanting to try local fine-tuning on apple silicon but the tooling gap has kept me on inference only so far.
LuxBennu
·3 mesi fa·discuss
Yeah that makes sense, chunking on silence would sidestep the latency issue pretty cleanly. I've been running it through a basic fastapi wrapper so it just takes whatever audio blob gets thrown at it, no chunking logic on the server side. Might be worth adding a vad pass before sending to whisper though, would cut down on processing dead air too.
LuxBennu
·3 mesi fa·discuss
I've been running whisper large-v3 on an m2 max through a self-hosted endpoint and honestly the accuracy is good enough that i stopped bothering with cleanup models. The bigger annoyance for me was latency on longer chunks, like anything over 30 seconds starts feeling sluggish even with metal acceleration. Haven't tried whisperkit specifically but curious how it handles longer audio compared to the full model.
LuxBennu
·3 mesi fa·discuss
[dead]
LuxBennu
·3 mesi fa·discuss
that tracks with what i've noticed practically. shorter prompts feel basically the same between llama.cpp metal and what i'd expect from native mlx, but once context gets longer the overhead starts showing up. would be interesting to see if ollama's mlx path actually handles kv cache differently under the hood or if it just skips the buffer sync layer
LuxBennu
·3 mesi fa·discuss
Roughly 8-12 token/s on generation depending on context length. Prompt processing is faster obviously. Haven't benchmarked it super carefully though, just eyeballing the llama.cpp output.
LuxBennu
·3 mesi fa·discuss
yeah fair point, it's definitely model dependent. i've had good results with qwen but tried it on a smaller mistral variant once and the output quality dropped noticeably even at q8 for both. the speed hit from mixed types hasn't been bad on apple silicon in my experience but i can see it mattering more on cuda.
LuxBennu
·3 mesi fa·discuss
good overview of the architecture side but worth mentioning there's another axis that stacks on top of all of this: you can quantize the kv cache itself at inference time. in llama.cpp you can run q8 for keys and q4 for values and it cuts cache memory roughly in half again on top of whatever gqa or mla already saves you. i run qwen 70b 4-bit on m2 max 96gb and the kv quant is what actually made longer contexts fit without running out of unified memory. keys need more precision because they drive attention scores but values are way more tolerant of lossy compression, so the asymmetry works out.
LuxBennu
·3 mesi fa·discuss
Thanks! Turns out structural signals get you surprisingly far. An LLM catches more, but speed is the feature.
LuxBennu
·3 mesi fa·discuss
I ran this on my own prompt history and three things surprised me. found 3 API keys buried in copy-pasted stack traces (`reprompt privacy`). 35% of my agent sessions had error loops -- the agent retrying the same failing approach 3+ times (`reprompt agent`). And 50-70% of my conversation turns were filler like "ok try that" (`reprompt distill`).

    pip install reprompt-cli
    reprompt scan && reprompt
Everything runs locally -- zero network calls, zero telemetry. Also works as an MCP server and GitHub Action.
LuxBennu
·3 mesi fa·discuss
Already running qwen 70b 4-bit on m2 max 96gb through llama.cpp and it's pretty solid for day to day stuff. The mlx switch is interesting because ollama was basically shelling out to llama.cpp on mac before, so native mlx should mean better memory handling on apple silicon. Curious to see how it compares on the bigger models vs the gguf path
LuxBennu
·3 mesi fa·discuss
Sadly I have the issue on a new m5 air. I have a 60hz 4k work monitor and two high refresh 4k gaming displays. The 60hz pairs fine with either gaming monitor, but the two gaming ones together and one just doesn't get recognized. Spent way too long trying new cables before realizing it's a bandwidth limitation.
LuxBennu
·3 mesi fa·discuss
This is true for prohibitions but claude.md works really well as positive documentation. I run custom mcp servers and documenting what each tool does and when to use it made claude pick the right ones way more reliably. Totally different outcome than a list of NEVER DO THIS rules though, for that you definitely need hooks or sandboxing.