惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
MyScale Blog
MyScale Blog
The GitHub Blog
The GitHub Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
量子位
博客园 - 司徒正美
V
V2EX
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
美团技术团队
N
Netflix TechBlog - Medium
L
LangChain Blog
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure Blog

博客园 - Eric zhou

Github Project-AI Agentic Framework (.NET) 我不是给 AI 装了一堆插件,我是在搭一套工作能力系统 我不是在用 AI 助手,我在把自己的能力沉淀成组织资产 .NET 10 新特性概览与相关文章索引 .NET 10 & C# 14 New Features 新增功能介绍-ASP.NET Core 基于Microsoft.Extensions.AI 和 Microsoft.Extensions.VectorData构建向量搜索 Windows 安装 OpenClaw 踩坑全记录:Node、Git、CMake、VS Build Tools 一次解决 .NET 10 & C# 14 New Features 新增功能介绍-.NET CLI工具改进 .NET 10 & C# 14 New Features 新增功能介绍-再看Top Level Program .NET 10 & C# 14 New Features 新增功能介绍-带修饰符的简单 lambda 参数 .NET 10 & C# 14 New Features 新增功能介绍-Null 条件分配(Null-conditional assignment) .NET 10 & C# 14 New Features 新增功能介绍-field关键字 .NET 10 & C# 14 New Features 新增功能介绍-扩展成员Extension Members 基于.NET和C#构建光伏IoT物模型方案 总结归纳.NET 10 中 Minimal APIs 主要应用场景 .NET 10 New feature 新增功能介绍-Minimal APIs增强 .NET 10 New feature 新增功能介绍-WebSocket功能增强 Google A2UI本地部署记录 .NET10 New feature 新增功能介绍-类库新增功能 .NET10 New feature 新增功能介绍-JIT编译器改进
关于Agentic AI的一些总结和思考
Eric zhou · 2025-12-24 · via 博客园 - Eric zhou

引用Google Gemini的释义:

Agentic AI frameworks are software toolkits that provide structure, components, and protocols for building autonomous AI agents that can reason, plan, and act to achieve goals, streamlining development with features like memory, tool integration (APIs), and multi-agent orchestration, with popular examples including AutoGenCrewAI, LangGraph, and Semantic Kernel, enabling complex automation beyond simple prompts. 

Core Components & Capabilities

  • Planning & Reasoning: Breaking down tasks, selecting tools, tracking progress.
  • Autonomy: Operating independently, adjusting strategies.
  • Memory: Retaining context and past actions for better reasoning.
  • Tool Integration: Accessing external APIs, databases, and systems.
  • Multi-Agent Orchestration: Coordinating multiple agents for complex workflows.
  • Human-AI Interaction: Interfaces for feedback and oversight. 

这里其实应该先看一下GenAI和AgenticAI的区别

GenAI 解决“生成什么”,Agentic AI 解决“为了目标要做什么、下一步做什么”。

image

👉 GenAI 是“会写、会说、会生成”的大脑

👉 Agentic AI 是“会思考下一步并动手”的数字员工

 GenAI 擅长 

  • 文本生成(文案、代码、方案)

  • 总结、改写、翻译

  • 单轮或多轮问答

  • 规则内推理(RAG + Prompt)

 从本质上看:“输入 → 输出”

Agentic AI 擅长

  • 拆解目标

  • 制定计划

  • 调用工具 / 系统

  • 多步执行

  • 根据结果动态调整策略

 从本质上看是:“目标 → 行动闭环”

二者在关键技术上的差异有

image

Agentic AI = GenAI + 规划 + 工具 + 状态 + 决策