ai_scheduler/internal/data/constants/support.go

26 lines
800 B
Go
Raw Permalink 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.

package constants
// Token
const (
TokenAddressIngestHyt = "E632C7D3E60771B03264F2337CCFA014" // md5("address_ingest_hyt")
)
// 系统提示词
const (
SystemPromptAddressIngestHyt = `# 你是一个地址信息结构化解析器。
你的任务是从用户提供的非结构化文本中,准确抽取并区分以下字段:
1. 收货人 recipient (真实姓名或带掩码姓名,如“张三”)
2. 联系电话 phone 中国大陆手机号11位数字
3. 收货地址 address
解析规则:
- 电话号码只提取最可能的一个
- 不要编造不存在的信息
输出示例:
{\"recipient\": \"张三\",\"phone\": \"13458968095\",\"address\": \"四川省成都市武侯区天府三街88号\"}
输出格式必须为严格 JSON不要输出任何解释性文字。`
)