Files
nexus/wiki/concepts/AI数据处理.md
weishen 5789476c23 Batch ingest: Multi-Agent Team / DevOps Maturity / 一语点醒梦中人 / NodeWarden
Sources:
- Agent-usecases-multi-Agent-Team.md
- DevOps-Maturity-Model-From-Traditional-IT-to-Advanced-DevOps.md
- AI-一语点醒梦中人.md
- Home-Office-NodeWarden-把-Bitwarden-搬上-Cloudflare-Workers彻底告别服务器.md

Entities: Trebuh, Cloudflare
Concepts: DevOps成熟度模型, 共享内存模式, 空性智慧, 绝处逢生
2026-04-15 18:05:17 +08:00

31 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: AI数据处理
type: concept
tags: [AI, data-processing, LLM, workflow]
sources: []
last_updated: 2026-04-15
---
## 定义
通过大语言模型对采集的原始数据进行智能化处理,包括摘要、分类、特征提取、翻译、异常检测等,输出结构化数据供下游使用。
## 典型任务
- **内容摘要**:产品描述压缩为 30 字摘要
- **分类**:按类目/品牌/价格区间归类
- **特征提取**:从非结构化文本提取品牌、型号、规格等字段
- **多语言翻译**:产品信息翻译为多语言版本
- **异常检测**:识别异常价格、缺图、缺失字段等
## 调用方式
- **外部 API**OpenAI GPT-4、Claude 等,高质量但有成本
- **本地模型**[Ollama] + Llama3/Mistral免费但需 GPU/CPU 资源
## 在 Wiki 中的角色
- [[可自动化可扩展AI增强的电商数据采集与处理系统]] AI 处理层
- [[n8n Workflow自动化]] 通过 HTTP Request Node 调用 [[Ollama]] 本地模型
## n8n 集成示例
```
Prompt: "从以下JSON中提取每个产品的简短摘要不超过30字并分类。输入{{$json['title']}},价格:{{$json['price']}},评分:{{$json['rating']}}"
```