TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Examples of agentic LLM systems in production?

112 点作者 SebaSeba5 个月前
Now that everybody and their mother are fuzzing in social media about LLM agents and agentic LLM systems (or something), are there actual examples of live applications that are based on an agentic LLM process flow?<p>I&#x27;d be curious to know and see such examples in order to derive some inspiration from them.

25 条评论

isoprophlex5 个月前
An anecote that helps you maybe:<p>I do contracting work, we&#x27;re building a text-to-sql automated business analyst. It&#x27;s quite well-rounded: it tries to recover from errors, allows automatic creation of appropriate visualisations, has a generic &quot;faq&quot; component to help the user understand how to use the tool. The tool is available to some 10.000 b2b users.<p>It&#x27;s just a bunch of prompts conditionally slapped together in a call graph.<p>The client needed AGENTIC AI, without specifying exactly what this meant. I spent two weeks pushing back on it, stating that if you replace the hardcoded call graph with something that has &quot;&quot;&quot;free will&quot;&quot;&quot;, accuracy and interpretability goes down whilst runtimes go up... but no, we must have agents.<p>So I did nothing, and called the current setup &quot;constrained agentic ai&quot;. The result: High fives all around, everyone is happy<p>Make of that what you will... ai agents are at least 90% hype.
评论 #42432548 未加载
评论 #42433073 未加载
评论 #42432448 未加载
评论 #42432420 未加载
评论 #42434491 未加载
评论 #42437803 未加载
furyofantares5 个月前
If you are looking for LLM agents that go off and do a bunch of work on their own, you will be supremely underwhelmed. Anyone who went straight to building agents without a human in some large loop found that they were trying to make the LLM do things it was extremely bad at.<p>The right approach to build toward agents is to start with something that gives pretty good responses to prompts and build up an agentic mode to let it do more and more in response to each prompt. It should be thought of as extending how much you get per prompt, and doing so by chaining together components you&#x27;ve already worked at making to good at.<p>Cursor (the LLM powered VS Code fork) has an agentic mode and they are doing this the right way. The normal chat window is good at producing changes to your code, and at applying them, at looking at lints, at suggesting terminal commands, at doing directory listings or RAG on your codebase. Agentic mode is tying those together to do more of the work you want with fewer prompts from you.
bluejay23875 个月前
As a side note, while I know of several language model based systems that have been deployed in companies, some companies don&#x27;t want to talk about it:<p>1. Its still perceived as an issue of competitive advantage<p>2. There is a serious concern about backlash. The public&#x27;s response to finding out that companies have used AI has often not been good (or even reasonable) -- particularly if there was worker replacement related to it.<p>It&#x27;s a bit more complicated with &quot;agents&quot; as there are 4 or 5 competing definitions for what that actually means. No one is really sure what an &#x27;agentic&#x27; system is right now.
评论 #42432408 未加载
评论 #42432019 未加载
评论 #42437891 未加载
评论 #42438243 未加载
bronco210165 个月前
With all the agencies and the YouTube demos of n8n and Make.com they should be everywhere.<p>I look at my workplace and I see places where they might fit in but if the reliability isn’t 99.5% they won’t be trusted and I think that’s a problem.<p>I made a toy in n8n that collects transactions in YNAB via API and matches them to Amazon orders in GMail. It then uses GPT-4o with vision to categorize the product pictures according to my budget’s categories but I have to add the order link to the transaction memo and add a flag for human review because it’s only 80% or so. It has sped up the workflow for sure but nowhere near good enough to set it and forget it.
评论 #42431950 未加载
moyix5 个月前
We&#x27;ve been using them to find novel vulnerabilities in open source web apps. The past 4 posts here have details:<p>- Auth bypass&#x2F;arbitrary file read in Scoold: <a href="https:&#x2F;&#x2F;xbow.com&#x2F;blog&#x2F;xbow-scoold-vuln&#x2F;" rel="nofollow">https:&#x2F;&#x2F;xbow.com&#x2F;blog&#x2F;xbow-scoold-vuln&#x2F;</a><p>- SSRF in 2FAuth: <a href="https:&#x2F;&#x2F;xbow.com&#x2F;blog&#x2F;xbow-2fauth-ssrf&#x2F;" rel="nofollow">https:&#x2F;&#x2F;xbow.com&#x2F;blog&#x2F;xbow-2fauth-ssrf&#x2F;</a><p>- Stored XSS in 2FAuth: <a href="https:&#x2F;&#x2F;xbow.com&#x2F;blog&#x2F;xbow-2fauth-xss&#x2F;" rel="nofollow">https:&#x2F;&#x2F;xbow.com&#x2F;blog&#x2F;xbow-2fauth-xss&#x2F;</a><p>- Path traversal in Labs.AI EDDI: <a href="https:&#x2F;&#x2F;xbow.com&#x2F;blog&#x2F;xbow-eddi-path&#x2F;" rel="nofollow">https:&#x2F;&#x2F;xbow.com&#x2F;blog&#x2F;xbow-eddi-path&#x2F;</a><p>Each of those has an associated agent trace so you can go read exactly what the agent did to find and exploit the vulnerability.
simonw5 个月前
If we&#x27;re going to have a conversation about agents or agentic it is really important we agree on which definition of those terms we are using for the purpose of this conversation.<p>If you ask two different people in the AI space to define &quot;agent&quot; you almost always get two slightly (or significantly) different definitions!<p>Here are just some of the definitions I&#x27;ve seen over time: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=42216217#42228364">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=42216217#42228364</a><p>For the purpose of this thread the most cynical definition, &quot;LLMs that do something useful&quot;, might actually be the best fit!
评论 #42432713 未加载
austinkhale5 个月前
I know of many, many LLM systems in production system, since that&#x27;s what I&#x27;ve been helping companies build since the start of the year. Mostly it&#x27;s pretty rote automation work but the cost savings are incredible.<p>Agentic workflows are a much higher bar that are just barely starting to work. I can&#x27;t speak to their efficacy but here&#x27;s a few of the ones that are sort of starter-level agents that I&#x27;ve started seeing some companies adopt:<p>- <a href="https:&#x2F;&#x2F;www.intercom.com&#x2F;fin" rel="nofollow">https:&#x2F;&#x2F;www.intercom.com&#x2F;fin</a><p>- <a href="https:&#x2F;&#x2F;www.rox.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.rox.com&#x2F;</a><p>- <a href="https:&#x2F;&#x2F;devin.ai&#x2F;" rel="nofollow">https:&#x2F;&#x2F;devin.ai&#x2F;</a><p>- <a href="https:&#x2F;&#x2F;bolt.new&#x2F;" rel="nofollow">https:&#x2F;&#x2F;bolt.new&#x2F;</a><p>- <a href="https:&#x2F;&#x2F;v0.dev&#x2F;" rel="nofollow">https:&#x2F;&#x2F;v0.dev&#x2F;</a>
评论 #42432161 未加载
burningion5 个月前
The way I look at Agentic systems is that there are Tools an LLM can call out to, and do work with.<p>Last week Wednesday I participated in Anthropic&#x27;s Model Context Protocol hackathon, and built a system with my team partner Zia to automatically search and find restaurants for your dietary preferences and group size.<p>It also automatically downloads social media of the restaurant to get a vibe for the place.<p>There&#x27;s a video of it in action here: <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=c6vGrfHFyu8" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=c6vGrfHFyu8</a><p>And a Github repo here: <a href="https:&#x2F;&#x2F;github.com&#x2F;zia-r&#x2F;gotta-eat">https:&#x2F;&#x2F;github.com&#x2F;zia-r&#x2F;gotta-eat</a>
t555 个月前
We built several LLM-powered applications that collectively served thousands of users. The biggest challenge we faced was ensuring reliability: making sure the workflows were robust enough to handle edge cases and deliver consistent results.<p>In practice, achieving this reliability meant repeatedly:<p>1. Breaking down complex goals into simpler steps: Composing prompts, tool calls, parsing steps, and branching logic. 2. Debugging failures: Identifying which part of the workflow broke and why. 3. Measuring performance: Assessing changes against real metrics to confirm actual improvement.<p>We tried some existing observability tools or agent frameworks and they fell short on at least one of these three dimensions. So we built our own: <a href="https:&#x2F;&#x2F;github.com&#x2F;PySpur-Dev&#x2F;PySpur">https:&#x2F;&#x2F;github.com&#x2F;PySpur-Dev&#x2F;PySpur</a><p>1. Graph-based interface: We can lay out an LLM workflow as a node graph. A node can be an LLM call, a function call, a parsing step, or any logic component. The visual structure provides an instant overview, making complex workflows more intuitive. 2. Integrated debugging: When something fails, we can pinpoint the problematic node, tweak it, and re-run it on some test cases right in the UI. 3. Evaluate at the node level: We can assess how node changes affect performance downstream.<p>We hope it&#x27;s useful for other LLM developers out there
reilly30005 个月前
I asked a similar question a few months ago: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=39886178">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=39886178</a><p>It seems the community has gotten more negative about agentic approaches since then, and it wasn’t pretty then.
WinH5 个月前
We use LLM agents to do proofreading and editing of transcripts after they are edited by people. They are good at applying our customer&#x27;s specific requirements (e.g. capitalization, formatting, etc.) without us having our folks worry about any of that. We use <a href="https:&#x2F;&#x2F;transcriberai.com" rel="nofollow">https:&#x2F;&#x2F;transcriberai.com</a> or <a href="https:&#x2F;&#x2F;otter.ai&#x2F;" rel="nofollow">https:&#x2F;&#x2F;otter.ai&#x2F;</a> (there are a bunch) to create the first transcript for our transcriptionists.
shmatt5 个月前
You&#x27;d probably have to define agents first. What large &#x2F; mega caps call agents is LLM + RAG + API Calls to read data and trigger jobs. And there are plenty of those online
评论 #42432037 未加载
s-macke5 个月前
The term &quot;agent&quot; is quite broad. In my definition, an LLM becomes an agent when it utilizes the tool usage option.<p>ChatGPT is a good example: you ask for an image, and you receive one; you ask for a web search, and the chatbot provides an answer based on that search.<p>In both cases, the chatbot has the ability to rewrite your query for that tool and is even able to call the tools multiple times based on the previous result.
bugglebeetle5 个月前
Windsurf IDE from Codeium. Still some rough edges, but they’ve beat the Claude UI and Cursor for coding. Their code search is also next-level. Crazy efficiency gains for me for small-to-medium sized projects. Apparently, they have a ton of enterprise customers and are doing fast iteration loops relative to user signals (e.g. accepting diffs).
zdifferentiator5 个月前
Yesterday I recorded an example of an O&#x27;reilly auto parts customer service agent to show how users can invoke them using RAG - last part of this video <a href="https:&#x2F;&#x2F;youtu.be&#x2F;Qk_pVHtgcyA" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;Qk_pVHtgcyA</a><p>There are plenty of RAG-capable LLMs in production, but still few products&#x2F;UX oriented toward agentic work.<p>An AI product that can make purchases and API requests to external services like delivery drivers, calendars, etc. is still needed to truly enable these &quot;agents&quot; - which right now are basically read-only domain-specific LLMs.
dongecko5 个月前
We have a couple of systems at work that incorporate LLMs. There are a bunch of RAG chatbots for large documentation collections and a bunch of extract-info-from-email bots. I would none of these call an agent. The one thing that comes close to an agent is a very bot that can query a few different SQL and API data sources. Given a users text query, it decides on its own which tool(s) to use. It can also retry, or re-formulate its task. The agentic parts are mainly done in LangGrah.
nisten5 个月前
They&#x27;re ALL bullshit and there&#x27;s a technical reason why.<p>Your rube goldberg contraption that you put together for your borderline-fradulent pitch deck is NOT an assembly-line nor is it a product anyone&#x27;s gonna buy. Why?<p>Because cosine similarity search mathematically sucks a* , large context windows, while better, are nowhere close to being fast and practical ( maybe with a small exception of the generic sounding 1M context summaries you now get from gemini flash 2.0 exp ) . You probably don&#x27;t have any kind of CI&#x2F;CD setup, no testing at all zero, no benchmarking of accuracy, you probably can&#x27;t even get lm_eval installed in the first place so no troubleshooting methodoloy, no formal iteration pipeline, you&#x27;re not putting out a new model every 2 weeks and iterating upon, and YOU at this point probably can&#x27;t find your own way to your own fkin toilet seat without Cursor&#x27;s GPS showing your where it is and then writing a whole factory just to open the toilet seat.<p>You look at the youtube demos and it&#x27;s just another investor slop to be sold to other sloppy investors. I even asked on uncle Elons twitter if anyone had a demo of agents doing anything in real life, and after 1&#x2F;4million views the only thing that even worked AT ALL were spambots and Pliny&#x27;s agent making a sh*tcoin. <a href="https:&#x2F;&#x2F;x.com&#x2F;nisten&#x2F;status&#x2F;1808522547169763448" rel="nofollow">https:&#x2F;&#x2F;x.com&#x2F;nisten&#x2F;status&#x2F;1808522547169763448</a><p>People cook something at home and immediately get delusional thinking they now have an assembly line that&#x27;s just going to print money... have you ever actually looked at an industrial pasta-maker machine. Do YOU have the skills to make that? I&#x27;m sorry but no ammount of shrooms and microdosed-meth pills is gonna get you that.<p>Agents do not exist yet, they will sooner or later, but right now they&#x27;re a concept more along the lines of scammy ledger-backed dbs.<p>You can always prove me wrong with a real life demonstration of an automated tool doing a complex ammount of steps that you&#x27;d normally expect an average-ish worker to do for you on a RELIABLE rate basis. I.E. Doing your taxes like your accountant or 10 year old hopefully does.
评论 #42432526 未加载
评论 #42432514 未加载
评论 #42434282 未加载
anon3738395 个月前
Setting aside buzzwords, how are people currently dealing with the problem of LLM errors propagating&#x2F;accumulating through a pipeline? All of these model call feeding into model calls feeding into model calls results in a pretty low probability that the overall task stays on a happy path. And adding even more calls to guardrail the steps adds compounding latency.
cloudking5 个月前
IMO &quot;Agents&quot; are a marketing term, they are simply software that use LLMs somewhere in the backend. Often daisy chained into a series of operations that may involve additional LLM calls or calls to other internal&#x2F;external services.<p>One we&#x27;ve been using for meeting notes + action items works quite well <a href="https:&#x2F;&#x2F;fireflies.ai" rel="nofollow">https:&#x2F;&#x2F;fireflies.ai</a>
评论 #42432349 未加载
评论 #42438508 未加载
msarrel5 个月前
We&#x27;re running an agentic LLM system in production that generates marketing strategy. As of now, we&#x27;re up to about 60 agents and as we add functionality we&#x27;ll add more. And yes, it&#x27;s not easy to get them to stay on track and cooperate. <a href="https:&#x2F;&#x2F;www.goguma.io" rel="nofollow">https:&#x2F;&#x2F;www.goguma.io</a>
bitnovus5 个月前
Devin is closest for me. I’ve had it implement additional language locales and add dark mode to our UI.
klntsky5 个月前
Support bots. Scrapers. Personal assistants. Search startups like perplexity. Scammer bots. Bots that spread political agenda. &quot;AI&quot; memecoins.
评论 #42431903 未加载
blmayer5 个月前
<a href="https:&#x2F;&#x2F;datagrid.com" rel="nofollow">https:&#x2F;&#x2F;datagrid.com</a>
DataDaemon5 个月前
Agentic workflow is great only for demos without real business cases. Each agent can hallucinate, which will pass this hallucination to another agent. In the end, you have just garbage. But... It&#x27;s better to be silent, we still need to inflate this bubble.
评论 #42432149 未加载
sgt1015 个月前
LLM agents: not so much.<p>Actual real Intelligent Autonomous Agents - go to Mars, kick a rover... there&#x27;s one. Go try front running on the markets, you&#x27;ll meet about 6000 other ones trying to out run you.