HackerLangs
TopNewTrendsCommentsPastAskShowJobs

mohit17mor

3 karmajoined 4 ay önce
Software engineer adapting to the AI shift.

Submissions

[untitled]

1 points·by mohit17mor·2 ay önce·0 comments

Ask HN: How are you handling real-time data triggers for LLM agents?

2 points·by mohit17mor·2 ay önce·1 comments

GPT-5.5 Instant: Benchmarking the 52% Hallucination Reduction

the-decoder.com
2 points·by mohit17mor·2 ay önce·0 comments

Amazon waives month's AWS charges after Iranian drone attack

networkworld.com
5 points·by mohit17mor·3 ay önce·0 comments

comments

mohit17mor
·evvelsi gün·discuss
This is super cool! Had similar idea but couldn't pull it off, kudos to the team! Few questions: 1. Is the long term aim to build 1 super app kind of thing? Like for example if i want to book a cab, order food, search the web etc, this app will take care of it all?

2. Any plans to make it like a service? Maybe people could integrate it with their apps/websites?
mohit17mor
·4 gün önce·discuss
I am exploring the idea of event driven agents to reduce human inputs as much as possible, basically I should be able to just create tasks and the agents just keep picking them up as they get free. Also, trying to extend it to chaining the agents so that it can create an end to end workflow. For coding it might look something like this: User creates a task -> coder picks it up -> reviewer agent -> (coder/reviewer back and forth upto 4-5 turns) -> tester agent -> finally wait for user to merge the code or not.

This has nothing to do with agent harness as such, its more like treating agents as instantiable objects and adding control plane on top of them to get the work done.
mohit17mor
·3 ay önce·discuss
[dead]
mohit17mor
·3 ay önce·discuss
Not really sure if you mean setups like OpenClaw as well, but I ran into pretty similar issues there.

That was actually a big part of why I started building my own agent system, Arc agent, mostly just to see if I could solve some of the problems every agent faces. A few practical things helped, putting limits on iteration/retry loops so the agent can’t wander forever, being stricter about context/tool handling once external skills are in play and adding a simple cost/token counter so I could at least see where usage was going. I also tried to reduce the usage of llm whereever a simple code would work more reliably.

I tried to tackle few other problems like downtime during context compaction etc, but yeah the project is still work in progress and i am experimenting with diff stuff.
mohit17mor
·4 ay önce·discuss
[dead]