Files
myWiki/concepts/financial-llm-requirements.md

46 lines
1.5 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: "金融行业好需求工程"
created: 2026-06-24
updated: 2026-06-24
type: concept
tags: ["requirements-engineering", "financial-llm", "prompt-engineering"]
sources:
- "[[financial-llm-practice-2026]]"
---
# 金融行业"好需求"工程
恒生电子团队提出的金融大模型需求定义方法论。"差需求"是"丢给模型几百页底稿说审一下",而"好需求"必须明确告知模型三件事。
## 好需求三要素
### 1. 在哪里看(范围限定)
限定章节范围而非全文。例如"请在第三章财务数据部分查找"而非"请审核这份招股书"。
### 2. 看什么(业务语言)
用业务语言描述目标字段,而非系统内部编码。
- ✅ "注册资本"
- ❌ 拼音缩写或数据库字段名
### 3. 怎么判SOP 可执行化)
将业务 SOP 转化为可执行的判断条件。
- ✅ "发行总股本以'股'为单位,若以'万股'为单位则标注异常"
- ❌ "检查发行总股本的单位"
## 与通用 Prompt Engineering 的区别
| 维度 | 通用 PE | 金融好需求工程 |
|------|---------|---------------|
| 重点 | 角色/格式/示例 | 范围/字段/规则 |
| 业务知识 | 靠模型理解 | 显式编码进 prompt |
| 可审核性 | 低 | 高(每条规则可单独验证) |
## 关键洞察
许多项目一开始就失败,不是因为大模型太笨,而是业务知识与经验没有进入上下文。
## 参考
- [[financial-llm-practice-2026|金融行业大模型落地实践]]
- [[context-engineering]]
- [[financial-llm-model-selection]]