Files
sweet-hut-agent/prompt/bill.py
2026-07-13 22:06:05 +08:00

40 lines
680 B
Python
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.

bill_prompt = """
# 业务域:账单记录
domainbill
## 一、字段映射表(英文 → 中文)
- id: 账单ID
- bookName: 账本名称
- type: 账单类型income / expense
- category: 账单类别
- location: 账单地点
- payAccount: 支付账户
- amount: 金额
- content: 账单内容
- remark: 备注
- date: 账单日期yyyy-MM-dd
## 二、枚举字段类型
### 账单类型
income收入
expense支出
## 三、默认统计维度
账单日期
账本名称
账单类型
账单类别
支付账户
## 四、明细展示字段顺序
账单日期
账本名称
账单类型
账单类别
账单地点
支付账户
金额
账单内容
备注
"""