- 用户域:注册/登录(JWT)/修改密码/个人资料 - 照片/衣橱/身形/化身:上传存储 + 3D 化身模板匹配 - 穿搭生成:天气(高德+和风+缓存) → 规则预筛 → LLM 规划(1次调用) → 规则评分(5维100分制) → 全低分触发 LLM 兜底创作 → 异步任务状态机 - 效果图:选主方案后异步生成 3 视角(mock/wanx 供应商 + 内容 hash 缓存 + 每日限额) - 商业化:合作门店列表(seed 4 家) - 冒烟:全链路端到端验证通过(mock LLM/天气),23 个 API 端点 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
25 lines
659 B
Go
25 lines
659 B
Go
package scoring
|
|
|
|
// WardrobeItem 评分用服装条目(从衣橱 entity 转换)
|
|
type WardrobeItem struct {
|
|
Category string // 上衣/下装/鞋/配饰
|
|
Season string // 春/夏/秋/冬/四季
|
|
ColorInfo string // 如 #RRGGBB
|
|
StyleTags string
|
|
}
|
|
|
|
// CandidateOutfit 候选组合
|
|
type CandidateOutfit struct {
|
|
Items []WardrobeItem
|
|
HasOuterwear bool
|
|
}
|
|
|
|
// ScoreContext 评分上下文
|
|
type ScoreContext struct {
|
|
TempAvg int // 日期范围平均温度℃
|
|
Season string // 春/夏/秋/冬
|
|
Occasion string // 通勤/约会/聚会/运动
|
|
Weekday string // workday/weekend/holiday
|
|
StyleTags []string // 用户偏好标签
|
|
}
|