新增第26章: NAS照片发送到Telegram

This commit is contained in:
2026-04-17 11:50:37 +08:00
parent ea7a3785b9
commit 4fefe2541b
50 changed files with 1692 additions and 448 deletions

View File

@@ -0,0 +1,23 @@
---
title: "上下文记忆"
type: concept
tags: [ai, memory, context]
---
## Definition
AI Agent 保留对话历史的能力使其能够理解对话上下文提供连贯且相关的响应。上下文记忆解决了大型语言模型LLM本身无状态的问题。
## Importance
- 增强对话流畅性
- 避免重复询问已提供的信息
- 提供个性化的交互体验
## Implementation in n8n
通过 Memory 节点实现,允许 AI Agent
- 存储对话历史
- 跨轮次检索相关信息
- 维持会话上下文
## Connected Pages
- [[Agentic AI]] — 依赖上下文记忆实现智能交互
- [[N8N Full Tutorial Building AI Agents in 2025 for Beginners!]] — 教程演示如何在 n8n 中添加记忆模块