- Added `ThresholdRepository` for managing customer loss threshold configurations and notifications. - Introduced `threshold_service` to handle loss threshold alerts based on customer portfolio performance. - Enhanced `customer_prompts` to include new intent for querying product net values. - Updated `customer_service` to integrate new threshold alert functionality into existing workflows. - Implemented `sanitize_postprocess` for improved compliance handling in customer interactions. - Enhanced course documentation to reflect updates in advisor training modules and interactive elements. This update significantly improves the customer experience by providing proactive loss threshold notifications and enhancing the overall service framework.
40 lines
2.1 KiB
SQL
40 lines
2.1 KiB
SQL
-- CS Wave 3 · R1 手工验收种子(CUST-9527)
|
||
-- 用途:验证 render_profile_context Top-K + TTL 注入(默认 K=3 · TTL=90d)
|
||
-- 执行:python scripts/dev/run_sql_file.py scripts/agent/seed-customer-profile-l1-r1-demo.sql
|
||
-- 前置:jinrong_agent 已建表(01-mysql-共用底座.sql);Core CUST-9527 已由 scripts/core/reset.ps1 灌入
|
||
-- 灌后:DEL profile:l1:CUST-9527(Redis)或等 10min TTL,避免读到旧热缓存
|
||
|
||
USE jinrong_agent;
|
||
|
||
INSERT INTO customer_profile_l1 (customer_id, style_tags, version, updated_by)
|
||
VALUES (
|
||
'CUST-9527',
|
||
JSON_OBJECT(
|
||
'basic', JSON_OBJECT(
|
||
'city', JSON_OBJECT('value', '上海', 'source', 'user_declared', 'confidence', 0.9)
|
||
),
|
||
'investment', JSON_OBJECT(
|
||
'product_preferences', JSON_OBJECT(
|
||
'value', JSON_ARRAY('货币基金', '债券基金', '指数基金', '混合基金', 'QDII基金'),
|
||
'source', 'user_declared',
|
||
'confidence', 0.92,
|
||
'items_meta', JSON_OBJECT(
|
||
'货币基金', JSON_OBJECT('updated_at', '2026-09-10T08:00:00', 'mention_count', 5, 'confidence', 0.95),
|
||
'债券基金', JSON_OBJECT('updated_at', '2026-09-09T10:00:00', 'mention_count', 3, 'confidence', 0.90),
|
||
'指数基金', JSON_OBJECT('updated_at', '2020-01-01T10:00:00', 'mention_count', 8, 'confidence', 0.99),
|
||
'混合基金', JSON_OBJECT('updated_at', '2026-08-01T10:00:00', 'mention_count', 1, 'confidence', 0.70),
|
||
'QDII基金', JSON_OBJECT('updated_at', '2026-09-08T12:00:00', 'mention_count', 2, 'confidence', 0.85)
|
||
)
|
||
),
|
||
'horizon', JSON_OBJECT('value', '1-3年', 'source', 'user_declared', 'confidence', 0.88)
|
||
),
|
||
'threshold_pref_summary', JSON_OBJECT('value', '亏损10%提醒', 'source', 'user_declared', 'confidence', 0.97)
|
||
),
|
||
1,
|
||
'customer_agent'
|
||
)
|
||
ON DUPLICATE KEY UPDATE
|
||
style_tags = VALUES(style_tags),
|
||
version = version + 1,
|
||
updated_by = 'customer_agent';
|