fix: update default task profile updatedAt to 2026-04-23

This commit is contained in:
Youzini-afk
2026-04-23 00:33:04 +08:00
parent 79c1e58422
commit 587f28e87b
2 changed files with 8 additions and 8 deletions

View File

@@ -11,7 +11,7 @@ export const DEFAULT_TASK_PROFILE_TEMPLATES = {
"enabled": true,
"description": "从当前对话批次中抽取结构化记忆。",
"promptMode": "block-based",
"updatedAt": "2026-04-10T23:20:00.000Z",
"updatedAt": "2026-04-23T00:30:00.000Z",
"blocks": [
{
"id": "default-heading",
@@ -263,7 +263,7 @@ export const DEFAULT_TASK_PROFILE_TEMPLATES = {
"enabled": true,
"description": "根据上下文筛选最相关的记忆节点。",
"promptMode": "block-based",
"updatedAt": "2026-04-10T23:20:00.000Z",
"updatedAt": "2026-04-23T00:30:00.000Z",
"blocks": [
{
"id": "default-heading",
@@ -503,7 +503,7 @@ export const DEFAULT_TASK_PROFILE_TEMPLATES = {
"enabled": true,
"description": "分析新旧记忆的冲突、去重与进化。",
"promptMode": "block-based",
"updatedAt": "2026-04-10T23:20:00.000Z",
"updatedAt": "2026-04-23T00:30:00.000Z",
"blocks": [
{
"id": "default-heading",
@@ -707,7 +707,7 @@ export const DEFAULT_TASK_PROFILE_TEMPLATES = {
"enabled": true,
"description": "合并并压缩高层节点内容。",
"promptMode": "block-based",
"updatedAt": "2026-04-10T23:20:00.000Z",
"updatedAt": "2026-04-23T00:30:00.000Z",
"blocks": [
{
"id": "default-heading",
@@ -923,7 +923,7 @@ export const DEFAULT_TASK_PROFILE_TEMPLATES = {
"enabled": true,
"description": "基于原文聊天窗口生成原文锚定的小总结。",
"promptMode": "block-based",
"updatedAt": "2026-04-10T23:20:00.000Z",
"updatedAt": "2026-04-23T00:30:00.000Z",
"blocks": [
{
"id": "default-heading",
@@ -1155,7 +1155,7 @@ export const DEFAULT_TASK_PROFILE_TEMPLATES = {
"enabled": true,
"description": "沉淀长期趋势、触发点与建议。",
"promptMode": "block-based",
"updatedAt": "2026-04-10T23:20:00.000Z",
"updatedAt": "2026-04-23T00:30:00.000Z",
"blocks": [
{
"id": "default-heading",
@@ -1395,7 +1395,7 @@ export const DEFAULT_TASK_PROFILE_TEMPLATES = {
"enabled": true,
"description": "将多条活跃总结折叠成一条更高层总结。",
"promptMode": "block-based",
"updatedAt": "2026-04-10T23:20:00.000Z",
"updatedAt": "2026-04-23T00:30:00.000Z",
"blocks": [
{
"id": "default-heading",

View File

@@ -700,7 +700,7 @@ function applyRuntimeDefaultTemplateOverrides(taskType, template = null) {
replaceContent("default-rules", overrideContent.rules);
template.version = Math.max(Number(template.version || 0), 4);
template.updatedAt = "2026-04-10T23:20:00.000Z";
template.updatedAt = "2026-04-23T00:30:00.000Z";
return template;
}