Rectification dropped tool.activity started events and treated length finishes as completed. Share generation settings with consultation, keep the activity line through streaming, and name multi-domain chart calculation. Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
681 B
TypeScript
12 lines
681 B
TypeScript
export const CONSULTATION_LOADING_METHOD_LABEL = "正在读取印度占星分析规则…";
|
|
export const CONSULTATION_CHART_CALCULATION_LABEL = "正在计算本命盘…";
|
|
export const CONSULTATION_EVIDENCE_VALIDATION_LABEL = "正在核对可用证据…";
|
|
export const CONSULTATION_COMPOSING_LABEL = "正在组织回答…";
|
|
export const CONSULTATION_DONE_SKILL_LABEL = "读取分析方法";
|
|
export const CONSULTATION_DONE_CHART_LABEL = "计算本命盘";
|
|
|
|
export function chartCalculationProgressLabel(current: number, total: number): string {
|
|
if (total <= 1) return CONSULTATION_CHART_CALCULATION_LABEL;
|
|
return `正在计算本命盘(第 ${current}/${total} 项)…`;
|
|
}
|