@
code0611 大公司做业务 LLM 部署和应用部署都是微服务多些,业务逻辑层如果需要配置单抽出来做配置中心多些,dify coze 这种低代码可视化配置都是纯运营托管的场景才用的多,但大多数场景根本不会有专有运营天天整 workflow
这个也不是我说的,基本上是业界共识,Anthropic 官方 Agent 指南里也提到了类似观点
Building effective agents
https://www.anthropic.com/research/building-effective-agentsWhen and how to use frameworks
There are many frameworks that make agentic systems easier to implement, including:
– LangGraph from LangChain;
– Amazon Bedrock's AI Agent framework;
– Rivet, a drag and drop GUI LLM workflow builder; and
– Vellum, another GUI tool for building and testing complex workflows.
These frameworks make it easy to get started by simplifying standard low-level tasks like calling LLMs, defining and parsing tools, and chaining calls together. However, they often create extra layers of abstraction that can obscure the underlying prompts and responses, making them harder to debug. They can also make it tempting to add complexity when a simpler setup would suffice.
We suggest that developers start by using LLM APIs directly: many patterns can be implemented in a few lines of code. If you do use a framework, ensure you understand the underlying code. Incorrect assumptions about what's under the hood are a common source of customer error.
See our cookbook for some sample implementations.