New ask Hacker News story: My GLM-5.1 coding agent scored 94.3% on LiveCodeBench Lite (348/369)
My GLM-5.1 coding agent scored 94.3% on LiveCodeBench Lite (348/369) 3 by univence | 0 comments on Hacker News. I’ve been building Univence, a custom autonomous coding agent platform powered by GLM-5.1. We are building this to be a true Replit/Vercel competitor, but with zero vendor lock-in. You can build and develop entirely on our platform alongside our SOTA agent, but you own the code and can deploy it seamlessly to any 3rd-party host like DigitalOcean, Netlify, AWS, or your own VPS. To prove the core agent's capability, we just ran it against the LiveCodeBench Lite dataset (Python split). Here is the breakdown over a blind 369-problem run: Total: 348/369 passed (94.3%) Easy: 138/141 passed (97.9%) Medium: 152/156 passed (97.4%) Hard: 58/72 passed (80.6%) (Note: We achieved that 80% on Hard by engineering the agent's constraints to strictly prioritize optimal time complexities like O(n log n) over brute-force O(n^2), avoiding the Time Limit Exceeded errors that usually tr...