| 1234567891011121314151617181920212223 |
- package extractor
- // ContactInfo 提取出的联系方式
- type ContactInfo struct {
- TgUsername string `json:"tg_username"` // TG用户名 (不含@)
- TgLink string `json:"tg_link"` // t.me/xxx 链接
- Website string `json:"website"`
- Email string `json:"email"`
- Phone string `json:"phone"`
- WeChat string `json:"wechat"`
- HasContact bool `json:"has_contact"` // 是否包含任何联系方式
- }
- // MerchantInfo LLM 解析出的商户信息
- type MerchantInfo struct {
- MerchantName string `json:"merchant_name"`
- TgUsername string `json:"tg_username"`
- Website string `json:"website"`
- Email string `json:"email"`
- Phone string `json:"phone"`
- Industry string `json:"industry"`
- Description string `json:"description"`
- }
|