998 lines
508 KiB
HTML
998 lines
508 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Bitable Records - Interactive View</title>
|
||
<style>
|
||
:root {
|
||
--bg-color: #f8fafc;
|
||
--text-color: #334155;
|
||
--card-bg: #ffffff;
|
||
--border-color: #e2e8f0;
|
||
--accent-color: #3b82f6;
|
||
--hover-bg: #f1f5f9;
|
||
--tag-bg: #e0e7ff;
|
||
--tag-text: #3730a3;
|
||
--text-muted: #64748b;
|
||
}
|
||
body {
|
||
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
||
background-color: var(--bg-color);
|
||
color: var(--text-color);
|
||
margin: 0;
|
||
padding: 40px 20px;
|
||
line-height: 1.5;
|
||
}
|
||
.container {
|
||
max-width: 1200px;
|
||
margin: 0 auto;
|
||
background: var(--card-bg);
|
||
border-radius: 12px;
|
||
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
||
padding: 30px;
|
||
border: 1px solid var(--border-color);
|
||
}
|
||
h1 {
|
||
text-align: center;
|
||
font-weight: 700;
|
||
margin-bottom: 30px;
|
||
font-size: 28px;
|
||
color: #0f172a;
|
||
}
|
||
.toolbar {
|
||
display: flex;
|
||
gap: 12px;
|
||
margin-bottom: 24px;
|
||
padding: 16px;
|
||
background: #f8fafc;
|
||
border: 1px solid var(--border-color);
|
||
border-radius: 8px;
|
||
flex-wrap: wrap;
|
||
align-items: center;
|
||
}
|
||
.toolbar input, .toolbar select, .toolbar button {
|
||
padding: 8px 12px;
|
||
border: 1px solid #cbd5e1;
|
||
border-radius: 6px;
|
||
font-size: 14px;
|
||
outline: none;
|
||
background: white;
|
||
}
|
||
.toolbar input {
|
||
flex-grow: 1;
|
||
min-width: 200px;
|
||
}
|
||
.toolbar input:focus, .toolbar select:focus {
|
||
border-color: var(--accent-color);
|
||
box-shadow: 0 0 0 2px #dbeafe;
|
||
}
|
||
.toolbar button {
|
||
cursor: pointer;
|
||
font-weight: 500;
|
||
transition: background 0.2s;
|
||
}
|
||
.toolbar button:hover {
|
||
background: var(--hover-bg);
|
||
}
|
||
|
||
.tabs {
|
||
display: flex;
|
||
border-bottom: 2px solid var(--border-color);
|
||
margin-bottom: 20px;
|
||
gap: 8px;
|
||
overflow-x: auto;
|
||
}
|
||
.tab {
|
||
padding: 10px 20px;
|
||
cursor: pointer;
|
||
background: transparent;
|
||
border: none;
|
||
border-bottom: 2px solid transparent;
|
||
margin-bottom: -2px;
|
||
font-weight: 500;
|
||
color: var(--text-muted);
|
||
transition: all 0.2s;
|
||
white-space: nowrap;
|
||
}
|
||
.tab:hover {
|
||
color: var(--text-color);
|
||
background: var(--hover-bg);
|
||
border-radius: 6px 6px 0 0;
|
||
}
|
||
.tab.active {
|
||
color: var(--accent-color);
|
||
border-bottom-color: var(--accent-color);
|
||
}
|
||
|
||
ul.tree {
|
||
list-style-type: none;
|
||
padding-left: 0;
|
||
margin: 0;
|
||
}
|
||
ul.tree ul {
|
||
list-style-type: none;
|
||
padding-left: 28px;
|
||
border-left: 2px solid #cbd5e1;
|
||
margin-left: 14px;
|
||
margin-top: 4px;
|
||
}
|
||
li { margin: 6px 0; }
|
||
.node-content {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
padding: 10px 14px;
|
||
background: #ffffff;
|
||
border: 1px solid var(--border-color);
|
||
border-radius: 6px;
|
||
transition: all 0.2s ease;
|
||
box-shadow: 0 1px 2px rgba(0,0,0,0.02);
|
||
}
|
||
.node-content:hover {
|
||
background: var(--hover-bg);
|
||
border-color: #cbd5e1;
|
||
}
|
||
.dimmed .node-content {
|
||
opacity: 0.5;
|
||
background: #f8fafc;
|
||
}
|
||
details { margin-bottom: 6px; }
|
||
summary {
|
||
list-style: none;
|
||
cursor: pointer;
|
||
display: block;
|
||
user-select: none;
|
||
outline: none;
|
||
}
|
||
summary::-webkit-details-marker { display: none; }
|
||
.toggle-icon {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
width: 24px;
|
||
height: 24px;
|
||
margin-right: 8px;
|
||
color: #94a3b8;
|
||
transition: transform 0.2s ease;
|
||
font-family: monospace;
|
||
font-size: 14px;
|
||
}
|
||
details[open] > summary .toggle-icon {
|
||
transform: rotate(90deg);
|
||
color: var(--accent-color);
|
||
}
|
||
.task-left {
|
||
display: flex;
|
||
align-items: center;
|
||
flex-grow: 1;
|
||
min-width: 0;
|
||
}
|
||
.task-title {
|
||
font-weight: 600;
|
||
font-size: 15px;
|
||
color: #1e293b;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
margin-right: 16px;
|
||
}
|
||
.task-meta {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 16px;
|
||
flex-shrink: 0;
|
||
font-size: 13px;
|
||
color: var(--text-muted);
|
||
}
|
||
.meta-item {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
}
|
||
.avatar {
|
||
width: 20px;
|
||
height: 20px;
|
||
border-radius: 50%;
|
||
background: #e2e8f0;
|
||
display: inline-block;
|
||
vertical-align: middle;
|
||
object-fit: cover;
|
||
}
|
||
.tags {
|
||
display: flex;
|
||
gap: 6px;
|
||
align-items: center;
|
||
}
|
||
.tag {
|
||
background: var(--tag-bg);
|
||
color: var(--tag-text);
|
||
padding: 2px 8px;
|
||
border-radius: 12px;
|
||
font-weight: 600;
|
||
font-size: 12px;
|
||
white-space: nowrap;
|
||
}
|
||
.empty-leaf {
|
||
padding-left: 32px;
|
||
}
|
||
.unnamed-task {
|
||
color: #94a3b8;
|
||
font-style: italic;
|
||
}
|
||
.stats {
|
||
font-size: 14px;
|
||
color: var(--text-muted);
|
||
margin-bottom: 12px;
|
||
text-align: right;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<h1>ALL IN AI</h1>
|
||
|
||
<div id="globalAiSummaryResult" style="display:none;margin-bottom:20px;padding:16px;background:#ffffff;border:1px solid #c4b5fd;border-left:4px solid #8b5cf6;border-radius:8px;font-size:14px;color:#4c1d95;white-space:pre-wrap;line-height:1.6;max-height:500px;overflow-y:auto;box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);"></div>
|
||
<div class="tabs" id="tabContainer"></div>
|
||
|
||
<div class="toolbar" id="toolbarFilters">
|
||
<input type="text" id="searchInput" placeholder="Search tasks...">
|
||
<div style="display:flex; align-items:center; gap:6px;">
|
||
<span style="font-size:14px;color:#64748b;">Date:</span>
|
||
<input type="date" id="dateFrom" title="Start Date">
|
||
<span style="color:#cbd5e1;">-</span>
|
||
<input type="date" id="dateTo" title="End Date">
|
||
</div>
|
||
<select id="statusFilter">
|
||
<option value="">All Statuses</option>
|
||
</select>
|
||
<select id="leaderFilter">
|
||
<option value="">All Leaders</option>
|
||
</select>
|
||
<select id="sortOrder">
|
||
<option value="default">Sort: Default</option>
|
||
<option value="startDate">Sort: Start Date</option>
|
||
<option value="priority">Sort: Priority</option>
|
||
</select>
|
||
<button id="toggleExpand">Toggle Expand All</button>
|
||
<button id="refreshData" style="background:#3b82f6;color:white;border:none;" onclick="window.refreshDataAPI()">🔄 Refresh</button>
|
||
</div>
|
||
|
||
<div class="stats" id="statsDisplay"></div>
|
||
<div id="summaryDisplay"></div>
|
||
<div id="aiSummaryResult" style="display:none;margin-bottom:16px;padding:16px;background:#ffffff;border:1px solid #bbf7d0;border-radius:8px;font-size:14px;color:#334155;white-space:pre-wrap;line-height:1.6;max-height:500px;overflow-y:auto;box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);"></div>
|
||
<div id="tree-container"></div>
|
||
</div>
|
||
|
||
<div id="settingsModal" style="display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5); z-index:9999; align-items:center; justify-content:center;">
|
||
<div style="background:white; padding:24px; border-radius:12px; width:600px; max-width:90%; max-height:90vh; overflow-y:auto; box-shadow:0 10px 25px rgba(0,0,0,0.2); max-height: 80vh;">
|
||
<h2 style="margin-top:0;">配置 AI 参数与 Prompts</h2>
|
||
|
||
<label style="display:block; margin-top:12px; font-weight:bold;">API Key</label>
|
||
<input type="text" id="settingApiKey" style="width:100%; padding:8px; margin-top:4px; border:1px solid #ccc; border-radius:4px; box-sizing: border-box;" />
|
||
|
||
<label style="display:block; margin-top:12px; font-weight:bold;">API Base URL <span style="font-weight:normal; font-size:12px; color:#64748b;">(如 https://api.openai.com/v1)</span></label>
|
||
<input type="text" id="settingApiUrl" style="width:100%; padding:8px; margin-top:4px; border:1px solid #ccc; border-radius:4px; box-sizing: border-box;" />
|
||
|
||
<label style="display:block; margin-top:12px; font-weight:bold;">Model <span style="font-weight:normal; font-size:12px; color:#64748b;">(如 gpt-4o, deepseek-chat)</span></label>
|
||
<input type="text" id="settingApiModel" style="width:100%; padding:8px; margin-top:4px; border:1px solid #ccc; border-radius:4px; box-sizing: border-box;" />
|
||
|
||
<label style="display:block; margin-top:12px; font-weight:bold;">System Prompt</label>
|
||
<textarea id="settingSystemPrompt" rows="3" style="width:100%; padding:8px; margin-top:4px; border:1px solid #ccc; border-radius:4px; font-family:inherit; box-sizing: border-box;"></textarea>
|
||
|
||
<label style="display:block; margin-top:12px; font-weight:bold;">Tab Prompt (Tab AI Summary)</label>
|
||
<textarea id="settingTabPrompt" rows="5" style="width:100%; padding:8px; margin-top:4px; border:1px solid #ccc; border-radius:4px; font-family:inherit; box-sizing: border-box;"></textarea>
|
||
|
||
<label style="display:block; margin-top:12px; font-weight:bold;">Global Prompt (Global AI Summary)</label>
|
||
<textarea id="settingGlobalPrompt" rows="5" style="width:100%; padding:8px; margin-top:4px; border:1px solid #ccc; border-radius:4px; font-family:inherit; box-sizing: border-box;"></textarea>
|
||
|
||
<div style="margin-top:20px; display:flex; justify-content:flex-end; gap:12px;">
|
||
<button onclick="document.getElementById('settingsModal').style.display='none'" style="padding:8px 16px; border:1px solid #ccc; background:white; cursor:pointer; border-radius:6px;">取消</button>
|
||
<button onclick="window.saveSettings()" style="padding:8px 16px; border:none; background:#3b82f6; color:white; cursor:pointer; border-radius:6px;">保存</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<script>
|
||
const defaultSystemPrompt = '你是一位资深项目负责人,擅长做简洁、高价值的工作汇报,突出结果与业务价值,而非技术细节。';
|
||
const defaultTabPrompt = `请将以下多个任务整理汇报摘要:\n要求:\n1. 每个任务用3-4行总结(须明确提及该任务相关的 TargetCustomers 目标客户信息)\n2. 最后增加【整体情况总结】:\n- 完成情况(完成/进行中)\n- 当前重点方向(包含核心目标客户的总体进展)\n\n输出结构:\n(多个任务总结)\n\n【整体情况总结】`;
|
||
const defaultGlobalPrompt = `请将以下来自多个部门/维度的表格任务进行全局大总结:\n要求:\n1. 按照不同的 Tab (即数据来源) 独立提取核心进展与问题。\n2. 特别留意并提炼出 TargetCustomers (目标客户) 的主要推行情况。\n3. 最后给出一个【全局统筹结论】,指出哪些方向正常,哪些可能存在延期或需要重点关注。\n4. 尽量言简意赅,不要只是把每一条数据罗列一遍,要有跨表分析和高层次的提炼。`;
|
||
|
||
const tabData = [{"name": "Agent Group", "records": [{"fields": {"End Date": null, "Estimate Deadline": 1761926400000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "重要紧急", "Progress notes": "1、研究A2A和MCP的结合", "Related Documents": null, "Start date": 1755532800000, "Status": "已完成", "Target Customers": null, "Task": "jarvis api Agent工具调用流程定义", "Task Description": "最新进展为研究A2A和MCP的结合。", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_008s_15741dea-586a-45fd-8c67-d818a8a4f9ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Dan", "id": "ou_aa338705186e82ebf264f16ec14bedbe", "name": "Dan"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "rec0oA6okm", "record_id": "rec0oA6okm"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "重要紧急", "Progress notes": "1. 基础版本已跑通,基于固定格式的输入已能正确识别并解析 2.在2.0版本中,在优化基于自然语言的输入\n2. 由于Dan已离职,随搁置,转为a2a_mcp_blackbox开发", "Related Documents": null, "Start date": 1755532800000, "Status": "已封存", "Target Customers": null, "Task": "jarvis api intent模块优化", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_008s_15741dea-586a-45fd-8c67-d818a8a4f9ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Dan", "id": "ou_aa338705186e82ebf264f16ec14bedbe", "name": "Dan"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recHwz6PGh", "record_id": "recHwz6PGh"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "重要不紧急", "Progress notes": "1. 已完成留个流程", "Related Documents": null, "Start date": 1755532800000, "Status": "已完成", "Target Customers": null, "Task": "agent SOP(研判)流程定义", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recFYZDsHt", "record_id": "recFYZDsHt"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "重要不紧急", "Progress notes": "1. 基于网安团队给予的数据已进行清洗,但数据量不够\n2.第一版数据已准备完成,已用于训练第一版模型;后续系统上线后会收集更多数据", "Related Documents": null, "Start date": 1755532800000, "Status": "进行中", "Target Customers": null, "Task": "MGM侵权数据集准备", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00e5_6f8e56a6-7dd3-4d72-876a-030414dda5bg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "李健民", "id": "ou_9e06973fd748fb1c99a41db24fbbced2", "name": "李健民"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "rect4NklCs", "record_id": "rect4NklCs"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "重要不紧急", "Progress notes": null, "Related Documents": null, "Start date": 1755532800000, "Status": "待开始", "Target Customers": null, "Task": "网安大模型训练", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "rec5CX9BZX", "record_id": "rec5CX9BZX"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "紧急", "Progress notes": null, "Related Documents": null, "Start date": 1755532800000, "Status": "已封存", "Target Customers": null, "Task": "jarvis memory模型开发", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_008s_15741dea-586a-45fd-8c67-d818a8a4f9ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Dan", "id": "ou_aa338705186e82ebf264f16ec14bedbe", "name": "Dan"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recKaLJlQS", "record_id": "recKaLJlQS"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "紧急", "Progress notes": null, "Related Documents": null, "Start date": 1755532800000, "Status": "已封存", "Target Customers": null, "Task": "Jarvis api用户鉴权开发", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_008s_15741dea-586a-45fd-8c67-d818a8a4f9ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Dan", "id": "ou_aa338705186e82ebf264f16ec14bedbe", "name": "Dan"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recFIE3n52", "record_id": "recFIE3n52"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "重要不紧急", "Progress notes": null, "Related Documents": null, "Start date": 1755532800000, "Status": "待开始", "Target Customers": null, "Task": "网安大模型测试", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuUiRgz0rIq1", "record_id": "recuUiRgz0rIq1"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "重要紧急", "Progress notes": "添加项目目标,分工完成项目开发", "Related Documents": null, "Start date": 1755532800000, "Status": "已完成", "Target Customers": null, "Task": "jarvis mcp blackbox开发", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuUiVsNWs63L", "record_id": "recuUiVsNWs63L"}, {"fields": {"End Date": null, "Estimate Deadline": 1756396800000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "重要紧急", "Progress notes": "已接入 微步工具;已接入机器学习模型;待接入历史数据(如有),服务器已搭建", "Related Documents": null, "Start date": 1755705600000, "Status": "已完成", "Target Customers": null, "Task": "美高梅项目ip风险mcp server开发", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuUv7bkuRin1", "record_id": "recuUv7bkuRin1"}, {"fields": {"End Date": null, "Estimate Deadline": 1756396800000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "重要紧急", "Progress notes": "1. 已完成yolo训练 2. 已完成基于playwright的网页截图功能实现 3. 已部署为mcp server", "Related Documents": null, "Start date": 1755705600000, "Status": "已完成", "Target Customers": null, "Task": "美高梅项目侵权检测mcp server开发", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00e5_6f8e56a6-7dd3-4d72-876a-030414dda5bg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "李健民", "id": "ou_9e06973fd748fb1c99a41db24fbbced2", "name": "李健民"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuUv7upjPTQl", "record_id": "recuUv7upjPTQl"}, {"fields": {"End Date": null, "Estimate Deadline": 1785513600000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "重要不紧急", "Progress notes": "1. 框架已搭建完成,待上线", "Related Documents": null, "Start date": 1756051200000, "Status": "已完成", "Target Customers": null, "Task": "开发基于LLM的入侵研判框架", "Task Description": "1. 需要开发一个实际场景下的多智能体网安告警处理系统", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuUR2oq2BBIe", "record_id": "recuUR2oq2BBIe"}, {"fields": {"End Date": null, "Estimate Deadline": 1764777600000, "Images": null, "Manday count": null, "Overdue": [{"text": "🚨 已延期", "type": "text"}], "Priority": "重要紧急", "Progress notes": "1. 已將項目代碼給SOC部署, 待協調部署及測試", "Related Documents": null, "Start date": 1760889600000, "Status": "进行中", "Target Customers": null, "Task": "CyberX-Agents初步環境部署", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv0N7cH6ZOq7", "record_id": "recv0N7cH6ZOq7"}, {"fields": {"End Date": null, "Estimate Deadline": 1766678400000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "重要紧急", "Progress notes": "1. 优化了chat流程(使其能更接近planner agent)", "Related Documents": null, "Start date": 1761494400000, "Status": "已完成", "Target Customers": null, "Task": "优化CyberX-Agents决策模块生成", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv0N7ryETRIT", "record_id": "recv0N7ryETRIT"}, {"fields": {"End Date": 1762444800000, "Estimate Deadline": 1762444800000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "重要紧急", "Progress notes": "1. IterResearch为开源,但是说了大概的流程,所以我们可以参考并自己构建", "Related Documents": "Tongyi deepsearch 调研", "Start date": 1761494400000, "Status": "已完成", "Target Customers": null, "Task": "IterResearch范式调研", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv0N822tMxha", "record_id": "recv0N822tMxha"}, {"fields": {"End Date": 1762444800000, "Estimate Deadline": 1762444800000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "紧急", "Progress notes": null, "Related Documents": null, "Start date": 1762272000000, "Status": "已完成", "Target Customers": null, "Task": "paddleocr vl 微调试验", "Task Description": "已完成试验数据集跑通,了解数据准备需求,本项目起码需要3000个以上的样本才能试验", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00e5_6f8e56a6-7dd3-4d72-876a-030414dda5bg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "李健民", "id": "ou_9e06973fd748fb1c99a41db24fbbced2", "name": "李健民"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2cCig6naen", "record_id": "recv2cCig6naen"}, {"fields": {"End Date": 1764345600000, "Estimate Deadline": 1764259200000, "Images": null, "Manday count": "10", "Overdue": [{"text": "🚨 已延期", "type": "text"}], "Priority": "重要不紧急", "Progress notes": "1. Research Methodology & Project Significance编写 @Tom\n2. Project Background & Collaboration编写 @Benson", "Related Documents": null, "Start date": 1763395200000, "Status": "已完成", "Target Customers": null, "Task": "CyberX-Agents Proposal编写", "Task Description": "完成以网安安全运营为垂直领域场景的MAS系统设计及实现的propopal,当中包含项目设计,方法论,及其领先性的内容编写", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00sb_2ddc23a5-afeb-40c4-852e-f13d49644c2g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Benson", "id": "ou_7c091d83db9f1dfecc90bcf3e640c453", "name": "Benson"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2RVWnC337s", "record_id": "recv2RVWnC337s"}, {"fields": {"End Date": null, "Estimate Deadline": 1764950400000, "Images": null, "Manday count": null, "Overdue": [{"text": "🚨 已延期", "type": "text"}], "Priority": "重要不紧急", "Progress notes": "1. 解构了对面项目的初始运行模式\n2. 已接受第一版邮件数据并进行处理脚本的编写\n3. 已写好第一部训练框架并尝试训练\n4. 优化了第一版训练框架,效果得到一定提升,后续移交测试\n\n相關文檔關聯到网络安全中心需求", "Related Documents": null, "Start date": 1763395200000, "Status": "进行中", "Target Customers": null, "Task": "网安钓鱼邮件模型或管线调研", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2TqItCkqXM", "record_id": "recv2TqItCkqXM"}, {"fields": {"End Date": null, "Estimate Deadline": 1764172800000, "Images": null, "Manday count": "1", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1763654400000, "Status": "已完成", "Target Customers": null, "Task": "CyberX-Agents 優化圖及相關文檔整理", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv3aOKhhyUFG", "record_id": "recv3aOKhhyUFG"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "重要不紧急", "Progress notes": "1. 新的数据已经发送给鹏城,现在等待鹏城准备好数据集之后开启下一轮训练", "Related Documents": null, "Start date": 1764000000000, "Status": "进行中", "Target Customers": null, "Task": "网安重点项目", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv3wALPmBYuR", "record_id": "recv3wALPmBYuR"}, {"fields": {"End Date": 1764259200000, "Estimate Deadline": 1764259200000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "重要不紧急", "Progress notes": "1. 已完成框架搭建\n2. 已针对数学数据集完成训练并评估,结论为对提示词调整有一点作用,但主要依赖于大模型本身能力", "Related Documents": null, "Start date": 1763913600000, "Status": "已完成", "Target Customers": null, "Task": "freegrpo框架调研", "Task Description": "free-grpo方法对于提示词构建有一定效果,但依赖于大模型本身能力,对于小b数模型完成复杂任务的话并没有任何提升,但如果模型本身具备一定能力的话则有一定效果", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv45sPL6Fmsm", "record_id": "recv45sPL6Fmsm"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": "Log Parser Survey", "Start date": 1768752000000, "Status": "已封存", "Target Customers": null, "Task": "SOC Log Parser / Grok Generator", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv463g7k8etG", "record_id": "recv463g7k8etG"}, {"fields": {"End Date": null, "Estimate Deadline": 1764518400000, "Images": null, "Manday count": "27", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "重要不紧急", "Progress notes": null, "Related Documents": "MGM - POC - VibeInvoice", "Start date": 1763568000000, "Status": "已完成", "Target Customers": null, "Task": "MGM Vibe Invoice", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}], "总结": null, "父记录": [{"record_ids": ["recv46ak0TJnf3"], "table_id": "tblHrT16lIrXrciy", "text": "Vibe invoice POC", "text_arr": ["Vibe invoice POC"], "type": "text"}]}, "id": "recv3aIfqVS5pj", "record_id": "recv3aIfqVS5pj"}, {"fields": {"End Date": 1772467200000, "Estimate Deadline": 1767283200000, "Images": null, "Manday count": "30", "Overdue": [{"text": "🚨 已延期", "type": "text"}], "Priority": null, "Progress notes": "1. Vibe invoice POC demo基本开发完成(前端显示 + qwen vl 235b a22b api调用 + 模拟后端处理)", "Related Documents": "MGM - POC - VibeInvoice", "Start date": 1764518400000, "Status": "已封存", "Target Customers": null, "Task": "Vibe invoice POC", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv46ak0TJnf3", "record_id": "recv46ak0TJnf3"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": "3", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770307200000, "Status": "已完成", "Target Customers": null, "Task": "测试开源OCR模型", "Task Description": "测试了Deepseek ocr和paddle ocr", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}], "总结": null, "父记录": [{"record_ids": ["recv46ak0TJnf3"], "table_id": "tblHrT16lIrXrciy", "text": "Vibe invoice POC", "text_arr": ["Vibe invoice POC"], "type": "text"}]}, "id": "recvargrpM5jVf", "record_id": "recvargrpM5jVf"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1769702400000, "Status": "已完成", "Target Customers": null, "Task": "调研workflow engine ", "Task Description": "选择自定义workflow engine", "Task leader": null, "总结": null, "父记录": [{"record_ids": ["recv46ak0TJnf3"], "table_id": "tblHrT16lIrXrciy", "text": "Vibe invoice POC", "text_arr": ["Vibe invoice POC"], "type": "text"}]}, "id": "recv9Ml4FHH68i", "record_id": "recv9Ml4FHH68i"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1769702400000, "Status": "已完成", "Target Customers": null, "Task": "成本估计(OCR,LLM,workflow enigne)", "Task Description": "测试了阿里云相关模型的成本", "Task leader": null, "总结": null, "父记录": [{"record_ids": ["recv46ak0TJnf3"], "table_id": "tblHrT16lIrXrciy", "text": "Vibe invoice POC", "text_arr": ["Vibe invoice POC"], "type": "text"}]}, "id": "recv9MkPFjCzGJ", "record_id": "recv9MkPFjCzGJ"}, {"fields": {"End Date": null, "Estimate Deadline": 1768492800000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": "1. 完成milvus数据库对接", "Related Documents": null, "Start date": 1766937600000, "Status": "已完成", "Target Customers": null, "Task": "autoark memory改造", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv6JbDzBhPqJ", "record_id": "recv6JbDzBhPqJ"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": "1. 完成mcp 工具添加\n2. 完成mcp工具选择接口\n3. 接入记忆模块", "Related Documents": null, "Start date": 1766937600000, "Status": "已完成", "Target Customers": null, "Task": "autoark eva agent", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv6JcZvvm3y8", "record_id": "recv6JcZvvm3y8"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": "40", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": "1. 修改system prompt和新增tools,用于修改description,启动rdagent,获取任务数据等\n2. 增加数据库,用于保存历史对话记录和历史description\n3. 增加上传文件模块", "Related Documents": "RDAgent 设计", "Start date": 1764518400000, "Status": "进行中", "Target Customers": null, "Task": "autoark RDAgent", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv45qmhTL5Hc", "record_id": "recv45qmhTL5Hc"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": "1. 完成框架调研", "Related Documents": null, "Start date": 1767888000000, "Status": "进行中", "Target Customers": null, "Task": "memory通用框架设计", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv7NqreTQuPi", "record_id": "recv7NqreTQuPi"}, {"fields": {"End Date": null, "Estimate Deadline": 1770393600000, "Images": null, "Manday count": null, "Overdue": [{"text": "🚨 已延期", "type": "text"}], "Priority": null, "Progress notes": "1. 完成了一些基础类和方法", "Related Documents": null, "Start date": 1768752000000, "Status": "进行中", "Target Customers": null, "Task": "CyberX-Agents重构", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv97jAbie59A", "record_id": "recv97jAbie59A"}, {"fields": {"End Date": null, "Estimate Deadline": 1769097600000, "Images": null, "Manday count": "3", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": "Nvidia DGX Spark", "Start date": 1769097600000, "Status": "已完成", "Target Customers": null, "Task": "Nvidia DGX Spark", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv97jGMFZ5IE", "record_id": "recv97jGMFZ5IE"}, {"fields": {"End Date": null, "Estimate Deadline": 1770307200000, "Images": null, "Manday count": "0.5", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1769097600000, "Status": "已完成", "Target Customers": null, "Task": "Log Parser 需際需求討論", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv97n4jYGfVu", "record_id": "recv97n4jYGfVu"}, {"fields": {"End Date": null, "Estimate Deadline": 1769788800000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1769097600000, "Status": "已完成", "Target Customers": null, "Task": "Log Parser survey & 初步構思", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recv97n4jYGfVu"], "table_id": "tblHrT16lIrXrciy", "text": "Log Parser 需際需求討論", "text_arr": ["Log Parser 需際需求討論"], "type": "text"}]}, "id": "recv97n29RFV3k", "record_id": "recv97n29RFV3k"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1774281600000, "Status": null, "Target Customers": null, "Task": "Log Parser 需際需求討論", "Task Description": null, "Task leader": null, "总结": null, "父记录": [{"record_ids": ["recv97n4jYGfVu"], "table_id": "tblHrT16lIrXrciy", "text": "Log Parser 需際需求討論", "text_arr": ["Log Parser 需際需求討論"], "type": "text"}]}, "id": "recveKFGbUSHZF", "record_id": "recveKFGbUSHZF"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1774281600000, "Status": null, "Target Customers": null, "Task": "Log Parser PoC", "Task Description": null, "Task leader": null, "总结": null, "父记录": [{"record_ids": ["recv97n4jYGfVu"], "table_id": "tblHrT16lIrXrciy", "text": "Log Parser 需際需求討論", "text_arr": ["Log Parser 需際需求討論"], "type": "text"}]}, "id": "recveKFGbU2lQ6", "record_id": "recveKFGbU2lQ6"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": "[STALLED] waiting for testing data", "Related Documents": null, "Start date": 1770652800000, "Status": "已封存", "Target Customers": null, "Task": "Log Parser PoC", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv97ne1F45EW", "record_id": "recv97ne1F45EW"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": "MultiAgent Code Review", "Related Documents": null, "Start date": 1769961600000, "Status": "进行中", "Target Customers": null, "Task": "Google A2A", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recva2DVZZYuKS", "record_id": "recva2DVZZYuKS"}, {"fields": {"End Date": null, "Estimate Deadline": 1770307200000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1769961600000, "Status": "已完成", "Target Customers": null, "Task": "Google A2A survey", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recva2E0X4vN6q", "record_id": "recva2E0X4vN6q"}, {"fields": {"End Date": null, "Estimate Deadline": 1773936000000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770652800000, "Status": "已完成", "Target Customers": null, "Task": "了解 & Review Steven A2A and MCP Framework MultiAgent codebase ", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recva2E3rCPv04", "record_id": "recva2E3rCPv04"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "待开始", "Target Customers": null, "Task": "團隊知識庫文件夾整理", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvapqzosnmW7", "record_id": "recvapqzosnmW7"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "待开始", "Target Customers": null, "Task": "文件 / 代碼規範", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recvapqzosnmW7"], "table_id": "tblHrT16lIrXrciy", "text": "團隊知識庫文件夾整理", "text_arr": ["團隊知識庫文件夾整理"], "type": "text"}]}, "id": "recvasaycxBFkJ", "record_id": "recvasaycxBFkJ"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "待开始", "Target Customers": null, "Task": "飛書文件夾", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recvapqzosnmW7"], "table_id": "tblHrT16lIrXrciy", "text": "團隊知識庫文件夾整理", "text_arr": ["團隊知識庫文件夾整理"], "type": "text"}]}, "id": "recvasav40Rg5y", "record_id": "recvasav40Rg5y"}, {"fields": {"End Date": null, "Estimate Deadline": 1770739200000, "Images": null, "Manday count": "16", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": "1. 微信公众号的个人公众号与企业公众号channle调通\n2. 能动态生成openclaw docker\n3. 完成用户注册、验证与docker 绑定并沟通的功能\n4. 重点完成了openclaw 主动推送用户消息的功能", "Related Documents": null, "Start date": 1769961600000, "Status": "已完成", "Target Customers": null, "Task": "博维版OpenClaw首发", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvarlowuPsbI", "record_id": "recvarlowuPsbI"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已封存", "Target Customers": null, "Task": "AG2 (formerly AutoGen, community version)", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvas9ep32ZmQ", "record_id": "recvas9ep32ZmQ"}, {"fields": {"End Date": null, "Estimate Deadline": 1770912000000, "Images": null, "Manday count": "0.5", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770912000000, "Status": "已完成", "Target Customers": null, "Task": "slide material for pre-sales team", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvasb9EZcLUx", "record_id": "recvasb9EZcLUx"}, {"fields": {"End Date": null, "Estimate Deadline": 1773936000000, "Images": null, "Manday count": null, "Overdue": [{"text": "🚨 已延期", "type": "text"}], "Priority": "重要不紧急", "Progress notes": "从几个维度去测试OpenClaw\n1. 不同模型下的能力\n2. 不同Skills的工具制作(以机械臂控制及论文搜索)\n3. 详细日志的捉取", "Related Documents": null, "Start date": 1770480000000, "Status": "进行中", "Target Customers": null, "Task": "OpenClaw能力边界测试", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00sb_2ddc23a5-afeb-40c4-852e-f13d49644c2g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Benson", "id": "ou_7c091d83db9f1dfecc90bcf3e640c453", "name": "Benson"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvaCkFJibxWf", "record_id": "recvaCkFJibxWf"}, {"fields": {"End Date": 1773331200000, "Estimate Deadline": null, "Images": null, "Manday count": "7", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": "智能文件處理與工作流 Meeting Minutes (Feb 6, 2026)", "Related Documents": "智能文件處理與工作流 Meeting Minutes (Feb 6, 2026)", "Start date": 1770825600000, "Status": "已完成", "Target Customers": null, "Task": "Tax-form layout detection", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvb6bJLR8mzG", "record_id": "recvb6bJLR8mzG"}, {"fields": {"End Date": 1770998400000, "Estimate Deadline": null, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770652800000, "Status": "已完成", "Target Customers": null, "Task": "DocLayout-YOLO, \nPP-DocLayoutV3, surya, commonfields, dots.ocr 環境部署及初步測試", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recvb6bJLR8mzG"], "table_id": "tblHrT16lIrXrciy", "text": "Tax-form layout detection", "text_arr": ["Tax-form layout detection"], "type": "text"}]}, "id": "recvcLtOjr7l8u", "record_id": "recvcLtOjr7l8u"}, {"fields": {"End Date": 1772726400000, "Estimate Deadline": 1773331200000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772467200000, "Status": "已完成", "Target Customers": null, "Task": "dots.ocr-1.5 部署及測試", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recvb6bJLR8mzG"], "table_id": "tblHrT16lIrXrciy", "text": "Tax-form layout detection", "text_arr": ["Tax-form layout detection"], "type": "text"}]}, "id": "recvcLubXA9S6d", "record_id": "recvcLubXA9S6d"}, {"fields": {"End Date": 1773158400000, "Estimate Deadline": 1773417600000, "Images": null, "Manday count": "2", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1773072000000, "Status": "已完成", "Target Customers": null, "Task": "封裝 surya & dots.ocr-1.5 成 API 接口", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recvb6bJLR8mzG"], "table_id": "tblHrT16lIrXrciy", "text": "Tax-form layout detection", "text_arr": ["Tax-form layout detection"], "type": "text"}]}, "id": "recvd4ZARtvQ6j", "record_id": "recvd4ZARtvQ6j"}, {"fields": {"End Date": 1772553600000, "Estimate Deadline": null, "Images": null, "Manday count": "10", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770998400000, "Status": "已完成", "Target Customers": null, "Task": "SOC登录页面检测agent", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvbdbrSu4WuP", "record_id": "recvbdbrSu4WuP"}, {"fields": {"End Date": 1772121600000, "Estimate Deadline": 1772121600000, "Images": null, "Manday count": "4", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "重要紧急", "Progress notes": null, "Related Documents": null, "Start date": 1771862400000, "Status": "已完成", "Target Customers": null, "Task": "网站风险评估 流程 与完善", "Task Description": null, "Task leader": null, "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvcvY1F8VPAS", "record_id": "recvcvY1F8VPAS"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772726400000, "Status": "进行中", "Target Customers": null, "Task": "Matrix & OpenClaw调研", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvd53WFxN4VU", "record_id": "recvd53WFxN4VU"}, {"fields": {"End Date": 1772812800000, "Estimate Deadline": null, "Images": null, "Manday count": "1", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772726400000, "Status": "已完成", "Target Customers": null, "Task": "opencaw连接飞书", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}], "总结": null, "父记录": [{"record_ids": ["recvd53WFxN4VU"], "table_id": "tblHrT16lIrXrciy", "text": "Matrix & OpenClaw调研", "text_arr": ["Matrix & OpenClaw调研"], "type": "text"}]}, "id": "recvd56dK809i5", "record_id": "recvd56dK809i5"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772726400000, "Status": "进行中", "Target Customers": null, "Task": "Matrix 连接openclaw", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}], "总结": null, "父记录": [{"record_ids": ["recvd53WFxN4VU"], "table_id": "tblHrT16lIrXrciy", "text": "Matrix & OpenClaw调研", "text_arr": ["Matrix & OpenClaw调研"], "type": "text"}]}, "id": "recvd548GH1PhZ", "record_id": "recvd548GH1PhZ"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772726400000, "Status": "进行中", "Target Customers": null, "Task": "Element Web", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}], "总结": null, "父记录": [{"record_ids": ["recvd53WFxN4VU"], "table_id": "tblHrT16lIrXrciy", "text": "Matrix & OpenClaw调研", "text_arr": ["Matrix & OpenClaw调研"], "type": "text"}]}, "id": "recvd541hLogXW", "record_id": "recvd541hLogXW"}, {"fields": {"End Date": null, "Estimate Deadline": 1774886400000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772726400000, "Status": "进行中", "Target Customers": null, "Task": "Boardwareclaw 2.0计划", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00b3_fa696abf-a3ef-49a2-baf6-448def5eeb9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "谭鹏程", "id": "ou_e8af30f5c2183bce3537b5bc6404845a", "name": "谭鹏程"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvd5ZlfAnjZm", "record_id": "recvd5ZlfAnjZm"}, {"fields": {"End Date": null, "Estimate Deadline": 1773331200000, "Images": null, "Manday count": "3", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1773158400000, "Status": "已完成", "Target Customers": null, "Task": "OpenClaw安裝及測試", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvdZnZR0S8cr", "record_id": "recvdZnZR0S8cr"}, {"fields": {"End Date": 1773936000000, "Estimate Deadline": null, "Images": null, "Manday count": "1", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": "Email DLP AI Agent", "Related Documents": null, "Start date": 1773849600000, "Status": "已完成", "Target Customers": null, "Task": "SOC Email DLP Classification\n", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvecQVLLN6oK", "record_id": "recvecQVLLN6oK"}, {"fields": {"End Date": 1773590400000, "Estimate Deadline": 1773590400000, "Images": null, "Manday count": "0.5", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": "重要紧急", "Progress notes": "1. 已完成并交付", "Related Documents": null, "Start date": 1773590400000, "Status": "已完成", "Target Customers": null, "Task": "帮frankie处理了700+侵权图片识别任务", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recveoY6vhBall", "record_id": "recveoY6vhBall"}, {"fields": {"End Date": 1774540800000, "Estimate Deadline": null, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1774195200000, "Status": "进行中", "Target Customers": null, "Task": "Agent Skill Progressive Disclosure", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recveVWaW5UWoT", "record_id": "recveVWaW5UWoT"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1774454400000, "Status": "待开始", "Target Customers": null, "Task": "OpenClaw & OpenClaw-RL", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recveVWiuW8O3z", "record_id": "recveVWiuW8O3z"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1774540800000, "Status": "进行中", "Target Customers": null, "Task": "AI 机器人实现与agent sandbox的集成", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvf3IJTt9jN6", "record_id": "recvf3IJTt9jN6"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ 正常", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1774540800000, "Status": "进行中", "Target Customers": null, "Task": "帕金森图像识别任务", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblHrT16lIrXrciy", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvf3J2IzCJ4s", "record_id": "recvf3J2IzCJ4s"}]}, {"name": "AI-Native Group", "records": [{"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1757001600000, "Status": "已封存", "Target Customers": null, "Task": "vllm 前端可选模型", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": "前端重构", "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuVTSzIyFAm8", "record_id": "recuVTSzIyFAm8"}, {"fields": {"End Date": 1757520000000, "Estimate Deadline": null, "Manday count": 0, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1757433600000, "Status": "已完成", "Target Customers": null, "Task": "tts 应用增加", "Task Description": "1. 添加melo-tts", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": ["recuVTW8PoJsFZ", "recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "helm 一键部署melo tts,OCDP平台建设", "text_arr": ["helm 一键部署melo tts", "OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuVTSRQPV905", "record_id": "recuVTSRQPV905"}, {"fields": {"End Date": 1757520000000, "Estimate Deadline": null, "Manday count": 5, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1757001600000, "Status": "已完成", "Target Customers": null, "Task": "推理测试结果整合", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuVTT35XpC1F", "record_id": "recuVTT35XpC1F"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已封存", "Target Customers": null, "Task": "阻塞helm install", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuVU1iz793PS", "record_id": "recuVU1iz793PS"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已封存", "Target Customers": null, "Task": "隐藏前端token", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuVU1OHgyMYg", "record_id": "recuVU1OHgyMYg"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已封存", "Target Customers": null, "Task": "前端应用显示信息(access url & description)", "Task Description": "1.指定service name,获取动态分配的port;\n2.进阶显示应用帮助信息\n3.选择性显示log信息,(特别是code-server 和 jupyter 的 token)", "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuVU1VGQgJJK", "record_id": "recuVU1VGQgJJK"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已封存", "Target Customers": null, "Task": "前端应用名称转义解决", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuVU2fdljfdq", "record_id": "recuVU2fdljfdq"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "edgetts 和 melotts 应用", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": ["recuVTSRQPV905"], "table_id": "tblJR2WjY69BU7bK", "text": "tts 应用增加", "text_arr": ["tts 应用增加"], "type": "text"}]}, "id": "recuWgIbljTBTI", "record_id": "recuWgIbljTBTI"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "头脑风暴", "Target Customers": null, "Task": "Applications计量功能", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuWn4TmxunW1", "record_id": "recuWn4TmxunW1"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "头脑风暴", "Target Customers": null, "Task": "自动分发新模型GitOps功能", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuWn5bn9StZk", "record_id": "recuWn5bn9StZk"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "头脑风暴", "Target Customers": null, "Task": "自动分发新推理应用和模型-概念ppt内容", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuWn5dXD4BBR", "record_id": "recuWn5dXD4BBR"}, {"fields": {"End Date": 1757174400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1757001600000, "Status": "已完成", "Target Customers": null, "Task": "同时创建多个应用实例", "Task Description": "releaseName 不重复冲突", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuWn5zuhhCqx", "record_id": "recuWn5zuhhCqx"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1757865600000, "Status": "已封存", "Target Customers": null, "Task": "HAMi 虚拟化GPU", "Task Description": "1. 解决虚拟化后不能分布式的问题", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuWyZohswSf0", "record_id": "recuWyZohswSf0"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "规范统一helm chart", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuWz1ZBvkc4F", "record_id": "recuWz1ZBvkc4F"}, {"fields": {"End Date": 1757433600000, "Estimate Deadline": null, "Manday count": 4, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1757347200000, "Status": "已完成", "Target Customers": null, "Task": "不同命名空间使用同一个secret 和pv", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuWz84iO8m4Z", "record_id": "recuWz84iO8m4Z"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "暂停滞", "Target Customers": null, "Task": "gitea github代码同步", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuXvorsZ42nL", "record_id": "recuXvorsZ42nL"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已封存", "Target Customers": null, "Task": "argo cd, flux cd测评对比", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuY9pwn82RYe", "record_id": "recuY9pwn82RYe"}, {"fields": {"End Date": 1761840000000, "Estimate Deadline": null, "Manday count": 5, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": {"link": "https://cv0ujbh7wf2.feishu.cn/docx/THibdpMyqoBycEx8yXbcmgZ6nAd?from=from_copylink", "text": "K8S安装记录"}, "Start date": 1761494400000, "Status": "已完成", "Target Customers": null, "Task": "天案云k8s安装", "Task Description": "1.基于kubeadm进行安装", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": ["recv15IWSr54BZ"], "table_id": "tblZRMr82RaQjfJS", "text": "k8s 相关", "text_arr": ["k8s 相关"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv14ostkZPtz", "record_id": "recv14ostkZPtz"}, {"fields": {"End Date": 1761667200000, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1761321600000, "Status": "已完成", "Target Customers": null, "Task": "天案云ceph分布式储存", "Task Description": "三个节点;包括cephFS, 对象存储和块存储", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": ["recuVTW8Po3SzV"], "table_id": "tblZRMr82RaQjfJS", "text": "ceph 分布式存储", "text_arr": ["ceph 分布式存储"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv14ouPfaJJb", "record_id": "recv14ouPfaJJb"}, {"fields": {"End Date": 1761840000000, "Estimate Deadline": null, "Manday count": 5, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1761494400000, "Status": "已完成", "Target Customers": null, "Task": "AI Stack使用测试", "Task Description": "1.API调用测试;2.容器内探索;3.模型压测", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv14mFi7jt3w", "record_id": "recv14mFi7jt3w"}, {"fields": {"End Date": 1761840000000, "Estimate Deadline": null, "Manday count": 23, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1759248000000, "Status": "已完成", "Target Customers": null, "Task": "ocdp-go", "Task Description": "1.将ocdp-py核心部署部分迁移至ocdp-go", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv15FK3l4f1f", "record_id": "recv15FK3l4f1f"}, {"fields": {"End Date": 1761840000000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1761753600000, "Status": "已完成", "Target Customers": null, "Task": "k8s 绑定 ceph", "Task Description": "cephFS, RBD, RGW, NFS. ", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": ["recv1yD4Ih1QcR"], "table_id": "tblZRMr82RaQjfJS", "text": "k8s 绑定ceph存储", "text_arr": ["k8s 绑定ceph存储"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv15JIi6Tlq2", "record_id": "recv15JIi6Tlq2"}, {"fields": {"End Date": 1762531200000, "Estimate Deadline": null, "Manday count": 6, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1762272000000, "Status": "已完成", "Target Customers": null, "Task": "k8s runtime 配置", "Task Description": "将k8s的default runtime 改为nvidia", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": "/etc/containerd/config\nnvidia-deamonset", "完成功能": [{"record_ids": ["recv15IWSr54BZ"], "table_id": "tblZRMr82RaQjfJS", "text": "k8s 相关", "text_arr": ["k8s 相关"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv1yDmA1DeaV", "record_id": "recv1yDmA1DeaV"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已封存", "Target Customers": null, "Task": "k8s rdma", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": "nvidia-network-operator v25.7 还没支持k8s 1.34", "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv1yDCRhYkV6", "record_id": "recv1yDCRhYkV6"}, {"fields": {"End Date": 1764691200000, "Estimate Deadline": null, "Manday count": 17, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1762099200000, "Status": "已完成", "Target Customers": null, "Task": "Slurm in K8S", "Task Description": "在K8S集群中部署Slurm", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv1yDJ8aduLS", "record_id": "recv1yDJ8aduLS"}, {"fields": {"End Date": 1762876800000, "Estimate Deadline": null, "Manday count": 13, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1762099200000, "Status": "已完成", "Target Customers": null, "Task": "ocdp容器化部署1", "Task Description": "将ocdp使用docker compose进行部署", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv1yDJ38Y1tP", "record_id": "recv1yDJ38Y1tP"}, {"fields": {"End Date": 1762790400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1762790400000, "Status": "已完成", "Target Customers": null, "Task": "k8s metric server", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": ["recv15IWSr54BZ"], "table_id": "tblZRMr82RaQjfJS", "text": "k8s 相关", "text_arr": ["k8s 相关"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2cziCfmIcf", "record_id": "recv2cziCfmIcf"}, {"fields": {"End Date": 1762790400000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1762704000000, "Status": "已完成", "Target Customers": null, "Task": "k8s LB controler", "Task Description": "1. 考虑安装metalLB", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": ["recv15IWSr54BZ"], "table_id": "tblZRMr82RaQjfJS", "text": "k8s 相关", "text_arr": ["k8s 相关"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2czJ52mwCF", "record_id": "recv2czJ52mwCF"}, {"fields": {"End Date": 1762876800000, "Estimate Deadline": null, "Manday count": 9, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1762704000000, "Status": "已完成", "Target Customers": null, "Task": "ocdp多集群持久化统一介质", "Task Description": "不同集群下的存储介质不一致,导致helm chart无法复用", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2dNIS5UxS5", "record_id": "recv2dNIS5UxS5"}, {"fields": {"End Date": 1763049600000, "Estimate Deadline": null, "Manday count": 5, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1762704000000, "Status": "已完成", "Target Customers": null, "Task": "ocdp code first refactor", "Task Description": "采用code first理念,利用go代码生成openapi 从而驱动前端直接使用open api client进行调用", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2dNKj27VGF", "record_id": "recv2dNKj27VGF"}, {"fields": {"End Date": 1762444800000, "Estimate Deadline": null, "Manday count": 5, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1762099200000, "Status": "已完成", "Target Customers": null, "Task": "backend 容器化", "Task Description": "分为 mode0:mock+stub, mode1:real, mode2:entire in containerd", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": ["recv1yDJ38Y1tP"], "table_id": "tblJR2WjY69BU7bK", "text": "ocdp容器化部署1", "text_arr": ["ocdp容器化部署1"], "type": "text"}]}, "id": "recv2dOCtnakk5", "record_id": "recv2dOCtnakk5"}, {"fields": {"End Date": 1762444800000, "Estimate Deadline": null, "Manday count": 5, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1762099200000, "Status": "已完成", "Target Customers": null, "Task": "frontend 容器化", "Task Description": "分为 mode0:mock+stub, mode1:real, mode2:entire in containerd", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": ["recv1yDJ38Y1tP"], "table_id": "tblJR2WjY69BU7bK", "text": "ocdp容器化部署1", "text_arr": ["ocdp容器化部署1"], "type": "text"}]}, "id": "recv2dOENlqYNp", "record_id": "recv2dOENlqYNp"}, {"fields": {"End Date": 1762876800000, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1762704000000, "Status": "已完成", "Target Customers": null, "Task": "集成容器化", "Task Description": "整合前后端进行dockercompose部署", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": ["recv1yDJ38Y1tP"], "table_id": "tblJR2WjY69BU7bK", "text": "ocdp容器化部署1", "text_arr": ["ocdp容器化部署1"], "type": "text"}]}, "id": "recv2dOGscANLb", "record_id": "recv2dOGscANLb"}, {"fields": {"End Date": 1763049600000, "Estimate Deadline": null, "Manday count": 5, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1762704000000, "Status": "已完成", "Target Customers": null, "Task": "ocdp增加状态机机制,优化instance的等待", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2iugV30K6M", "record_id": "recv2iugV30K6M"}, {"fields": {"End Date": 1762876800000, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1762704000000, "Status": "已完成", "Target Customers": null, "Task": "Slinky slurm operator", "Task Description": "通过Slinky的slurm operator将slurm的调度和占用告诉集群", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": ["recv15IWSr54BZ"], "table_id": "tblZRMr82RaQjfJS", "text": "k8s 相关", "text_arr": ["k8s 相关"], "type": "text"}], "父记录": [{"record_ids": ["recv1yDJ8aduLS"], "table_id": "tblJR2WjY69BU7bK", "text": "Slurm in K8S", "text_arr": ["Slurm in K8S"], "type": "text"}]}, "id": "recv2iuGyoVZhc", "record_id": "recv2iuGyoVZhc"}, {"fields": {"End Date": 1763049600000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1762963200000, "Status": "已完成", "Target Customers": null, "Task": "slurm mariadb安装", "Task Description": "slurm默认数据库,用pod的形式配置", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": ["recv15IWSr54BZ"], "table_id": "tblZRMr82RaQjfJS", "text": "k8s 相关", "text_arr": ["k8s 相关"], "type": "text"}], "父记录": [{"record_ids": ["recv1yDJ8aduLS"], "table_id": "tblJR2WjY69BU7bK", "text": "Slurm in K8S", "text_arr": ["Slurm in K8S"], "type": "text"}]}, "id": "recv2ivKnZmlGp", "record_id": "recv2ivKnZmlGp"}, {"fields": {"End Date": 1763568000000, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1763395200000, "Status": "已完成", "Target Customers": null, "Task": "prometheus 配置", "Task Description": "监控集群的资源占用", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": ["recv15IWSr54BZ"], "table_id": "tblZRMr82RaQjfJS", "text": "k8s 相关", "text_arr": ["k8s 相关"], "type": "text"}], "父记录": [{"record_ids": ["recv1yDJ8aduLS"], "table_id": "tblJR2WjY69BU7bK", "text": "Slurm in K8S", "text_arr": ["Slurm in K8S"], "type": "text"}]}, "id": "recv2ivREHd7Yf", "record_id": "recv2ivREHd7Yf"}, {"fields": {"End Date": 1764086400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1763308800000, "Status": "暂停滞", "Target Customers": null, "Task": "ocdp增加values模版显示", "Task Description": "1. 优化目前安装实例的配置方式与界面展示", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2vTFuuVqi7", "record_id": "recv2vTFuuVqi7"}, {"fields": {"End Date": 1763049600000, "Estimate Deadline": null, "Manday count": 5, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1762704000000, "Status": "已完成", "Target Customers": null, "Task": "ocdp chart获取并发支持", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2vTIXEKFkW", "record_id": "recv2vTIXEKFkW"}, {"fields": {"End Date": 1763308800000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1763308800000, "Status": "已完成", "Target Customers": null, "Task": "后端接口", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": ["recv2vTFuuVqi7"], "table_id": "tblJR2WjY69BU7bK", "text": "ocdp增加values模版显示", "text_arr": ["ocdp增加values模版显示"], "type": "text"}]}, "id": "recv2vTKPqRT5e", "record_id": "recv2vTKPqRT5e"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "暂停滞", "Target Customers": null, "Task": "前端界面", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv2vTFuuVqi7"], "table_id": "tblJR2WjY69BU7bK", "text": "ocdp增加values模版显示", "text_arr": ["ocdp增加values模版显示"], "type": "text"}]}, "id": "recv2vTO0UpzEt", "record_id": "recv2vTO0UpzEt"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "暂停滞", "Target Customers": null, "Task": "自动删除推理服务产生的pv", "Task Description": "1. 编写kubernetes controller进行某一类的无用sc删除", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2vW6HfslWy", "record_id": "recv2vW6HfslWy"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "头脑风暴", "Target Customers": null, "Task": "ocdp加入管理pv和svc的功能", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv2LLHysqc6N"], "table_id": "tblJR2WjY69BU7bK", "text": "开发者模式", "text_arr": ["开发者模式"], "type": "text"}]}, "id": "recv2w26bLSfNN", "record_id": "recv2w26bLSfNN"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": 0, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": 1763308800000, "Status": "暂停滞", "Target Customers": null, "Task": "集群ingress服务", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2LIzxpvFY2", "record_id": "recv2LIzxpvFY2"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "暂停滞", "Target Customers": null, "Task": "traefik", "Task Description": "1. 暂时无法实现自动代理,不支持通过在service上写annotate去实现代理", "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv2LIzxpvFY2"], "table_id": "tblJR2WjY69BU7bK", "text": "集群ingress服务", "text_arr": ["集群ingress服务"], "type": "text"}]}, "id": "recv2LIYWHYAEt", "record_id": "recv2LIYWHYAEt"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "cert-manager", "Task Description": "1. dns-1进行证书申请", "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv2LIzxpvFY2"], "table_id": "tblJR2WjY69BU7bK", "text": "集群ingress服务", "text_arr": ["集群ingress服务"], "type": "text"}]}, "id": "recv2LIV3TycaW", "record_id": "recv2LIV3TycaW"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": 0, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "头脑风暴", "Target Customers": null, "Task": "开发者模式", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2LLHysqc6N", "record_id": "recv2LLHysqc6N"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "头脑风暴", "Target Customers": null, "Task": "ocdp显示pod logs", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv2LLHysqc6N"], "table_id": "tblJR2WjY69BU7bK", "text": "开发者模式", "text_arr": ["开发者模式"], "type": "text"}]}, "id": "recv2w2eO1379x", "record_id": "recv2w2eO1379x"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "头脑风暴", "Target Customers": null, "Task": "保存导入镜像", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv2LLHysqc6N"], "table_id": "tblJR2WjY69BU7bK", "text": "开发者模式", "text_arr": ["开发者模式"], "type": "text"}]}, "id": "recv2LLS1iibnO", "record_id": "recv2LLS1iibnO"}, {"fields": {"End Date": 1763049600000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": {"link": "https://cv0ujbh7wf2.feishu.cn/wiki/VIkrwuTUWitjylkpxpcc1yDdnrb", "text": "Kubeflow使用说明"}, "Start date": 1762963200000, "Status": "已完成", "Target Customers": null, "Task": "城大Kubeflow使用手册整理", "Task Description": "制作Kubeflow使用手册", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": ["recv15IWSr54BZ"], "table_id": "tblZRMr82RaQjfJS", "text": "k8s 相关", "text_arr": ["k8s 相关"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2M5l4MeFqw", "record_id": "recv2M5l4MeFqw"}, {"fields": {"End Date": 1763308800000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1763308800000, "Status": "已完成", "Target Customers": null, "Task": "k8s too many files open bug fix", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": ["recv15IWSr54BZ"], "table_id": "tblZRMr82RaQjfJS", "text": "k8s 相关", "text_arr": ["k8s 相关"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2MP5hu7JWK", "record_id": "recv2MP5hu7JWK"}, {"fields": {"End Date": 1764086400000, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": 1763913600000, "Status": "暂停滞", "Target Customers": null, "Task": "ocdp监控界面优化", "Task Description": "1. 从metric修改为使用prometheus进行集群状态监控", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2NdnnQxJUG", "record_id": "recv2NdnnQxJUG"}, {"fields": {"End Date": 1763481600000, "Estimate Deadline": null, "Manday count": 4, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1763395200000, "Status": "已完成", "Target Customers": null, "Task": "helm chart 仓库初始化搭建", "Task Description": "1. 编写helm chart 基本框架", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2RWW3c1Hyd", "record_id": "recv2RWW3c1Hyd"}, {"fields": {"End Date": 1763308800000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1763308800000, "Status": "已完成", "Target Customers": null, "Task": "vllm模型列表支持优化", "Task Description": "1. 支持更多的vllm 模型list", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2RXyWInAIm", "record_id": "recv2RXyWInAIm"}, {"fields": {"End Date": 1763654400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1763654400000, "Status": "暂停滞", "Target Customers": null, "Task": "Slurm使用测试", "Task Description": "学习Slurm的使用方式并试用", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv1yDJ8aduLS"], "table_id": "tblJR2WjY69BU7bK", "text": "Slurm in K8S", "text_arr": ["Slurm in K8S"], "type": "text"}]}, "id": "recv2RYhWqTRPz", "record_id": "recv2RYhWqTRPz"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "cloudflare配置", "Task Description": "1. 域名配置 2. api key获取", "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv2LIzxpvFY2"], "table_id": "tblJR2WjY69BU7bK", "text": "集群ingress服务", "text_arr": ["集群ingress服务"], "type": "text"}]}, "id": "recv2S91LF5TNQ", "record_id": "recv2S91LF5TNQ"}, {"fields": {"End Date": 1763308800000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": 1763308800000, "Status": "已完成", "Target Customers": null, "Task": "helm-charts实现oci自动化cicd", "Task Description": "1. 编写helm push脚本 2. 配置cicd文件", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2ZklWZxu9b", "record_id": "recv2ZklWZxu9b"}, {"fields": {"End Date": 1764172800000, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": 1764000000000, "Status": "暂停滞", "Target Customers": null, "Task": "调研data juice 使用", "Task Description": "1. 注意使用方法逻辑,便于构造自己的数据工具", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv3xMtMoANuN", "record_id": "recv3xMtMoANuN"}, {"fields": {"End Date": 1764259200000, "Estimate Deadline": null, "Manday count": 10, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": 1763913600000, "Status": "暂停滞", "Target Customers": null, "Task": "data pipeline poc", "Task Description": "1. 编写data pipeline vibe coding工具", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv3xNrtNxb64", "record_id": "recv3xNrtNxb64"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "进行中", "Target Customers": null, "Task": "前端界面重启", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv2vTFuuVqi7"], "table_id": "tblJR2WjY69BU7bK", "text": "ocdp增加values模版显示", "text_arr": ["ocdp增加values模版显示"], "type": "text"}]}, "id": "recv3DfviPmTV9", "record_id": "recv3DfviPmTV9"}, {"fields": {"End Date": 1762531200000, "Estimate Deadline": null, "Manday count": 5, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1762099200000, "Status": "已完成", "Target Customers": null, "Task": "Slurm环境准备", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv1yDJ8aduLS"], "table_id": "tblJR2WjY69BU7bK", "text": "Slurm in K8S", "text_arr": ["Slurm in K8S"], "type": "text"}]}, "id": "recv3DiNVEG7aq", "record_id": "recv3DiNVEG7aq"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "头脑风暴", "Target Customers": null, "Task": "快速POC/原型驗證模式", "Task Description": "Core Concept: 基於一個github快速搭出原型測試系統\n1. 基於Github構建或修改優化出可用的dockerfile\n2. 建立\"沙箱\"或者deployment部署到集群\n3. 挂載相關可用數據卷以及開啓network service\n4. 給一句話或者git就能自動開始工作\nOne more thing (更多想法):\n1. Vibe給出需求,甚至能根據需求優化一下代碼,再構建可用的服務\n\nRef:\nhttps://mp.weixin.qq.com/s/emadKSrEh7mWTsYTU4-vLA", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00sb_2ddc23a5-afeb-40c4-852e-f13d49644c2g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Benson", "id": "ou_7c091d83db9f1dfecc90bcf3e640c453", "name": "Benson"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv3IJDLLyiJJ", "record_id": "recv3IJDLLyiJJ"}, {"fields": {"End Date": 1765382400000, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": 1765432800000, "Status": "已完成", "Target Customers": null, "Task": "靈雀雲Alauda產品介绍", "Task Description": "產品/方案介紹\n1. 和DaoCloud進行對比\n2. 研判是否值得“深交”\n3. 如“深交”,如何提供服務與我們團隊協作\n\nConclusion:\n一般般。。和DaoCloud差不多,但客戶case reference不多,觀望", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv3ILoL1lMWJ", "record_id": "recv3ILoL1lMWJ"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "gpu切片导致实际物理卡数bug", "Task Description": "由于进行了gpu切片,导致chart申请多张虚拟卡时会只分配一张物理卡。", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv3NT0NJzJdZ", "record_id": "recv3NT0NJzJdZ"}, {"fields": {"End Date": 1764604800000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": {"link": "https://gitea.bwgdi.com/ivanwu/helm-charts/pulls/2", "text": "https://gitea.bwgdi.com/ivanwu/helm-charts/pulls/2"}, "Start date": 1764518400000, "Status": "已完成", "Target Customers": null, "Task": "vllm 模型下载中断的问题", "Task Description": "在init-container中下载中断后,退出pod后不会再下载\n\n解决:通过特殊flag识别是否下载完成", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": ["recv3yePfayNcH"], "table_id": "tblZRMr82RaQjfJS", "text": "OCDP平台建设", "text_arr": ["OCDP平台建设"], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv3OrOaXNPj5", "record_id": "recv3OrOaXNPj5"}, {"fields": {"End Date": 1764172800000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": 1764086400000, "Status": "已完成", "Target Customers": null, "Task": "ansible探索并落地", "Task Description": "1. 探索ansible用法 2.采用ansible进行批量机器的服务部署", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv3PJXXiTXgu", "record_id": "recv3PJXXiTXgu"}, {"fields": {"End Date": 1764604800000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1764518400000, "Status": "已完成", "Target Customers": null, "Task": "webrtc集群", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv481uQwbQQI", "record_id": "recv481uQwbQQI"}, {"fields": {"End Date": 1764518400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1764518400000, "Status": "已完成", "Target Customers": null, "Task": "redis高可用集群安装", "Task Description": "1. helm chart制作 2. bug排查", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv481uQwbQQI"], "table_id": "tblJR2WjY69BU7bK", "text": "webrtc集群", "text_arr": ["webrtc集群"], "type": "text"}]}, "id": "recv481ARIvcVM", "record_id": "recv481ARIvcVM"}, {"fields": {"End Date": 1764604800000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1764604800000, "Status": "已完成", "Target Customers": null, "Task": "livekit高可用集群安装以及功能性测试", "Task Description": "1. helm chart制作 2. bug排查 3. 功能性测试", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv481uQwbQQI"], "table_id": "tblJR2WjY69BU7bK", "text": "webrtc集群", "text_arr": ["webrtc集群"], "type": "text"}]}, "id": "recv481EbDWGWk", "record_id": "recv481EbDWGWk"}, {"fields": {"End Date": 1769788800000, "Estimate Deadline": null, "Manday count": 28, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1764518400000, "Status": "已完成", "Target Customers": null, "Task": "autoark-alpha", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv482lvZwPoJ", "record_id": "recv482lvZwPoJ"}, {"fields": {"End Date": 1764777600000, "Estimate Deadline": null, "Manday count": 4, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1764518400000, "Status": "已完成", "Target Customers": null, "Task": "项目源码解读以及autopilot模块设计", "Task Description": "1. 了解项目里的models", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv482lvZwPoJ"], "table_id": "tblJR2WjY69BU7bK", "text": "autoark-alpha", "text_arr": ["autoark-alpha"], "type": "text"}]}, "id": "recv482sw8ITFQ", "record_id": "recv482sw8ITFQ"}, {"fields": {"End Date": 1765814400000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1765728000000, "Status": "已完成", "Target Customers": null, "Task": "agents开发", "Task Description": "1. 新增了四个agents,如下:AutoPilot Interaction,AutoPilot Monitor,AutoPilot Advisor,AutoPilot Summary ", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv482lvZwPoJ"], "table_id": "tblJR2WjY69BU7bK", "text": "autoark-alpha", "text_arr": ["autoark-alpha"], "type": "text"}]}, "id": "recv5ME9Fmdgw7", "record_id": "recv5ME9Fmdgw7"}, {"fields": {"End Date": 1765987200000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1765900800000, "Status": "已完成", "Target Customers": null, "Task": "subroute", "Task Description": "1. 对agents进行编排,是一个DiGraphBuilder的实现类", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv482lvZwPoJ"], "table_id": "tblJR2WjY69BU7bK", "text": "autoark-alpha", "text_arr": ["autoark-alpha"], "type": "text"}]}, "id": "recv5MEsxQKurx", "record_id": "recv5MEsxQKurx"}, {"fields": {"End Date": 1766073600000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1766073600000, "Status": "已完成", "Target Customers": null, "Task": "系统集成", "Task Description": "1. 将新开发功能集成到系统当中", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv482lvZwPoJ"], "table_id": "tblJR2WjY69BU7bK", "text": "autoark-alpha", "text_arr": ["autoark-alpha"], "type": "text"}]}, "id": "recv5MEDVrjWRM", "record_id": "recv5MEDVrjWRM"}, {"fields": {"End Date": 1766332800000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1766332800000, "Status": "已完成", "Target Customers": null, "Task": "autopilot初版", "Task Description": "1. 完成autopilot的初版开发,能够呈现过程", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv482lvZwPoJ"], "table_id": "tblJR2WjY69BU7bK", "text": "autoark-alpha", "text_arr": ["autoark-alpha"], "type": "text"}]}, "id": "recv6Gf9Wa81St", "record_id": "recv6Gf9Wa81St"}, {"fields": {"End Date": 1764777600000, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": {"link": "https://cv0ujbh7wf2.feishu.cn/docx/TNtzdbBProkyXexe94xcVR7rnGd", "text": "Slurm in K8S"}, "Start date": 1764604800000, "Status": "已完成", "Target Customers": null, "Task": "文档编写", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv1yDJ8aduLS"], "table_id": "tblJR2WjY69BU7bK", "text": "Slurm in K8S", "text_arr": ["Slurm in K8S"], "type": "text"}]}, "id": "recv4hkgWjoWAD", "record_id": "recv4hkgWjoWAD"}, {"fields": {"End Date": 1767888000000, "Estimate Deadline": null, "Manday count": 18, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1764259200000, "Status": "已完成", "Target Customers": null, "Task": "浪潮服务器上架及安装", "Task Description": "ICC、GDI共7台服务器的上架、测试、OS安装及设备登记", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv4n6DK927tV", "record_id": "recv4n6DK927tV"}, {"fields": {"End Date": 1764604800000, "Estimate Deadline": null, "Manday count": 4, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1764518400000, "Status": "已完成", "Target Customers": null, "Task": "ICC服务器上架及通电测试", "Task Description": "上架4台服务器(包括SOC的,后续会移走)并通电测试", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv4n6DK927tV"], "table_id": "tblJR2WjY69BU7bK", "text": "浪潮服务器上架及安装", "text_arr": ["浪潮服务器上架及安装"], "type": "text"}]}, "id": "recv4n79GKq5Tu", "record_id": "recv4n79GKq5Tu"}, {"fields": {"End Date": 1764777600000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1764777600000, "Status": "已完成", "Target Customers": null, "Task": "GDI服务器上架及通电测试", "Task Description": "3台工作节点、1台存储节点", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv4n6DK927tV"], "table_id": "tblJR2WjY69BU7bK", "text": "浪潮服务器上架及安装", "text_arr": ["浪潮服务器上架及安装"], "type": "text"}]}, "id": "recv4n7C416P66", "record_id": "recv4n7C416P66"}, {"fields": {"End Date": 1764518400000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1764518400000, "Status": "已完成", "Target Customers": null, "Task": "机柜运输", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv4n6DK927tV"], "table_id": "tblJR2WjY69BU7bK", "text": "浪潮服务器上架及安装", "text_arr": ["浪潮服务器上架及安装"], "type": "text"}]}, "id": "recv4n8UEL7cnQ", "record_id": "recv4n8UEL7cnQ"}, {"fields": {"End Date": 1765468800000, "Estimate Deadline": null, "Manday count": 5, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1765123200000, "Status": "已完成", "Target Customers": null, "Task": "服务器OS安装", "Task Description": "GDI3台4U服务器安装好OS,配置好网络", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv4n6DK927tV"], "table_id": "tblJR2WjY69BU7bK", "text": "浪潮服务器上架及安装", "text_arr": ["浪潮服务器上架及安装"], "type": "text"}]}, "id": "recv4n905mYOxJ", "record_id": "recv4n905mYOxJ"}, {"fields": {"End Date": 1764691200000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1764691200000, "Status": "已完成", "Target Customers": null, "Task": "lws 有无IB网卡debug,分布式backend. ", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv3NT0NJzJdZ"], "table_id": "tblJR2WjY69BU7bK", "text": "gpu切片导致实际物理卡数bug", "text_arr": ["gpu切片导致实际物理卡数bug"], "type": "text"}]}, "id": "recv4nbLAWkauA", "record_id": "recv4nbLAWkauA"}, {"fields": {"End Date": 1764777600000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1764777600000, "Status": "已完成", "Target Customers": null, "Task": "HAMI安装使用", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv3NT0NJzJdZ"], "table_id": "tblJR2WjY69BU7bK", "text": "gpu切片导致实际物理卡数bug", "text_arr": ["gpu切片导致实际物理卡数bug"], "type": "text"}]}, "id": "recv4nc7bklqy4", "record_id": "recv4nc7bklqy4"}, {"fields": {"End Date": 1764777600000, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": 1764691200000, "Status": "已完成", "Target Customers": null, "Task": "智能院反向代理服务", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv4p21MG9wVy", "record_id": "recv4p21MG9wVy"}, {"fields": {"End Date": 1764691200000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": 1764691200000, "Status": "已完成", "Target Customers": null, "Task": "堡垒机安装", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv4p21MG9wVy"], "table_id": "tblJR2WjY69BU7bK", "text": "智能院反向代理服务", "text_arr": ["智能院反向代理服务"], "type": "text"}]}, "id": "recv4p2b6piP6N", "record_id": "recv4p2b6piP6N"}, {"fields": {"End Date": 1764777600000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": 1764777600000, "Status": "已完成", "Target Customers": null, "Task": "lucky安装并代理服务", "Task Description": "1. frpc代理11051-11100 2. lucky web界面配置 3. 代理了livekit提供rtc服务", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv4p21MG9wVy"], "table_id": "tblJR2WjY69BU7bK", "text": "智能院反向代理服务", "text_arr": ["智能院反向代理服务"], "type": "text"}]}, "id": "recv4p2wKMRpGg", "record_id": "recv4p2wKMRpGg"}, {"fields": {"End Date": 1764864000000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1764864000000, "Status": "已完成", "Target Customers": null, "Task": "omni模型相关支持", "Task Description": "1. llm 2. vlm 3. omni", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv4uEuAUAaV1", "record_id": "recv4uEuAUAaV1"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "进行中", "Target Customers": null, "Task": "HAMI webui 监控GPU", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv3NT0NJzJdZ"], "table_id": "tblJR2WjY69BU7bK", "text": "gpu切片导致实际物理卡数bug", "text_arr": ["gpu切片导致实际物理卡数bug"], "type": "text"}]}, "id": "recv4uMCkp0Vyg", "record_id": "recv4uMCkp0Vyg"}, {"fields": {"End Date": 1765728000000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1765728000000, "Status": "已完成", "Target Customers": null, "Task": "城大投标项目准备", "Task Description": "SOW编写,其中Part1为Slurm in K8S,Part2为OCDP在昇腾卡上的适配", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv5pix6mZzXa", "record_id": "recv5pix6mZzXa"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": 6, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1765468800000, "Status": "已封存", "Target Customers": null, "Task": "内部开发环境开发", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv5pjfSHnPTA", "record_id": "recv5pjfSHnPTA"}, {"fields": {"End Date": 1765814400000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1765814400000, "Status": "已完成", "Target Customers": null, "Task": "GDI交换机网络配置", "Task Description": "配置ICC借过来的交换机\n已完成LACP及基礎配置,並確認華爲6730不兼容intel光模塊,需要查查如何用", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00sb_2ddc23a5-afeb-40c4-852e-f13d49644c2g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Benson", "id": "ou_7c091d83db9f1dfecc90bcf3e640c453", "name": "Benson"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv4n6DK927tV"], "table_id": "tblJR2WjY69BU7bK", "text": "浪潮服务器上架及安装", "text_arr": ["浪潮服务器上架及安装"], "type": "text"}]}, "id": "recv5wybqw406h", "record_id": "recv5wybqw406h"}, {"fields": {"End Date": 1769011200000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1768924800000, "Status": "已完成", "Target Customers": null, "Task": "存储节点安装", "Task Description": "安装黑群晖系统", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv4n6DK927tV"], "table_id": "tblJR2WjY69BU7bK", "text": "浪潮服务器上架及安装", "text_arr": ["浪潮服务器上架及安装"], "type": "text"}]}, "id": "recv5wAlVL66Pj", "record_id": "recv5wAlVL66Pj"}, {"fields": {"End Date": 1765900800000, "Estimate Deadline": null, "Manday count": 4, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": {"link": "https://gitea.bwgdi.com/ivanwu/dev-platform/pulls/1", "text": "https://gitea.bwgdi.com/ivanwu/dev-platform/pulls/1"}, "Start date": 1765468800000, "Status": "已封存", "Target Customers": null, "Task": "自建开发平台", "Task Description": "需要支持:\n1. 创建pv/pvc,svc\n2. 查看log\n3. 进入pod terminal\n4. 保存导出镜像", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv5pjfSHnPTA"], "table_id": "tblJR2WjY69BU7bK", "text": "内部开发环境开发", "text_arr": ["内部开发环境开发"], "type": "text"}]}, "id": "recv5OEROLVyPG", "record_id": "recv5OEROLVyPG"}, {"fields": {"End Date": 1766073600000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1765987200000, "Status": "已封存", "Target Customers": null, "Task": "选用rancher ", "Task Description": "基本功能齐全,还可用户隔离,但是没有保存镜像功能", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv5pjfSHnPTA"], "table_id": "tblJR2WjY69BU7bK", "text": "内部开发环境开发", "text_arr": ["内部开发环境开发"], "type": "text"}]}, "id": "recv5OFpCSIvTx", "record_id": "recv5OFpCSIvTx"}, {"fields": {"End Date": 1765900800000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": 1765814400000, "Status": "已完成", "Target Customers": null, "Task": "大模型网关", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv6GcVB2a4w8", "record_id": "recv6GcVB2a4w8"}, {"fields": {"End Date": 1765814400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1765814400000, "Status": "已完成", "Target Customers": null, "Task": "litellm proxy", "Task Description": "1. 使用litellm对实验中的模型进行统一代理", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv6GcVB2a4w8"], "table_id": "tblJR2WjY69BU7bK", "text": "大模型网关", "text_arr": ["大模型网关"], "type": "text"}]}, "id": "recv6Gda7uc8eX", "record_id": "recv6Gda7uc8eX"}, {"fields": {"End Date": 1765900800000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1765900800000, "Status": "已完成", "Target Customers": null, "Task": "cloudflare tunnel", "Task Description": "1. 通过cloudflare进行内网穿透,并提供域名以及https证书服务", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv6GcVB2a4w8"], "table_id": "tblJR2WjY69BU7bK", "text": "大模型网关", "text_arr": ["大模型网关"], "type": "text"}]}, "id": "recv6GdayR5hg7", "record_id": "recv6GdayR5hg7"}, {"fields": {"End Date": 1766678400000, "Estimate Deadline": null, "Manday count": 4, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1766592000000, "Status": "已完成", "Target Customers": null, "Task": "autoark bio agetns ppt", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv6GeHpWR0Y4", "record_id": "recv6GeHpWR0Y4"}, {"fields": {"End Date": 1766419200000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1766419200000, "Status": "已完成", "Target Customers": null, "Task": "ICC网络配置", "Task Description": "1.IRD两台机器配置网络 2.小舟机器的网络配置并交接给波总", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv4n6DK927tV"], "table_id": "tblJR2WjY69BU7bK", "text": "浪潮服务器上架及安装", "text_arr": ["浪潮服务器上架及安装"], "type": "text"}]}, "id": "recv6JiX7ZsVGz", "record_id": "recv6JiX7ZsVGz"}, {"fields": {"End Date": 1767715200000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1767456000000, "Status": "已完成", "Target Customers": null, "Task": "bwgdi基建架构图", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv7k9aeZO5wT", "record_id": "recv7k9aeZO5wT"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已封存", "Target Customers": null, "Task": "云服务以及部分本地服务迁移", "Task Description": "1. 在bwgdi物理架构基础上,进行服务迁移", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv7k9gCTcZr5", "record_id": "recv7k9gCTcZr5"}, {"fields": {"End Date": 1767628800000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1767628800000, "Status": "已完成", "Target Customers": null, "Task": "主机表", "Task Description": "1. 给出智能院纳管的机器节点清单", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv7k9aeZO5wT"], "table_id": "tblJR2WjY69BU7bK", "text": "bwgdi基建架构图", "text_arr": ["bwgdi基建架构图"], "type": "text"}]}, "id": "recv7k9gXADc5V", "record_id": "recv7k9gXADc5V"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "物理架构图", "Task Description": "1. 给出智能院物理节点的排布划分", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv7k9aeZO5wT"], "table_id": "tblJR2WjY69BU7bK", "text": "bwgdi基建架构图", "text_arr": ["bwgdi基建架构图"], "type": "text"}]}, "id": "recv7o6mOTvydf", "record_id": "recv7o6mOTvydf"}, {"fields": {"End Date": 1767542400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1767542400000, "Status": "已完成", "Target Customers": null, "Task": "服务图", "Task Description": "1. cloudflare tunnel路线实现服务暴露 2. frp路线实现服务暴露", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv7k9aeZO5wT"], "table_id": "tblJR2WjY69BU7bK", "text": "bwgdi基建架构图", "text_arr": ["bwgdi基建架构图"], "type": "text"}]}, "id": "recv7k9kPKFLrx", "record_id": "recv7k9kPKFLrx"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "服务表", "Task Description": "1. 给出智能院提供的外部服务清单", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv7k9aeZO5wT"], "table_id": "tblJR2WjY69BU7bK", "text": "bwgdi基建架构图", "text_arr": ["bwgdi基建架构图"], "type": "text"}]}, "id": "recv7o6tzHYtVl", "record_id": "recv7o6tzHYtVl"}, {"fields": {"End Date": 1767542400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": 1767542400000, "Status": "已完成", "Target Customers": null, "Task": "天浪云antigravity使用异常修复", "Task Description": "1. 检查网络状态,找出导致antigravity无法访问的原因,系统代理无法满足访问条件 2. 配置icc天浪云宿主机走旁挂路由实现antigravity正常使用 ", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv7pcxWPZbPk", "record_id": "recv7pcxWPZbPk"}, {"fields": {"End Date": 1767110400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1767110400000, "Status": "已完成", "Target Customers": null, "Task": "服务器规范设计", "Task Description": "编写服务器使用指南", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv7u43LAhZ88", "record_id": "recv7u43LAhZ88"}, {"fields": {"End Date": 1767110400000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1767024000000, "Status": "已完成", "Target Customers": null, "Task": "数据模型设计", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv7u7qO1eR6t"], "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv7u7BhvpS40", "record_id": "recv7u7BhvpS40"}, {"fields": {"End Date": 1767110400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1767110400000, "Status": "已完成", "Target Customers": null, "Task": "autopilot数据模型设计", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv482lvZwPoJ"], "table_id": "tblJR2WjY69BU7bK", "text": "autoark-alpha", "text_arr": ["autoark-alpha"], "type": "text"}]}, "id": "recv7u8gLRJVdc", "record_id": "recv7u8gLRJVdc"}, {"fields": {"End Date": 1768320000000, "Estimate Deadline": null, "Manday count": 5, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1767801600000, "Status": "已完成", "Target Customers": null, "Task": "autopilot ui开发", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv482lvZwPoJ"], "table_id": "tblJR2WjY69BU7bK", "text": "autoark-alpha", "text_arr": ["autoark-alpha"], "type": "text"}]}, "id": "recv7u8tOhvkH9", "record_id": "recv7u8tOhvkH9"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": 4, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "智能院基建", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv7ug0co0Nas", "record_id": "recv7ug0co0Nas"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已封存", "Target Customers": null, "Task": "tts模型容器化部署", "Task Description": "1. 基于智能院新架构完成tts模型的容器化部署", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv7ug0co0Nas"], "table_id": "tblJR2WjY69BU7bK", "text": "智能院基建", "text_arr": ["智能院基建"], "type": "text"}]}, "id": "recv7uh5V1uh2W", "record_id": "recv7uh5V1uh2W"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "vlm模型", "Task Description": "在推理集群部署Qwen3-235B-VL供大家使用", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv7ug0co0Nas"], "table_id": "tblJR2WjY69BU7bK", "text": "智能院基建", "text_arr": ["智能院基建"], "type": "text"}]}, "id": "recv7uh7kwuBpf", "record_id": "recv7uh7kwuBpf"}, {"fields": {"End Date": 1767542400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1767542400000, "Status": "已完成", "Target Customers": null, "Task": "k8s network operator (IB) 安装", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv7zLmZgShvH", "record_id": "recv7zLmZgShvH"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已封存", "Target Customers": null, "Task": "OCDP 优化", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv7LWNlKgUVX", "record_id": "recv7LWNlKgUVX"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已封存", "Target Customers": null, "Task": "测试platforx", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv7MO3ZcTOPZ", "record_id": "recv7MO3ZcTOPZ"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已封存", "Target Customers": null, "Task": "ansible部署nginx", "Task Description": "1. 采用nginx进行反向代理从而可以代理udp流量", "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv7ug0co0Nas"], "table_id": "tblJR2WjY69BU7bK", "text": "智能院基建", "text_arr": ["智能院基建"], "type": "text"}]}, "id": "recv7MO6Me7pgh", "record_id": "recv7MO6Me7pgh"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已封存", "Target Customers": null, "Task": "修改vllm 权重储存方式", "Task Description": "- 定义operator 删除pv /pvc\n- OCDP 平台通过config 填入储存配置\n- 一个公用pvc,配置charts的service account 来读取,写入pvc", "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv7MXhrXvJAv", "record_id": "recv7MXhrXvJAv"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已封存", "Target Customers": null, "Task": "账号问题(数据隔离,资源申请)", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv7MXEiJDZWN", "record_id": "recv7MXEiJDZWN"}, {"fields": {"End Date": 1767715200000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": {"link": "https://gitea.bwgdi.com/ivanwu/helm-charts/commit/a68104d1950d526e3ee584181cf75cdeee50ed83", "text": "https://gitea.bwgdi.com/ivanwu/helm-charts/commit/a68104d1950d526e3ee584181cf75cdeee50ed83"}, "Start date": 1767715200000, "Status": "已完成", "Target Customers": null, "Task": "vllm 新增检查模型是否支持的功能", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv7LWNlKgUVX"], "table_id": "tblJR2WjY69BU7bK", "text": "OCDP 优化", "text_arr": ["OCDP 优化"], "type": "text"}]}, "id": "recv7MY05jLeVx", "record_id": "recv7MY05jLeVx"}, {"fields": {"End Date": 1767628800000, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1767628800000, "Status": "已完成", "Target Customers": null, "Task": "竞品vllm playground 试用", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv7LWNlKgUVX"], "table_id": "tblJR2WjY69BU7bK", "text": "OCDP 优化", "text_arr": ["OCDP 优化"], "type": "text"}]}, "id": "recv7N0lyLZJtY", "record_id": "recv7N0lyLZJtY"}, {"fields": {"End Date": 1769097600000, "Estimate Deadline": null, "Manday count": 8, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1768838400000, "Status": "已完成", "Target Customers": null, "Task": "澳门海关AI stack安装", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv7NsWf0fBdM", "record_id": "recv7NsWf0fBdM"}, {"fields": {"End Date": 1767888000000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1767888000000, "Status": "已完成", "Target Customers": null, "Task": "LLaVA-VLA镜像制作", "Task Description": "重新制作镜像", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv7NxAgDVUgN", "record_id": "recv7NxAgDVUgN"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已封存", "Target Customers": null, "Task": "A6000空间整理", "Task Description": "重新整理A6000 7960空间,使其符合统一标准", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv7NxJxpyWKB", "record_id": "recv7NxJxpyWKB"}, {"fields": {"End Date": 1769788800000, "Estimate Deadline": null, "Manday count": 12, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1768406400000, "Status": "已完成", "Target Customers": null, "Task": "quant模块功能增强", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv482lvZwPoJ"], "table_id": "tblJR2WjY69BU7bK", "text": "autoark-alpha", "text_arr": ["autoark-alpha"], "type": "text"}]}, "id": "recv83261Kl3km", "record_id": "recv83261Kl3km"}, {"fields": {"End Date": 1769097600000, "Estimate Deadline": null, "Manday count": 4, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1769011200000, "Status": "已完成", "Target Customers": null, "Task": "澳门海关项目第二阶段准备", "Task Description": "根据要求准备manday报价、模型下载、测试镜像", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv8HYpOxJ7xB", "record_id": "recv8HYpOxJ7xB"}, {"fields": {"End Date": 1769443200000, "Estimate Deadline": null, "Manday count": 7, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1768924800000, "Status": "已完成", "Target Customers": null, "Task": "大存储服务器", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv8NQKhCULda", "record_id": "recv8NQKhCULda"}, {"fields": {"End Date": 1768924800000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1768924800000, "Status": "已完成", "Target Customers": null, "Task": "bcache安装", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv8NQKhCULda"], "table_id": "tblJR2WjY69BU7bK", "text": "大存储服务器", "text_arr": ["大存储服务器"], "type": "text"}]}, "id": "recv8VDZ2BE6Rm", "record_id": "recv8VDZ2BE6Rm"}, {"fields": {"End Date": 1769011200000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1769011200000, "Status": "已完成", "Target Customers": null, "Task": "cockpit, cockpit-file-sharing", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv8NQKhCULda"], "table_id": "tblJR2WjY69BU7bK", "text": "大存储服务器", "text_arr": ["大存储服务器"], "type": "text"}]}, "id": "recv8VE3yX1mQp", "record_id": "recv8VE3yX1mQp"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "云服务迁移", "Task Description": "1. gitea 2. harbor 3. loki 4. caddy(实行改造)", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv8NQKhCULda"], "table_id": "tblJR2WjY69BU7bK", "text": "大存储服务器", "text_arr": ["大存储服务器"], "type": "text"}]}, "id": "recv8VEO7Pyr7Y", "record_id": "recv8VEO7Pyr7Y"}, {"fields": {"End Date": 1769702400000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1769616000000, "Status": "已完成", "Target Customers": null, "Task": "litellm", "Task Description": "1. 支持百炼 2.支持持久化 3. 进行可视化测试", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv92GTi5RHCm", "record_id": "recv92GTi5RHCm"}, {"fields": {"End Date": 1769097600000, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1768924800000, "Status": "已完成", "Target Customers": null, "Task": "Nas11迁移", "Task Description": "权重、PV、数据集迁移", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv8NQKhCULda"], "table_id": "tblJR2WjY69BU7bK", "text": "大存储服务器", "text_arr": ["大存储服务器"], "type": "text"}]}, "id": "recv9dQKBRCGRc", "record_id": "recv9dQKBRCGRc"}, {"fields": {"End Date": 1768924800000, "Estimate Deadline": null, "Manday count": 4, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1768838400000, "Status": "已完成", "Target Customers": null, "Task": "提升推理集群推理速度", "Task Description": "将IB网卡作为推理通信", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv7ug0co0Nas"], "table_id": "tblJR2WjY69BU7bK", "text": "智能院基建", "text_arr": ["智能院基建"], "type": "text"}]}, "id": "recv9dYVgStczu", "record_id": "recv9dYVgStczu"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已封存", "Target Customers": null, "Task": "Nas11清理", "Task Description": "将已迁移至大存储的部分清理,并删除不需要的旧PV", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv9KpojZSt3l", "record_id": "recv9KpojZSt3l"}, {"fields": {"End Date": 1769616000000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1769616000000, "Status": "已完成", "Target Customers": null, "Task": "支持百炼", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv92GTi5RHCm"], "table_id": "tblJR2WjY69BU7bK", "text": "litellm", "text_arr": ["litellm"], "type": "text"}]}, "id": "recv9KpoI1qDU4", "record_id": "recv9KpoI1qDU4"}, {"fields": {"End Date": 1769702400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1769702400000, "Status": "已完成", "Target Customers": null, "Task": "支持持久化", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv92GTi5RHCm"], "table_id": "tblJR2WjY69BU7bK", "text": "litellm", "text_arr": ["litellm"], "type": "text"}]}, "id": "recv9Kpq8w0tw4", "record_id": "recv9Kpq8w0tw4"}, {"fields": {"End Date": 1769529600000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1769443200000, "Status": "进行中", "Target Customers": null, "Task": "基于当前市场需求进行再选型设计", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv7LWNlKgUVX"], "table_id": "tblJR2WjY69BU7bK", "text": "OCDP 优化", "text_arr": ["OCDP 优化"], "type": "text"}]}, "id": "recv9MtXCKFv2r", "record_id": "recv9MtXCKFv2r"}, {"fields": {"End Date": 1770912000000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770912000000, "Status": "已完成", "Target Customers": null, "Task": "研究院网络迁移", "Task Description": "参加网络研讨会,根据院里新的规定迁移网络;并规划3楼推理集群迁移(网络、硬件)", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv9MB5JBa8Bi", "record_id": "recv9MB5JBa8Bi"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "大存储硬盘故障", "Task Description": "大存储2、3号位硬盘报警,联系供应商修复", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv9MC8UZL17j", "record_id": "recv9MC8UZL17j"}, {"fields": {"End Date": 1769616000000, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": {"link": "https://cv0ujbh7wf2.feishu.cn/docx/LEQtd84Xxo45zLxCnoVc9LN2nOh", "text": "物理资源及服务"}, "Start date": 1769616000000, "Status": "已完成", "Target Customers": null, "Task": "安排组内大基建分享会", "Task Description": "给所有成员分享基建情况,介绍物理资源以及服务,并分享使用规范", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv9MDHrx2z96", "record_id": "recv9MDHrx2z96"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": 12, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1769961600000, "Status": "进行中", "Target Customers": null, "Task": "LiteLLM功能调用", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv9MDWZPxSY2", "record_id": "recv9MDWZPxSY2"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": 8, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1769961600000, "Status": "已完成", "Target Customers": null, "Task": "Cyberport项目", "Task Description": "根据SUSE的要求完成", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv9MDZmRaqzv", "record_id": "recv9MDZmRaqzv"}, {"fields": {"End Date": 1769961600000, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1769961600000, "Status": "已完成", "Target Customers": null, "Task": "用户管理", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv9MDWZPxSY2"], "table_id": "tblJR2WjY69BU7bK", "text": "LiteLLM功能调用", "text_arr": ["LiteLLM功能调用"], "type": "text"}]}, "id": "recvarj2YK8V6A", "record_id": "recvarj2YK8V6A"}, {"fields": {"End Date": 1770912000000, "Estimate Deadline": null, "Manday count": 6, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770825600000, "Status": "已完成", "Target Customers": null, "Task": "RAG和Guardrail功能", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv9MDWZPxSY2"], "table_id": "tblJR2WjY69BU7bK", "text": "LiteLLM功能调用", "text_arr": ["LiteLLM功能调用"], "type": "text"}]}, "id": "recvarjhMb6VuM", "record_id": "recvarjhMb6VuM"}, {"fields": {"End Date": 1770912000000, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770739200000, "Status": "已完成", "Target Customers": null, "Task": "pgvector打包chart", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv9MDWZPxSY2"], "table_id": "tblJR2WjY69BU7bK", "text": "LiteLLM功能调用", "text_arr": ["LiteLLM功能调用"], "type": "text"}]}, "id": "recvarm7RUFiwt", "record_id": "recvarm7RUFiwt"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "进行中", "Target Customers": null, "Task": "官方chart测试", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv9MDWZPxSY2"], "table_id": "tblJR2WjY69BU7bK", "text": "LiteLLM功能调用", "text_arr": ["LiteLLM功能调用"], "type": "text"}]}, "id": "recvartWmkYw2G", "record_id": "recvartWmkYw2G"}, {"fields": {"End Date": 1770048000000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1769961600000, "Status": "已完成", "Target Customers": null, "Task": "AI-Native-v10 PPT", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv9MDZmRaqzv"], "table_id": "tblJR2WjY69BU7bK", "text": "Cyberport项目", "text_arr": ["Cyberport项目"], "type": "text"}]}, "id": "recvaruGrHkAiS", "record_id": "recvaruGrHkAiS"}, {"fields": {"End Date": 1769961600000, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1769961600000, "Status": "已完成", "Target Customers": null, "Task": "Agent as Service 讨论以及Assumption", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvaruIQfk74o", "record_id": "recvaruIQfk74o"}, {"fields": {"End Date": 1770220800000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770220800000, "Status": "已完成", "Target Customers": null, "Task": "Assumption", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv9MDZmRaqzv"], "table_id": "tblJR2WjY69BU7bK", "text": "Cyberport项目", "text_arr": ["Cyberport项目"], "type": "text"}]}, "id": "recvaruJ3qOpg0", "record_id": "recvaruJ3qOpg0"}, {"fields": {"End Date": 1770307200000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770307200000, "Status": "已完成", "Target Customers": null, "Task": "Diagram", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv9MDZmRaqzv"], "table_id": "tblJR2WjY69BU7bK", "text": "Cyberport项目", "text_arr": ["Cyberport项目"], "type": "text"}]}, "id": "recvaruLl5IVs4", "record_id": "recvaruLl5IVs4"}, {"fields": {"End Date": 1770652800000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770652800000, "Status": "已完成", "Target Customers": null, "Task": "Manday", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv9MDZmRaqzv"], "table_id": "tblJR2WjY69BU7bK", "text": "Cyberport项目", "text_arr": ["Cyberport项目"], "type": "text"}]}, "id": "recvaruWjBh9wA", "record_id": "recvaruWjBh9wA"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "进行中", "Target Customers": null, "Task": "Bugs: 前端参数需要有动作才会覆盖默认values", "Task Description": "前端显示的值不会覆盖到默认values上", "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv7LWNlKgUVX"], "table_id": "tblJR2WjY69BU7bK", "text": "OCDP 优化", "text_arr": ["OCDP 优化"], "type": "text"}]}, "id": "recvaIHqcJkTEP", "record_id": "recvaIHqcJkTEP"}, {"fields": {"End Date": 1770998400000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770825600000, "Status": "已完成", "Target Customers": null, "Task": "k8s集群以及omnichat", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvaKkeY6CFiP", "record_id": "recvaKkeY6CFiP"}, {"fields": {"End Date": 1770825600000, "Estimate Deadline": null, "Manday count": 4, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770566400000, "Status": "已完成", "Target Customers": null, "Task": "智能院服务", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvaKkhobNKQT", "record_id": "recvaKkhobNKQT"}, {"fields": {"End Date": 1770825600000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770825600000, "Status": "已完成", "Target Customers": null, "Task": "gdi L3 cluster", "Task Description": "1. k8s gateway 2. k8s cert-manager", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvaKkeY6CFiP"], "table_id": "tblJR2WjY69BU7bK", "text": "k8s集群以及omnichat", "text_arr": ["k8s集群以及omnichat"], "type": "text"}]}, "id": "recvaKkiQ2ESXp", "record_id": "recvaKkiQ2ESXp"}, {"fields": {"End Date": 1770912000000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770912000000, "Status": "已完成", "Target Customers": null, "Task": "livekit server", "Task Description": "1. 恢复livekit server", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvaKkeY6CFiP"], "table_id": "tblJR2WjY69BU7bK", "text": "k8s集群以及omnichat", "text_arr": ["k8s集群以及omnichat"], "type": "text"}]}, "id": "recvaKktTiQNto", "record_id": "recvaKktTiQNto"}, {"fields": {"End Date": 1770998400000, "Estimate Deadline": null, "Manday count": 0, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770998400000, "Status": "已完成", "Target Customers": null, "Task": "openclaw", "Task Description": "1. 支持返回容器地址 2. 配置网络以开放容器地址访问", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvaKkeY6CFiP"], "table_id": "tblJR2WjY69BU7bK", "text": "k8s集群以及omnichat", "text_arr": ["k8s集群以及omnichat"], "type": "text"}]}, "id": "recvaKkwRZBP85", "record_id": "recvaKkwRZBP85"}, {"fields": {"End Date": 1770652800000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770566400000, "Status": "已完成", "Target Customers": null, "Task": "诊断堡垒机与云机内网穿透问题", "Task Description": "1. 堡垒机使用透明代理科学上网网关会出现不稳定问题。", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvaKkhobNKQT"], "table_id": "tblJR2WjY69BU7bK", "text": "智能院服务", "text_arr": ["智能院服务"], "type": "text"}]}, "id": "recvaUgluspShn", "record_id": "recvaUgluspShn"}, {"fields": {"End Date": 1770739200000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770739200000, "Status": "已完成", "Target Customers": null, "Task": "dns与网络流量路线", "Task Description": "1. 更新路线文档", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvaKkhobNKQT"], "table_id": "tblJR2WjY69BU7bK", "text": "智能院服务", "text_arr": ["智能院服务"], "type": "text"}]}, "id": "recvaKkYGzao98", "record_id": "recvaKkYGzao98"}, {"fields": {"End Date": 1770825600000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770825600000, "Status": "已完成", "Target Customers": null, "Task": "协助quincy将gpu预约系统上线", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvaKkhobNKQT"], "table_id": "tblJR2WjY69BU7bK", "text": "智能院服务", "text_arr": ["智能院服务"], "type": "text"}]}, "id": "recvaUrHvQkqk4", "record_id": "recvaUrHvQkqk4"}, {"fields": {"End Date": 1770825600000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770739200000, "Status": "已完成", "Target Customers": null, "Task": "交付 alpha agent", "Task Description": "1. 交付alpha agent给无界方舟", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvbdqVGFjDMK"], "table_id": "tblJR2WjY69BU7bK", "text": "AutoArk", "text_arr": ["AutoArk"], "type": "text"}]}, "id": "recvaKlhNyfM5n", "record_id": "recvaKlhNyfM5n"}, {"fields": {"End Date": 1774195200000, "Estimate Deadline": null, "Manday count": 8, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770739200000, "Status": "已完成", "Target Customers": null, "Task": "AutoArk", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvbdqVGFjDMK", "record_id": "recvbdqVGFjDMK"}, {"fields": {"End Date": 1770739200000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770652800000, "Status": "已完成", "Target Customers": null, "Task": "openclaw", "Task Description": "1. 支持更多的skills 2. 重新build镜像", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvbdqWrFWRt6", "record_id": "recvbdqWrFWRt6"}, {"fields": {"End Date": 1771862400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1771862400000, "Status": "已完成", "Target Customers": null, "Task": "完成autoark的portfolio模块debug", "Task Description": "1. 解决了429以及大任务下小任务失败会视作整体失败的问题", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvbdqVGFjDMK"], "table_id": "tblJR2WjY69BU7bK", "text": "AutoArk", "text_arr": ["AutoArk"], "type": "text"}]}, "id": "recvbdratTKSpk", "record_id": "recvbdratTKSpk"}, {"fields": {"End Date": 1770912000000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770912000000, "Status": "已完成", "Target Customers": null, "Task": "客户演示", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recv9MDZmRaqzv"], "table_id": "tblJR2WjY69BU7bK", "text": "Cyberport项目", "text_arr": ["Cyberport项目"], "type": "text"}]}, "id": "recvbAOOInyjFb", "record_id": "recvbAOOInyjFb"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": 6, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "ICC设备重装", "Task Description": "浪潮云重装;7960组建预生产环境", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvbAPP4h5gKA", "record_id": "recvbAPP4h5gKA"}, {"fields": {"End Date": 1770825600000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770739200000, "Status": "已完成", "Target Customers": null, "Task": "浪潮云重装", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvbAPP4h5gKA"], "table_id": "tblJR2WjY69BU7bK", "text": "ICC设备重装", "text_arr": ["ICC设备重装"], "type": "text"}]}, "id": "recvbAQx8u5zHK", "record_id": "recvbAQx8u5zHK"}, {"fields": {"End Date": 1770912000000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770825600000, "Status": "已完成", "Target Customers": null, "Task": "构建ICC预生产环境集群", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvbAPP4h5gKA"], "table_id": "tblJR2WjY69BU7bK", "text": "ICC设备重装", "text_arr": ["ICC设备重装"], "type": "text"}]}, "id": "recvbAQHETUSco", "record_id": "recvbAQHETUSco"}, {"fields": {"End Date": 1770825600000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1770825600000, "Status": "已完成", "Target Customers": null, "Task": "设置堡垒机", "Task Description": "Caddy、FRP、堡垒机配置及安装", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvbAPP4h5gKA"], "table_id": "tblJR2WjY69BU7bK", "text": "ICC设备重装", "text_arr": ["ICC设备重装"], "type": "text"}]}, "id": "recvbARccSrHVr", "record_id": "recvbARccSrHVr"}, {"fields": {"End Date": 1771862400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1771862400000, "Status": "已完成", "Target Customers": null, "Task": "frp问题诊断", "Task Description": "1. frpc单进程负责过多不同分类端口的转发,导致互相影响,web端口和openclaw端口互相间形成了影响会导致一个崩溃另一个也崩溃", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvc8peVBhEoj", "record_id": "recvc8peVBhEoj"}, {"fields": {"End Date": 1771948800000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1771948800000, "Status": "已完成", "Target Customers": null, "Task": "协助timous雷池测试", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvcdbWuVatcp", "record_id": "recvcdbWuVatcp"}, {"fields": {"End Date": 1771948800000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1771948800000, "Status": "已完成", "Target Customers": null, "Task": "asr, tts服务暴露以及文档编写", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvcdc4iKK3HU", "record_id": "recvcdc4iKK3HU"}, {"fields": {"End Date": 1772121600000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772121600000, "Status": "已完成", "Target Customers": null, "Task": "满足autoark对portfolio模块的新需求", "Task Description": "1. 定义全部股票完成方为任务成功,并且对每轮agent级别的重试,对tool调用的结果进行了缓存,来减少429出现", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvbdqVGFjDMK"], "table_id": "tblJR2WjY69BU7bK", "text": "AutoArk", "text_arr": ["AutoArk"], "type": "text"}]}, "id": "recvcoHEVzjx8r", "record_id": "recvcoHEVzjx8r"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": 5, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772121600000, "Status": "进行中", "Target Customers": null, "Task": "OmniChat", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvcoJlDIXFjn", "record_id": "recvcoJlDIXFjn"}, {"fields": {"End Date": 1773244800000, "Estimate Deadline": null, "Manday count": 9, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "重要", "Progress notes": null, "Related Documents": null, "Start date": 1771862400000, "Status": "已完成", "Target Customers": null, "Task": "ICC 预生产环境部署", "Task Description": "1. k8s集群搭建\n2. k8s 存储,网络等配置\n3. ocdp 平台", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvcqmaA0TlmD", "record_id": "recvcqmaA0TlmD"}, {"fields": {"End Date": 1772208000000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772121600000, "Status": "已完成", "Target Customers": null, "Task": "PROXMOX安装", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvcwzcLjiidF", "record_id": "recvcwzcLjiidF"}, {"fields": {"End Date": 1771862400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1771862400000, "Status": "已完成", "Target Customers": null, "Task": "卫生局SOW及OCDP截图", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvcwAbgXJ0tb", "record_id": "recvcwAbgXJ0tb"}, {"fields": {"End Date": 1772035200000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1771948800000, "Status": "已完成", "Target Customers": null, "Task": "跳板机设置及审计", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvcwAYZltW0k", "record_id": "recvcwAYZltW0k"}, {"fields": {"End Date": 1772380800000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772380800000, "Status": "已完成", "Target Customers": null, "Task": "修复了portfolio模块的sse事件内容推送乱序问题", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvbdqVGFjDMK"], "table_id": "tblJR2WjY69BU7bK", "text": "AutoArk", "text_arr": ["AutoArk"], "type": "text"}]}, "id": "recvcFFtTdSkmn", "record_id": "recvcFFtTdSkmn"}, {"fields": {"End Date": 1772467200000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772467200000, "Status": "已完成", "Target Customers": null, "Task": "portfolio回复速度优化", "Task Description": "1. 减少了数据接口获取间隔的节流时间", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvbdqVGFjDMK"], "table_id": "tblJR2WjY69BU7bK", "text": "AutoArk", "text_arr": ["AutoArk"], "type": "text"}]}, "id": "recvcHu3IeQYPr", "record_id": "recvcHu3IeQYPr"}, {"fields": {"End Date": 1772380800000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772380800000, "Status": "已完成", "Target Customers": null, "Task": "MinIO对象存储系统部署", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvcoJlDIXFjn"], "table_id": "tblJR2WjY69BU7bK", "text": "OmniChat", "text_arr": ["OmniChat"], "type": "text"}]}, "id": "recvcHub9jnesV", "record_id": "recvcHub9jnesV"}, {"fields": {"End Date": 1772467200000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772467200000, "Status": "已完成", "Target Customers": null, "Task": "ICC OCDP部署", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvcqmaA0TlmD"], "table_id": "tblJR2WjY69BU7bK", "text": "ICC 预生产环境部署", "text_arr": ["ICC 预生产环境部署"], "type": "text"}]}, "id": "recvcLqHVkSiZl", "record_id": "recvcLqHVkSiZl"}, {"fields": {"End Date": 1772985600000, "Estimate Deadline": null, "Manday count": 7, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772467200000, "Status": "已完成", "Target Customers": null, "Task": "Kubernetes Gateway部署與驗證", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvcMKhfS3xGo", "record_id": "recvcMKhfS3xGo"}, {"fields": {"End Date": 1772467200000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772467200000, "Status": "已完成", "Target Customers": null, "Task": "higress安装", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvcMKhfS3xGo"], "table_id": "tblJR2WjY69BU7bK", "text": "Kubernetes Gateway部署與驗證", "text_arr": ["Kubernetes Gateway部署與驗證"], "type": "text"}]}, "id": "recvcMKjIkUr5J", "record_id": "recvcMKjIkUr5J"}, {"fields": {"End Date": 1772985600000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772985600000, "Status": "已完成", "Target Customers": null, "Task": "argo cd", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvcMKhfS3xGo"], "table_id": "tblJR2WjY69BU7bK", "text": "Kubernetes Gateway部署與驗證", "text_arr": ["Kubernetes Gateway部署與驗證"], "type": "text"}]}, "id": "recvcMKrgXvIog", "record_id": "recvcMKrgXvIog"}, {"fields": {"End Date": 1772726400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772726400000, "Status": "已完成", "Target Customers": null, "Task": "livekit server使用k8s gateway就行服务暴露", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvcMKhfS3xGo"], "table_id": "tblJR2WjY69BU7bK", "text": "Kubernetes Gateway部署與驗證", "text_arr": ["Kubernetes Gateway部署與驗證"], "type": "text"}]}, "id": "recvcNdSpRCBBY", "record_id": "recvcNdSpRCBBY"}, {"fields": {"End Date": 1772467200000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772467200000, "Status": "已完成", "Target Customers": null, "Task": "chat模块开发", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvcoJlDIXFjn"], "table_id": "tblJR2WjY69BU7bK", "text": "OmniChat", "text_arr": ["OmniChat"], "type": "text"}]}, "id": "recvcNo95lxG7b", "record_id": "recvcNo95lxG7b"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772553600000, "Status": "已封存", "Target Customers": null, "Task": "call模块开发", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvcoJlDIXFjn"], "table_id": "tblJR2WjY69BU7bK", "text": "OmniChat", "text_arr": ["OmniChat"], "type": "text"}]}, "id": "recvcNoc10axCN", "record_id": "recvcNoc10axCN"}, {"fields": {"End Date": 1772553600000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772553600000, "Status": "已完成", "Target Customers": null, "Task": "更正了portfolio模块对于重试失败后的消息类型为Error", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvbdqVGFjDMK"], "table_id": "tblJR2WjY69BU7bK", "text": "AutoArk", "text_arr": ["AutoArk"], "type": "text"}]}, "id": "recvcSvLC2tmrj", "record_id": "recvcSvLC2tmrj"}, {"fields": {"End Date": 1772899200000, "Estimate Deadline": null, "Manday count": 0, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772812800000, "Status": "已完成", "Target Customers": null, "Task": "portfolio相关代码整理", "Task Description": "1. config部分按照代码规范统一放置 2. data获取部分按照代码进行封装分层放置 3. portfolio backtest部分检查一下异常缺失stock的情况是否会继续执行,还是报错 ", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvbdqVGFjDMK"], "table_id": "tblJR2WjY69BU7bK", "text": "AutoArk", "text_arr": ["AutoArk"], "type": "text"}]}, "id": "recvcT5P9EMIz0", "record_id": "recvcT5P9EMIz0"}, {"fields": {"End Date": 1772726400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772726400000, "Status": "已完成", "Target Customers": null, "Task": "livekit server采用higress自动化配置证书", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvcMKhfS3xGo"], "table_id": "tblJR2WjY69BU7bK", "text": "Kubernetes Gateway部署與驗證", "text_arr": ["Kubernetes Gateway部署與驗證"], "type": "text"}]}, "id": "recvd4T1FXVyYC", "record_id": "recvd4T1FXVyYC"}, {"fields": {"End Date": 1772640000000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": {"link": "https://gitea.bwgdi.com/Kubernetes/helm-charts", "text": "https://gitea.bwgdi.com/Kubernetes/helm-charts"}, "Start date": 1772553600000, "Status": "已完成", "Target Customers": null, "Task": "ICC chroma rag 部署", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvcqmaA0TlmD"], "table_id": "tblJR2WjY69BU7bK", "text": "ICC 预生产环境部署", "text_arr": ["ICC 预生产环境部署"], "type": "text"}]}, "id": "recvd4ZeaHRC9V", "record_id": "recvd4ZeaHRC9V"}, {"fields": {"End Date": 1772467200000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": {"link": "https://gitea.bwgdi.com/Kubernetes/Voice-charts", "text": "https://gitea.bwgdi.com/Kubernetes/Voice-charts"}, "Start date": 1772380800000, "Status": "已完成", "Target Customers": null, "Task": "Voice charts 打包", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvcqmaA0TlmD"], "table_id": "tblJR2WjY69BU7bK", "text": "ICC 预生产环境部署", "text_arr": ["ICC 预生产环境部署"], "type": "text"}]}, "id": "recvd51ymXJ6D3", "record_id": "recvd51ymXJ6D3"}, {"fields": {"End Date": 1773417600000, "Estimate Deadline": null, "Manday count": 9, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "一般", "Progress notes": null, "Related Documents": null, "Start date": 1772467200000, "Status": "进行中", "Target Customers": null, "Task": "WireGuard測試與功能驗證", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00sb_2ddc23a5-afeb-40c4-852e-f13d49644c2g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Benson", "id": "ou_7c091d83db9f1dfecc90bcf3e640c453", "name": "Benson"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvd6fgJQNuzB", "record_id": "recvd6fgJQNuzB"}, {"fields": {"End Date": 1773072000000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1773072000000, "Status": "已完成", "Target Customers": null, "Task": "omni 部署", "Task Description": "1. 重新部署omni以及gemma3", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvcqmaA0TlmD"], "table_id": "tblJR2WjY69BU7bK", "text": "ICC 预生产环境部署", "text_arr": ["ICC 预生产环境部署"], "type": "text"}]}, "id": "recvdr8UCfFCwY", "record_id": "recvdr8UCfFCwY"}, {"fields": {"End Date": 1773244800000, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1773072000000, "Status": "已完成", "Target Customers": null, "Task": "ASR/TTS, OCR部署", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvcqmaA0TlmD"], "table_id": "tblJR2WjY69BU7bK", "text": "ICC 预生产环境部署", "text_arr": ["ICC 预生产环境部署"], "type": "text"}]}, "id": "recvdlOIuBeyVU", "record_id": "recvdlOIuBeyVU"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": 4, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "LiteLLM 改造", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvdlPbNeWXb5", "record_id": "recvdlPbNeWXb5"}, {"fields": {"End Date": 1774368000000, "Estimate Deadline": 1774368000000, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1774368000000, "Status": "已完成", "Target Customers": null, "Task": "AD 基建部署", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00sb_2ddc23a5-afeb-40c4-852e-f13d49644c2g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Benson", "id": "ou_7c091d83db9f1dfecc90bcf3e640c453", "name": "Benson"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvdlPbNeWXb5"], "table_id": "tblJR2WjY69BU7bK", "text": "LiteLLM 改造", "text_arr": ["LiteLLM 改造"], "type": "text"}]}, "id": "recvdlPBlieHAS", "record_id": "recvdlPBlieHAS"}, {"fields": {"End Date": 1774368000000, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1774195200000, "Status": "已完成", "Target Customers": null, "Task": "SSO 集成", "Task Description": "1. litellm本身的鉴权授权有哪些?(多少用户?细粒度?)\n2. 如果是在litellm之外,独立一套LDAP,那该如何控制细粒度,授权等问题?", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvdlPbNeWXb5"], "table_id": "tblJR2WjY69BU7bK", "text": "LiteLLM 改造", "text_arr": ["LiteLLM 改造"], "type": "text"}]}, "id": "recvdlPDEsNYJM", "record_id": "recvdlPDEsNYJM"}, {"fields": {"End Date": 1772985600000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772985600000, "Status": "已完成", "Target Customers": null, "Task": "采用http-01进行自动化证书签署", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvcMKhfS3xGo"], "table_id": "tblJR2WjY69BU7bK", "text": "Kubernetes Gateway部署與驗證", "text_arr": ["Kubernetes Gateway部署與驗證"], "type": "text"}]}, "id": "recvdmCdDwcGyK", "record_id": "recvdmCdDwcGyK"}, {"fields": {"End Date": 1772985600000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772985600000, "Status": "已完成", "Target Customers": null, "Task": "采用dns-01来替代http-01进行自动化证书签署", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvcMKhfS3xGo"], "table_id": "tblJR2WjY69BU7bK", "text": "Kubernetes Gateway部署與驗證", "text_arr": ["Kubernetes Gateway部署與驗證"], "type": "text"}]}, "id": "recvdmCiNLgqkO", "record_id": "recvdmCiNLgqkO"}, {"fields": {"End Date": 1772985600000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772985600000, "Status": "已完成", "Target Customers": null, "Task": "采用wildcard domain证书来统一覆盖多个子域名的证书需求", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvcMKhfS3xGo"], "table_id": "tblJR2WjY69BU7bK", "text": "Kubernetes Gateway部署與驗證", "text_arr": ["Kubernetes Gateway部署與驗證"], "type": "text"}]}, "id": "recvdmCpDQFm7e", "record_id": "recvdmCpDQFm7e"}, {"fields": {"End Date": 1772985600000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772985600000, "Status": "已完成", "Target Customers": null, "Task": "portfolio代码配置测试", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvbdqVGFjDMK"], "table_id": "tblJR2WjY69BU7bK", "text": "AutoArk", "text_arr": ["AutoArk"], "type": "text"}]}, "id": "recvdmCUVvDEVI", "record_id": "recvdmCUVvDEVI"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": 6, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1773072000000, "Status": "进行中", "Target Customers": null, "Task": "个人智能体", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvdqsjY6a5OE", "record_id": "recvdqsjY6a5OE"}, {"fields": {"End Date": 1773072000000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1773072000000, "Status": "已完成", "Target Customers": null, "Task": "matrix全家桶部署", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvdqsjY6a5OE"], "table_id": "tblJR2WjY69BU7bK", "text": "个人智能体", "text_arr": ["个人智能体"], "type": "text"}]}, "id": "recvdqslQcVOqa", "record_id": "recvdqslQcVOqa"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": "已完成MinIO MCP服务的部署,能完成增删改查的操作,并且通过admin账户的权限可以做到新用户创建。下周将其集成到Nanobot前端界面中,计划每个用户在注册账户时同步建立一个独属于用户的账户并创建一个新的bucket", "Related Documents": null, "Start date": 1774281600000, "Status": "进行中", "Target Customers": null, "Task": "将MinIO用MCP方式接入龙虾", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvdr8Wx2E5ec", "record_id": "recvdr8Wx2E5ec"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1773072000000, "Status": "已封存", "Target Customers": null, "Task": "call模块开发", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvcoJlDIXFjn"], "table_id": "tblJR2WjY69BU7bK", "text": "OmniChat", "text_arr": ["OmniChat"], "type": "text"}]}, "id": "recvdrLJRVOS0M", "record_id": "recvdrLJRVOS0M"}, {"fields": {"End Date": 1773331200000, "Estimate Deadline": null, "Manday count": 3, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1773158400000, "Status": "已封存", "Target Customers": null, "Task": "livekit server", "Task Description": "1. livekit 公网访问出现暂时无法解决的网络问题", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvcoJlDIXFjn"], "table_id": "tblJR2WjY69BU7bK", "text": "OmniChat", "text_arr": ["OmniChat"], "type": "text"}]}, "id": "recvdIzTJjFW2z", "record_id": "recvdIzTJjFW2z"}, {"fields": {"End Date": 1773072000000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1772985600000, "Status": "已完成", "Target Customers": null, "Task": "OCDP宣传物料准备", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvdW6DVPQpPk", "record_id": "recvdW6DVPQpPk"}, {"fields": {"End Date": 1773417600000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1773331200000, "Status": "已完成", "Target Customers": null, "Task": "NanoBot镜像及Dockerfile准备", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvdW70bTGyFU", "record_id": "recvdW70bTGyFU"}, {"fields": {"End Date": 1773331200000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1773331200000, "Status": "已完成", "Target Customers": null, "Task": "H100迁移回ICC", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvdW7SkKIqQH", "record_id": "recvdW7SkKIqQH"}, {"fields": {"End Date": 1773676800000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": {"link": "https://cv0ujbh7wf2.feishu.cn/docx/OgSPdHLl9oOhKPxE4PWc4FFnncd", "text": "PROXMOX VM Guide"}, "Start date": 1773590400000, "Status": "已完成", "Target Customers": null, "Task": "VM平台准备", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvdW8gUQuEvR", "record_id": "recvdW8gUQuEvR"}, {"fields": {"End Date": 1773676800000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1773676800000, "Status": "已完成", "Target Customers": null, "Task": "litellm新版本更新", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvdW8FX10C1n", "record_id": "recvdW8FX10C1n"}, {"fields": {"End Date": 1773676800000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1773676800000, "Status": "已完成", "Target Customers": null, "Task": "k8s casdoor部署", "Task Description": "1. 相应的casdoor mysql部署 2. k8s上的casdoor部署", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvdqsjY6a5OE"], "table_id": "tblJR2WjY69BU7bK", "text": "个人智能体", "text_arr": ["个人智能体"], "type": "text"}]}, "id": "recve6tiE2BEs2", "record_id": "recve6tiE2BEs2"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "暂停滞", "Target Customers": null, "Task": "将nano project k8s化", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvdqsjY6a5OE"], "table_id": "tblJR2WjY69BU7bK", "text": "个人智能体", "text_arr": ["个人智能体"], "type": "text"}]}, "id": "recve6tldXvI2s", "record_id": "recve6tldXvI2s"}, {"fields": {"End Date": 1773590400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1773590400000, "Status": "已完成", "Target Customers": null, "Task": "iam系统poc", "Task Description": "1. 暂时对casdoor以及zitadel进行了poc", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvdqsjY6a5OE"], "table_id": "tblJR2WjY69BU7bK", "text": "个人智能体", "text_arr": ["个人智能体"], "type": "text"}]}, "id": "recve6tpTutKNB", "record_id": "recve6tpTutKNB"}, {"fields": {"End Date": 1773676800000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1773676800000, "Status": "已完成", "Target Customers": null, "Task": "nano project的代码查看", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvdqsjY6a5OE"], "table_id": "tblJR2WjY69BU7bK", "text": "个人智能体", "text_arr": ["个人智能体"], "type": "text"}]}, "id": "recve6tzbc8uZp", "record_id": "recve6tzbc8uZp"}, {"fields": {"End Date": 1773936000000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1773936000000, "Status": "已完成", "Target Customers": null, "Task": "authentik部署", "Task Description": "1. 采用authentik来完成认证", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvdqsjY6a5OE"], "table_id": "tblJR2WjY69BU7bK", "text": "个人智能体", "text_arr": ["个人智能体"], "type": "text"}]}, "id": "recvencNcvoqkK", "record_id": "recvencNcvoqkK"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "暂停滞", "Target Customers": null, "Task": "前端页面修改", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvdlPbNeWXb5"], "table_id": "tblJR2WjY69BU7bK", "text": "LiteLLM 改造", "text_arr": ["LiteLLM 改造"], "type": "text"}]}, "id": "recveoXcCjfytF", "record_id": "recveoXcCjfytF"}, {"fields": {"End Date": 1773676800000, "Estimate Deadline": null, "Manday count": 2, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1773590400000, "Status": "已完成", "Target Customers": null, "Task": "6000Pro上架及测试", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recveExAkcS6FX", "record_id": "recveExAkcS6FX"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": 0, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1774195200000, "Status": "进行中", "Target Customers": null, "Task": "OCDP重构", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recveRnPndldz8", "record_id": "recveRnPndldz8"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1774195200000, "Status": "进行中", "Target Customers": null, "Task": "架构设计", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recveRnPndldz8"], "table_id": "tblJR2WjY69BU7bK", "text": "OCDP重构", "text_arr": ["OCDP重构"], "type": "text"}]}, "id": "recveRnT2tzdrm", "record_id": "recveRnT2tzdrm"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "未开始", "Target Customers": null, "Task": "功能测试", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recveRnPndldz8"], "table_id": "tblJR2WjY69BU7bK", "text": "OCDP重构", "text_arr": ["OCDP重构"], "type": "text"}]}, "id": "recveRnY1v5hJ0", "record_id": "recveRnY1v5hJ0"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1774195200000, "Status": "进行中", "Target Customers": null, "Task": "文档编写", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recveRnPndldz8"], "table_id": "tblJR2WjY69BU7bK", "text": "OCDP重构", "text_arr": ["OCDP重构"], "type": "text"}]}, "id": "recveRnZzUhraJ", "record_id": "recveRnZzUhraJ"}, {"fields": {"End Date": 1774281600000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1774281600000, "Status": "已完成", "Target Customers": null, "Task": "observability系统", "Task Description": "采用LGTM架构以及alloy(otlp)来完成应用的可观测性需求", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recveSklZ7z3RK", "record_id": "recveSklZ7z3RK"}, {"fields": {"End Date": 1774454400000, "Estimate Deadline": null, "Manday count": 1, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1774454400000, "Status": "已完成", "Target Customers": null, "Task": "matrix的servername问题修复", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvdqsjY6a5OE"], "table_id": "tblJR2WjY69BU7bK", "text": "个人智能体", "text_arr": ["个人智能体"], "type": "text"}]}, "id": "recveW8QzDAhmy", "record_id": "recveW8QzDAhmy"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1774540800000, "Status": "进行中", "Target Customers": null, "Task": "matrix的联邦化互联", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvdqsjY6a5OE"], "table_id": "tblJR2WjY69BU7bK", "text": "个人智能体", "text_arr": ["个人智能体"], "type": "text"}]}, "id": "recveXTAowpC0c", "record_id": "recveXTAowpC0c"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "进行中", "Target Customers": null, "Task": "matric相关测试", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recveRnPndldz8"], "table_id": "tblJR2WjY69BU7bK", "text": "OCDP重构", "text_arr": ["OCDP重构"], "type": "text"}]}, "id": "recveXTNBhv5uj", "record_id": "recveXTNBhv5uj"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": 0, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "进行中", "Target Customers": null, "Task": "GPU 监控", "Task Description": null, "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvf3wFufnaCL", "record_id": "recvf3wFufnaCL"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": {"link": "https://cv0ujbh7wf2.feishu.cn/wiki/EFE1wVrxSiwfRMkNUVBcW0bSnIc", "text": "HAMi"}, "Start date": null, "Status": "进行中", "Target Customers": null, "Task": "集群内经典监控", "Task Description": "dcgm -> serviceMonitor -> prometheus -> grafana", "Task leader": null, "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": ["recvf3wFufnaCL"], "table_id": "tblJR2WjY69BU7bK", "text": "GPU 监控", "text_arr": ["GPU 监控"], "type": "text"}]}, "id": "recvf3wSQG4uSt", "record_id": "recvf3wSQG4uSt"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": "Nemotron3能够在6000Pro上完成部署,但是在A800上vllm报错gpu不支持,下周查明是不是真的有针对硬件的模型支持条件。\nNemotron3在Coding层面不太理想,目前尝试放到龙虾上进行测试", "Related Documents": null, "Start date": 1774195200000, "Status": "进行中", "Target Customers": null, "Task": "模型测试", "Task Description": "Nemotron 3 Super、kimi 2.5、qwen 3.5模型测试", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "备注": null, "完成功能": [{"record_ids": null, "table_id": "tblZRMr82RaQjfJS", "text": null, "text_arr": [], "type": "text"}], "父记录": [{"record_ids": null, "table_id": "tblJR2WjY69BU7bK", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvf45qN4qjNP", "record_id": "recvf45qN4qjNP"}]}, {"name": "MM Group", "records": [{"fields": {"Days Left": 0, "End Date": 1760112000000, "Estimate Deadline": 1760112000000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": "浪潮雲原有的 CUDA driver 與 NCCL 有衝突,在 vLLM >= 0.9.1 & -tp >= 2多卡推理會引發 error,透過更新浪潮雲的 CUDA driver 解決 (fixed by JC)", "Related Documents": null, "Start date": 1759248000000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "Qwen3-VL & Qwen3-Omni 環境部署", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv14uQadX9Mx", "record_id": "recv14uQadX9Mx"}, {"fields": {"Days Left": 0, "End Date": 1760025600000, "Estimate Deadline": 1760025600000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": "Qwen3-Omni\n截止到 Oct 10, 2025,所有測試都是基於 transformers 來推理,目前 vLLM 未支持 audio output,但 Qwen Team 說未來會支持 ⇒ 使用 transformers 來推理會很慢", "Related Documents": null, "Start date": 1759680000000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "Qwen3-Omni 能力測試", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv14wyuHcyxL", "record_id": "recv14wyuHcyxL"}, {"fields": {"Days Left": 0, "End Date": 1767283200000, "Estimate Deadline": null, "Images": null, "Manday count": "40", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": " MoE Model Fine-tuning", "Related Documents": null, "Start date": 1760889600000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "MoE model fine-tuning & evaluation", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv14ylsW2dmS", "record_id": "recv14ylsW2dmS"}, {"fields": {"Days Left": 0, "End Date": 1763654400000, "Estimate Deadline": 1763654400000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": "21/11 - 已完成初版整理", "Related Documents": [{"file_token": "VqXnb0MNXoTCDqxEhORcel3dnid", "name": "ird-slide-gallery.pptx", "size": 61476043, "tmp_url": "https://open.feishu.cn/open-apis/drive/v1/medias/batch_get_tmp_download_url?file_tokens=VqXnb0MNXoTCDqxEhORcel3dnid", "type": "application/vnd.openxmlformats-officedocument.presentationml.presentation", "url": "https://open.feishu.cn/open-apis/drive/v1/medias/VqXnb0MNXoTCDqxEhORcel3dnid/download"}], "Start date": 1763049600000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "PPT 常用素材模版整理", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv14yZt4zcX7", "record_id": "recv14yZt4zcX7"}, {"fields": {"Days Left": -46112, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Stalled", "Target Customers": ["IRD"], "Task": "Invoice OCR 功能整合到 Agent workflow", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv14z4PTYHGW", "record_id": "recv14z4PTYHGW"}, {"fields": {"Days Left": 0, "End Date": 1760025600000, "Estimate Deadline": 1760025600000, "Images": null, "Manday count": "1", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": "HuggingFace Team 從超過 200 個現有數據集來源中彙集而來,旨在提供高品質的 Image-Text pair 數據,幫助模型更好地理解視覺內容並進行推理。\nhttps://huggingface.co/datasets/HuggingFaceM4/FineVision", "Related Documents": null, "Start date": 1759680000000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "下載 FineVision 數據集", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv14AQDNWGjQ", "record_id": "recv14AQDNWGjQ"}, {"fields": {"Days Left": 0, "End Date": 1760025600000, "Estimate Deadline": 1760025600000, "Images": null, "Manday count": "2", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": "MGM - POC - VibeInvoiceInvoice OCR\n已有的 OCR models,如 PaddleOCR, PaddleOCR-VL, dots.ocr 雖可做到 Layout Parsing 和 OCR,但無法像 VLM 一樣可以理解 user instruction,尤其對一些手寫修改的部份無法理解,如 Tom 文檔中提到的部份", "Related Documents": null, "Start date": 1759680000000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "Qwen3-VL Invoice OCR", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv14BTsYhiDQ", "record_id": "recv14BTsYhiDQ"}, {"fields": {"Days Left": 0, "End Date": 1760630400000, "Estimate Deadline": 1760630400000, "Images": null, "Manday count": "3", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": [{"file_token": "FRzDbgUPeoxxTAxLExdcMgdgn4c", "name": "20251015-vlm-and-data-synthesis-v2.pptx", "size": 189262204, "tmp_url": "https://open.feishu.cn/open-apis/drive/v1/medias/batch_get_tmp_download_url?file_tokens=FRzDbgUPeoxxTAxLExdcMgdgn4c", "type": "application/vnd.openxmlformats-officedocument.presentationml.presentation", "url": "https://open.feishu.cn/open-apis/drive/v1/medias/FRzDbgUPeoxxTAxLExdcMgdgn4c/download"}], "Start date": 1760284800000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "多模態模型微調 & 數據合成 slide", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv14DFPwYYxK", "record_id": "recv14DFPwYYxK"}, {"fields": {"Days Left": 0, "End Date": 1762444800000, "Estimate Deadline": 1764172800000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": "- 完成人臉表情分類的部份,等待與小舟的剖份做整合 (Oct 31, 2025)\n- 整合人臉表人臉表情分類和腦電部份 (Nov 6, 2025)", "Related Documents": [{"file_token": "DBFVbwcL1o0FTaxuHfwclYpBnQg", "name": "2023B - new-20251107-23b-presentation-final.pptx", "size": 41625926, "tmp_url": "https://open.feishu.cn/open-apis/drive/v1/medias/batch_get_tmp_download_url?file_tokens=DBFVbwcL1o0FTaxuHfwclYpBnQg", "type": "application/vnd.openxmlformats-officedocument.presentationml.presentation", "url": "https://open.feishu.cn/open-apis/drive/v1/medias/DBFVbwcL1o0FTaxuHfwclYpBnQg/download"}], "Start date": 1763049600000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "23B Annual Presentation (Nov 7, 2025)", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv14EgZUKHaw", "record_id": "recv14EgZUKHaw"}, {"fields": {"Days Left": 0, "End Date": 1770998400000, "Estimate Deadline": null, "Images": null, "Manday count": "30", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": "\n陈文晓1月24日 22:42\ntts-blackbox重构及文档整理:https://github.com/BoardWare-Genius/tts-blackbox\n\n陈文晓1月24日 22:43\n更新至1.0.0版本\n\n\nBenson\n\n陈文晓1月30日 19:08 (编辑过)\n更新asr-blackbox,接入使用fun-asr-nano-2512\n\n陈文晓2月6日 18:34\n重构asr-blackbox,并更新采用uv部署,代码迁移到https://gitea.bwgdi.com/BoardWare-Genius/asr-blackbox\n\n陈文晓2月6日 18:35\n编写gemma translate的接口代码https://gitea.bwgdi.com/BoardWare-Genius/TranslateGemma\n\n陈文晓2月14日 18:15\nasr tts 改造完成,正式部署在05号机子:asr-blackbox(Qwen3-ASR-1.7B), tts-blackbox(VoxCPM)\n\n陈文晓2月14日 18:17\ncurl --location 'http://10.6.80.21:5001/asr-blackbox' \\\n--form 'audio=@\"/home/verachen/Music/prompt_audio_2_en.wav\"' \\\n--form 'model_name=\"qwen\"'\n\n陈文晓2月14日 18:17\ncurl --location 'http://10.6.80.21:5002/tts-blackbox' \\\n--form 'text=\"你好,这是一段测试文本\"' \\\n--form 'model_name=\"voxcpmtts\"'\n\n\nBenson\n\n", "Related Documents": null, "Start date": 1763136000000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "TTS ASR系统设计开发", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": "1月24日,陈文晓完成tts-blackbox重构及文档整理并更新至1.0.0版本;1月30日更新asr-blackbox,接入fun-asr-nano-2512;2月6日重构asr-blackbox,采用uv部署并迁移代码,同时编写gemma translate接口代码;2月14日完成asr和tts改造,将asr-blackbox(Qwen3-ASR-1.7B)和tts-blackbox(VoxCPM)正式部署在05号机子,并提供了相应的curl调用示例。", "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv14HesizlNf", "record_id": "recv14HesizlNf"}, {"fields": {"Days Left": 0, "End Date": 1765900800000, "Estimate Deadline": 1764259200000, "Images": null, "Manday count": "30", "Overdue": [{"text": "🚨 Overdue", "type": "text"}], "Priority": "Normal", "Progress notes": "TTS 并发测试", "Related Documents": null, "Start date": 1759939200000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "测试相关tts并发问题(melotts, indextts, cosyvoicetts, voxcpm等)", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv14HL5yZZlp", "record_id": "recv14HL5yZZlp"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": "-MeloTTS并发优化打包到harbor v0.0.3\n-CosyVoice并发优化不明显", "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "TTS并发优化", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv14HL5ygMxT", "record_id": "recv14HL5ygMxT"}, {"fields": {"Days Left": 0, "End Date": 1768492800000, "Estimate Deadline": 1768492800000, "Images": null, "Manday count": "20", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": "TTS综合测试 TTS 并发测试", "Related Documents": null, "Start date": 1763395200000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "TTS功能测试", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv14HL5yAdNw", "record_id": "recv14HL5yAdNw"}, {"fields": {"Days Left": -90, "End Date": null, "Estimate Deadline": 1767110400000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": "陈文晓2025年12月4日\n现已接通大模型部分,rag-blackbox还没能完全测试可用\n\n吴嘉泰2025年12月12日\nrag-blackbox 接通完成,需要对请求模型参数做更多细节比对\n\n吴嘉泰2025年12月19日\n增加历史会话功能,参数增添了temperature,但是\"presence_penalty\" , \"frequency_penalty\" , \"repetition_penalty\"等还没加成。另外还有rag upsert功能没对结果(谨慎添加)。", "Related Documents": null, "Start date": 1764604800000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "配合小舟BarcoOne对接blackbox", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv14HL5y61YP", "record_id": "recv14HL5y61YP"}, {"fields": {"Days Left": -46112, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": 1763136000000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "“令人心动的Idea”项目及安排管理", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv14HL5yHept", "record_id": "recv14HL5yHept"}, {"fields": {"Days Left": -46112, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": "陈文晓1月24日 22:44\n1.23嗑点啦硬件采购收货\n\n陈文晓2月6日 18:57\n因为ESP32目前是支持Websocket和MQTT协议的,在不改底层驱动的情况下,建议采用转换桥接上去,这样能快速验证效果,目前写好了桥接流程,正在等待livekit服务连接,另外我的磕点啦屏幕有点问题,准备寄回去检查一下,也可以用原来的M5STACKCORE3进行验证\n\n陈文晓2月14日 18:22\n测试磕点啦桥接代码,livekit服务起来了获得token填进桥接代码里,但是显示网络没通,节后回来再看看,记得问问忠杰\n\n陈文晓2月28日 18:52\n测试桥接代码,目前可以发送音频到livekit服务中,下一步需要自己自定义agents 接通omnichat\n\nBenson3月6日 23:29\n@陈文晓 超牛的,有點期待\n\n陈文晓3月13日 19:45\n收到嗑点啦的设备,然后更新烧了2.2.1版本的小智上去了,添加摄像头实时采集数据功能,但是还没通。\n\n陈文晓3月20日 17:48\n还在调试摄像头实时采集数据功能\n\n陈文晓刚刚 (编辑过)\n部署livekit环境,跑一下示例livekitagent,下周准备嗑点啦livekitagent代码开发,忠杰的那个ominchat的那三份代码不准备用了,不适用嗑点啦", "Related Documents": null, "Start date": null, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "嗑点啦", "Task Description": "1. 代码功能开发\n2. 呈现形式展示\n3. 對接到OmniChat 2.0框架(用戶記憶,工具調用,多模態交互優化,調研對比OVA OS功能)", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv8I35tzI9Nm", "record_id": "recv8I35tzI9Nm"}, {"fields": {"Days Left": 0, "End Date": 1770307200000, "Estimate Deadline": 1766678400000, "Images": [{"file_token": "A5UbblXl9oqkC1xMyMjcbYBrnAd", "name": "image.png", "size": 22807, "tmp_url": "https://open.feishu.cn/open-apis/drive/v1/medias/batch_get_tmp_download_url?file_tokens=A5UbblXl9oqkC1xMyMjcbYBrnAd", "type": "image/png", "url": "https://open.feishu.cn/open-apis/drive/v1/medias/A5UbblXl9oqkC1xMyMjcbYBrnAd/download"}], "Manday count": "25", "Overdue": [{"text": "🚨 Overdue", "type": "text"}], "Priority": "Important", "Progress notes": "1. 客户端服务端建立 2. 音频采集", "Related Documents": null, "Start date": 1763913600000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "AI-Translation POC", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv3aVQF6p1ct", "record_id": "recv3aVQF6p1ct"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": 1764172800000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": null, "Related Documents": null, "Start date": 1763136000000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "C2项目PPT准备和答辩准备", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv15CGpKwiET", "record_id": "recv15CGpKwiET"}, {"fields": {"Days Left": -46112, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Not yet started", "Target Customers": ["IRD"], "Task": "记忆力小模型方案设计", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}], "总结": "该内容是关于“记忆力小模型方案设计”的一条记录,状态为“Normal”(正常),且“Not yet started”(尚未开始),负责人为马其远。", "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv16dagLhQxV", "record_id": "recv16dagLhQxV"}, {"fields": {"Days Left": -46112, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Not yet started", "Target Customers": ["IRD"], "Task": "公开数据集收集和自制数据集", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}], "总结": "该内容涉及“公开数据集收集和自制数据集”,状态为“Not yet started”(尚未开始),负责人为马其远,状态标记为“✅ Normal”(正常)。", "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv16ea1L3da3", "record_id": "recv16ea1L3da3"}, {"fields": {"Days Left": -46112, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Not yet started", "Target Customers": ["IRD"], "Task": "VLA数据合成相关文献调研", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}], "总结": "对VLA数据合成相关文献的调研任务,状态为“Normal”且“Not yet started”,负责人为马其远。", "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv16enmRVLVN", "record_id": "recv16enmRVLVN"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": "Step-Audio TTS Testing", "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "step-audio2功能测试", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv14HL5yAdNw"], "table_id": "tblcK7RNfVTE0krF", "text": "TTS功能测试", "text_arr": ["TTS功能测试"], "type": "text"}]}, "id": "recv2erLxOdxFZ", "record_id": "recv2erLxOdxFZ"}, {"fields": {"Days Left": -46112, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Stalled", "Target Customers": ["IRD"], "Task": "VLM 與小舟眼鏡對接 (Qwen3-Omni/Qwen3-VL)", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2OFArNTsJG", "record_id": "recv2OFArNTsJG"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "cosyvoice功能测试", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv14HL5yAdNw"], "table_id": "tblcK7RNfVTE0krF", "text": "TTS功能测试", "text_arr": ["TTS功能测试"], "type": "text"}]}, "id": "recv3aYh0iu3Uz", "record_id": "recv3aYh0iu3Uz"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "indextts2功能测试", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv14HL5yAdNw"], "table_id": "tblcK7RNfVTE0krF", "text": "TTS功能测试", "text_arr": ["TTS功能测试"], "type": "text"}]}, "id": "recv3aYyDTvaeo", "record_id": "recv3aYyDTvaeo"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "melotts功能测试", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv14HL5yAdNw"], "table_id": "tblcK7RNfVTE0krF", "text": "TTS功能测试", "text_arr": ["TTS功能测试"], "type": "text"}]}, "id": "recv3aYCzDRHOt", "record_id": "recv3aYCzDRHOt"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "voxcpm功能测试", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv14HL5yAdNw"], "table_id": "tblcK7RNfVTE0krF", "text": "TTS功能测试", "text_arr": ["TTS功能测试"], "type": "text"}]}, "id": "recv3aZaEHoBQa", "record_id": "recv3aZaEHoBQa"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": 1762963200000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": null, "Related Documents": null, "Start date": 1760457600000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "Video-Understanding的Paper", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv15CxDaPAPF", "record_id": "recv15CxDaPAPF"}, {"fields": {"Days Left": -81, "End Date": null, "Estimate Deadline": 1767888000000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": null, "Related Documents": null, "Start date": 1765123200000, "Status": "Stalled", "Target Customers": ["IRD"], "Task": "具身智能大模型记忆力", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv16egKJCLlj", "record_id": "recv16egKJCLlj"}, {"fields": {"Days Left": -106, "End Date": null, "Estimate Deadline": 1765728000000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1764000000000, "Status": "Wishlist", "Target Customers": ["IRD"], "Task": "ASR Model Comparison", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv3aVQF6p1ct"], "table_id": "tblcK7RNfVTE0krF", "text": "AI-Translation POC", "text_arr": ["AI-Translation POC"], "type": "text"}]}, "id": "recv3yf3F5ZCBf", "record_id": "recv3yf3F5ZCBf"}, {"fields": {"Days Left": 0, "End Date": 1763913600000, "Estimate Deadline": 1763913600000, "Images": null, "Manday count": "2", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": "客户端代码编写,可使用麦克风或者wav测试", "Related Documents": null, "Start date": 1763654400000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "Client POC", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv3aVQF6p1ct"], "table_id": "tblcK7RNfVTE0krF", "text": "AI-Translation POC", "text_arr": ["AI-Translation POC"], "type": "text"}]}, "id": "recv3yfoytpc9n", "record_id": "recv3yfoytpc9n"}, {"fields": {"Days Left": 0, "End Date": 1766073600000, "Estimate Deadline": 1766073600000, "Images": null, "Manday count": "12.5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1764086400000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "Server Websocket POC", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv3aVQF6p1ct"], "table_id": "tblcK7RNfVTE0krF", "text": "AI-Translation POC", "text_arr": ["AI-Translation POC"], "type": "text"}]}, "id": "recv3yfoNHyJsj", "record_id": "recv3yfoNHyJsj"}, {"fields": {"Days Left": 0, "End Date": 1766073600000, "Estimate Deadline": 1765728000000, "Images": null, "Manday count": "1", "Overdue": [{"text": "🚨 Overdue", "type": "text"}], "Priority": null, "Progress notes": "已解决\n1. 已初步使用fsmn-vad进行分片,但是效果不太理想,需要再研究一下", "Related Documents": null, "Start date": 1763654400000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "Audio segmentation", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv3yfoNHyJsj"], "table_id": "tblcK7RNfVTE0krF", "text": "Server Websocket POC", "text_arr": ["Server Websocket POC"], "type": "text"}]}, "id": "recv3DMyXcXXFB", "record_id": "recv3DMyXcXXFB"}, {"fields": {"Days Left": 0, "End Date": 1764000000000, "Estimate Deadline": 1764000000000, "Images": null, "Manday count": "2", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": "已验证funasr vad->stepaudio整体流程可行", "Related Documents": null, "Start date": 1763654400000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "整体流程快速验证", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv3yfoNHyJsj"], "table_id": "tblcK7RNfVTE0krF", "text": "Server Websocket POC", "text_arr": ["Server Websocket POC"], "type": "text"}]}, "id": "recv3DM2TeDNCz", "record_id": "recv3DM2TeDNCz"}, {"fields": {"Days Left": 0, "End Date": 1765814400000, "Estimate Deadline": 1765468800000, "Images": null, "Manday count": "8", "Overdue": [{"text": "🚨 Overdue", "type": "text"}], "Priority": null, "Progress notes": "初步web-demo已成形,支持文件上传和实时翻译", "Related Documents": null, "Start date": 1764086400000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "简单的web-demo", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv3yfoNHyJsj"], "table_id": "tblcK7RNfVTE0krF", "text": "Server Websocket POC", "text_arr": ["Server Websocket POC"], "type": "text"}]}, "id": "recv3DKhNQ6HBG", "record_id": "recv3DKhNQ6HBG"}, {"fields": {"Days Left": 0, "End Date": 1766419200000, "Estimate Deadline": 1766678400000, "Images": null, "Manday count": "2", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1766332800000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "环境打包测试", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv3aVQF6p1ct"], "table_id": "tblcK7RNfVTE0krF", "text": "AI-Translation POC", "text_arr": ["AI-Translation POC"], "type": "text"}]}, "id": "recv3yfoZzXNKg", "record_id": "recv3yfoZzXNKg"}, {"fields": {"Days Left": 0, "End Date": 1764086400000, "Estimate Deadline": 1764086400000, "Images": null, "Manday count": "1.5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": "建立websocket服务,通过websocket传输音频流,并且返回翻译结果给客户端", "Related Documents": null, "Start date": 1763654400000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "WebSocket server & API development", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv3yfoNHyJsj"], "table_id": "tblcK7RNfVTE0krF", "text": "Server Websocket POC", "text_arr": ["Server Websocket POC"], "type": "text"}]}, "id": "recv3DMjBzsnAQ", "record_id": "recv3DMjBzsnAQ"}, {"fields": {"Days Left": -106, "End Date": null, "Estimate Deadline": 1765728000000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": "1. 已部署环境,初步测试可粤语翻译英语", "Related Documents": null, "Start date": 1764000000000, "Status": "Wishlist", "Target Customers": ["IRD"], "Task": "openai whisper large v3", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv3yf3F5ZCBf"], "table_id": "tblcK7RNfVTE0krF", "text": "ASR Model Comparison", "text_arr": ["ASR Model Comparison"], "type": "text"}]}, "id": "recv3DSRricDzs", "record_id": "recv3DSRricDzs"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": 1765728000000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": "1. 已部署环境,初步测试可粤语翻译英语", "Related Documents": null, "Start date": 1764000000000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "Step-Audio v2", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv3yf3F5ZCBf"], "table_id": "tblcK7RNfVTE0krF", "text": "ASR Model Comparison", "text_arr": ["ASR Model Comparison"], "type": "text"}]}, "id": "recv3DSWdhCzYC", "record_id": "recv3DSWdhCzYC"}, {"fields": {"Days Left": -106, "End Date": null, "Estimate Deadline": 1765728000000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1764000000000, "Status": "Wishlist", "Target Customers": ["IRD"], "Task": "qwen3-livetranslate-flash", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv3yf3F5ZCBf"], "table_id": "tblcK7RNfVTE0krF", "text": "ASR Model Comparison", "text_arr": ["ASR Model Comparison"], "type": "text"}]}, "id": "recv3DSZYjEUFy", "record_id": "recv3DSZYjEUFy"}, {"fields": {"Days Left": 0, "End Date": 1770307200000, "Estimate Deadline": 1770307200000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": "使用qwen3+gemma流程来进行翻译", "Related Documents": null, "Start date": 1769961600000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "qwen3+gemma", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv3yf3F5ZCBf"], "table_id": "tblcK7RNfVTE0krF", "text": "ASR Model Comparison", "text_arr": ["ASR Model Comparison"], "type": "text"}]}, "id": "recvarpqBaE6gF", "record_id": "recvarpqBaE6gF"}, {"fields": {"Days Left": -46112, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Not yet started", "Target Customers": ["IRD"], "Task": "More", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv3yf3F5ZCBf"], "table_id": "tblcK7RNfVTE0krF", "text": "ASR Model Comparison", "text_arr": ["ASR Model Comparison"], "type": "text"}]}, "id": "recv3DT0CG4SeX", "record_id": "recv3DT0CG4SeX"}, {"fields": {"Days Left": 0, "End Date": 1766419200000, "Estimate Deadline": 1766678400000, "Images": null, "Manday count": "0.5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1766419200000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "代码文档整理工作", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv3aVQF6p1ct"], "table_id": "tblcK7RNfVTE0krF", "text": "AI-Translation POC", "text_arr": ["AI-Translation POC"], "type": "text"}]}, "id": "recv3DTrxcbDtu", "record_id": "recv3DTrxcbDtu"}, {"fields": {"Days Left": 0, "End Date": 1773936000000, "Estimate Deadline": 1774886400000, "Images": null, "Manday count": "10", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": "陈文晓3月6日 19:12\n1.先多个多维表格共享到数据中心,使用连接器连接同步到同一个多维表格当中了。但是评论没有同步过来。2. 查看飞书多维表格接口,部署环境开发测试插件,但是目前没有看到支持多维表格评论提取的接口,只看到有云文档、电子表格的评论提取,然后想到用插件叠加记录,目前也不能做到历史记录叠加,下周再看看还有什么途径\n\n陈文晓3月13日 19:34\n飞书:不能同步父子级关系,和评论\nwps:同飞书一样不能同步父子级关系,和评论,自动化功能比较少,同步更新需要开会员\n钉钉:可以同步子模块,但是也要开会员才能同步多个表格,不开的话只能同步三个,自动化功能也比较少\nNotion:也要开会员,免费只有三个用户\nVika:同飞书一样不能复制评论,这个表格也算还行\n下面两个是开源可以再开发的\nNocoDB:只有基本表格,没有父子级关系,评论可以同步\nNocoBase:建表比较复杂,还不能修改dashboard里的内容,工程量大,插件还要钱\n\n可能还是考虑用回飞书,评论采取使用链接方式记录日志吧。\n\n陈文晓3月20日 17:52\n已完成多维表格汇总工具,可访问http://10.6.80.130:18080/\n\n陈文晓3月20日 17:53\n但需要大家之后统一一个多维表格模板进行统计\n\n陈文晓刚刚\n把原本60s刷新数据的改成,刷新按钮,按了才重新获取数据,然后prompt可自行再前端调整", "Related Documents": null, "Start date": 1772380800000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "任务安排时间管理关联工具", "Task Description": "1. 對接飛書,匯總所有Dashboard的信息到同一工具/系統\n2. 系統能跟蹤超時task并且提醒跟進(長時間沒進度的也提醒)\n3. 能產生匯總報表,減少每月/每季度給管理層的“手工”活\n4. 能產生一些insights(產生Task的相關簡介與總結)\n5. Think:飛書Dashboard是否是我們想要的進度跟蹤工具ITSM", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv8I3sg7YHaA", "record_id": "recv8I3sg7YHaA"}, {"fields": {"Days Left": -46112, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": "陈文晓1月24日 22:45\n\n新增管家日记开始记录流水账杂七杂八\n\n陈文晓1月24日 22:48\nOA购汇采购流程处理,“前期从澳门转来的那边资金需退回后重新办理入账手续”\n\n陈文晓3月13日 19:38\n3.12参加管家会议:新采购制度宣讲、实习生在岗情况存在的问题、《联培学生和实习生津贴发放管理规定》宣讲。通知4.15号前需要归档文章专利科研日志啥的。\n\n陈文晓3月13日 19:39 (编辑过)\n提oa设备托管流程单子\n\n陈文晓刚刚\n提住宿单子", "Related Documents": null, "Start date": 1768752000000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "管家日记", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv9epNVHpIyg", "record_id": "recv9epNVHpIyg"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": 1769788800000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": "1. 初步建立項目構建需求", "Related Documents": null, "Start date": 1764518400000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "Video_detection", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv3OyfslKdIO", "record_id": "recv3OyfslKdIO"}, {"fields": {"Days Left": -78, "End Date": null, "Estimate Deadline": 1768147200000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": null, "Related Documents": null, "Start date": 1765123200000, "Status": "Not yet started", "Target Customers": ["IRD"], "Task": "Client Development", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": null, "父记录": [{"record_ids": ["recv3OyfslKdIO"], "table_id": "tblcK7RNfVTE0krF", "text": "Video_detection", "text_arr": ["Video_detection"], "type": "text"}]}, "id": "recv3OBlDGdSlW", "record_id": "recv3OBlDGdSlW"}, {"fields": {"Days Left": -74, "End Date": null, "Estimate Deadline": 1768492800000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": null, "Related Documents": null, "Start date": 1764518400000, "Status": "Not yet started", "Target Customers": ["IRD"], "Task": "Video Detection Development", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": null, "父记录": [{"record_ids": ["recv3OyfslKdIO"], "table_id": "tblcK7RNfVTE0krF", "text": "Video_detection", "text_arr": ["Video_detection"], "type": "text"}]}, "id": "recv3OByNf0JHN", "record_id": "recv3OByNf0JHN"}, {"fields": {"Days Left": -78, "End Date": null, "Estimate Deadline": 1768147200000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": null, "Related Documents": null, "Start date": 1765123200000, "Status": "Not yet started", "Target Customers": ["IRD"], "Task": "前端設計", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": null, "父记录": [{"record_ids": ["recv3OBlDGdSlW"], "table_id": "tblcK7RNfVTE0krF", "text": "Client Development", "text_arr": ["Client Development"], "type": "text"}]}, "id": "recv3OBzq3VBvS", "record_id": "recv3OBzq3VBvS"}, {"fields": {"Days Left": -59, "End Date": null, "Estimate Deadline": 1769788800000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": null, "Related Documents": null, "Start date": 1768752000000, "Status": "Not yet started", "Target Customers": ["IRD"], "Task": "Environment Packaging and Testing", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": null, "父记录": [{"record_ids": ["recv3OyfslKdIO"], "table_id": "tblcK7RNfVTE0krF", "text": "Video_detection", "text_arr": ["Video_detection"], "type": "text"}]}, "id": "recv3OBPrSM1EZ", "record_id": "recv3OBPrSM1EZ"}, {"fields": {"Days Left": -116, "End Date": null, "Estimate Deadline": 1764864000000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": null, "Related Documents": null, "Start date": 1764518400000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "程序架構重構及驗證", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": null, "父记录": [{"record_ids": ["recv3OByNf0JHN"], "table_id": "tblcK7RNfVTE0krF", "text": "Video Detection Development", "text_arr": ["Video Detection Development"], "type": "text"}]}, "id": "recv3OBUF9G4KC", "record_id": "recv3OBUF9G4KC"}, {"fields": {"Days Left": -102, "End Date": null, "Estimate Deadline": 1766073600000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": null, "Related Documents": null, "Start date": 1765728000000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "自定義配置監控m3u8", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": null, "父记录": [{"record_ids": ["recv3OByNf0JHN"], "table_id": "tblcK7RNfVTE0krF", "text": "Video Detection Development", "text_arr": ["Video Detection Development"], "type": "text"}]}, "id": "recv3OBV8ye45V", "record_id": "recv3OBV8ye45V"}, {"fields": {"Days Left": -81, "End Date": null, "Estimate Deadline": 1767888000000, "Images": null, "Manday count": "6", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": null, "Related Documents": null, "Start date": 1767283200000, "Status": "Not yet started", "Target Customers": ["IRD"], "Task": "異常日誌存儲", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": null, "父记录": [{"record_ids": ["recv3OByNf0JHN"], "table_id": "tblcK7RNfVTE0krF", "text": "Video Detection Development", "text_arr": ["Video Detection Development"], "type": "text"}]}, "id": "recv3OBVjJXSRJ", "record_id": "recv3OBVjJXSRJ"}, {"fields": {"Days Left": -74, "End Date": null, "Estimate Deadline": 1768492800000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": null, "Related Documents": null, "Start date": 1768147200000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "異常通知", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": null, "父记录": [{"record_ids": ["recv3OByNf0JHN"], "table_id": "tblcK7RNfVTE0krF", "text": "Video Detection Development", "text_arr": ["Video Detection Development"], "type": "text"}]}, "id": "recv3OBVsC0Rpz", "record_id": "recv3OBVsC0Rpz"}, {"fields": {"Days Left": -67, "End Date": null, "Estimate Deadline": 1769097600000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": null, "Related Documents": null, "Start date": 1768752000000, "Status": "Not yet started", "Target Customers": ["IRD"], "Task": "部署服務", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": null, "父记录": [{"record_ids": ["recv3OBPrSM1EZ"], "table_id": "tblcK7RNfVTE0krF", "text": "Environment Packaging and Testing", "text_arr": ["Environment Packaging and Testing"], "type": "text"}]}, "id": "recv3OCbX5h24H", "record_id": "recv3OCbX5h24H"}, {"fields": {"Days Left": -60, "End Date": null, "Estimate Deadline": 1769702400000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": null, "Related Documents": null, "Start date": 1769356800000, "Status": "Not yet started", "Target Customers": ["IRD"], "Task": "測試", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": null, "父记录": [{"record_ids": ["recv3OBPrSM1EZ"], "table_id": "tblcK7RNfVTE0krF", "text": "Environment Packaging and Testing", "text_arr": ["Environment Packaging and Testing"], "type": "text"}]}, "id": "recv3OCcnexGa3", "record_id": "recv3OCcnexGa3"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": "1", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": "更新 LLaMA-Factory 的環境來適應新的 MoE Models", "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "更新 LLaMA-Factory 環境適應新 MoE Models", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recv14ylsW2dmS"], "table_id": "tblcK7RNfVTE0krF", "text": "MoE model fine-tuning & evaluation", "text_arr": ["MoE model fine-tuning & evaluation"], "type": "text"}]}, "id": "recv3Wx8mHnaBt", "record_id": "recv3Wx8mHnaBt"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": "3", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": "LLaMA-Factory 使用 DeepSpeed ZeRO-1 進行 DDP training 可以運行,但 DeepSpeed ZeRO-2 會 timeout (-tp =2 OK, -tp > 2 不OK),前者雖可運行但 training 速度慢 ⇒ 嘗試使用別的 training framework, e.g. MS-Swift (使用 Megatron-LM 作為 backend)", "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "DeepSpeed ZeRO-1/ZeRO-2 進行 MoE Model Fine-tuning", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recv14ylsW2dmS"], "table_id": "tblcK7RNfVTE0krF", "text": "MoE model fine-tuning & evaluation", "text_arr": ["MoE model fine-tuning & evaluation"], "type": "text"}]}, "id": "recv3WxeMPTNoZ", "record_id": "recv3WxeMPTNoZ"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": "2", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "安裝 MS-Swift & Megatron-Swift 環境 (Megatron-LM as a backend for MoE model fine-tuning)", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recv14ylsW2dmS"], "table_id": "tblcK7RNfVTE0krF", "text": "MoE model fine-tuning & evaluation", "text_arr": ["MoE model fine-tuning & evaluation"], "type": "text"}]}, "id": "recv3WxBWPSQlJ", "record_id": "recv3WxBWPSQlJ"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "基於 Megatron-Core 對 MoE Model 進行 Fine-tuning(澳門文旅數據)", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recv14ylsW2dmS"], "table_id": "tblcK7RNfVTE0krF", "text": "MoE model fine-tuning & evaluation", "text_arr": ["MoE model fine-tuning & evaluation"], "type": "text"}]}, "id": "recv3WxC3sNgYo", "record_id": "recv3WxC3sNgYo"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": "基於 OpenCompass & VLMEvalKit 評估模型", "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "評估 Fine-tuned Qwen3 Series", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recv14ylsW2dmS"], "table_id": "tblcK7RNfVTE0krF", "text": "MoE model fine-tuning & evaluation", "text_arr": ["MoE model fine-tuning & evaluation"], "type": "text"}]}, "id": "recv3WxLgc00mP", "record_id": "recv3WxLgc00mP"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": "以 Qwen3-30B-A3B-2507 來做 ablation study,找出對 MoE Models SFT 影響的 factors", "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "Qwen3-30B-A3B-2507", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recv3WxC3sNgYo"], "table_id": "tblcK7RNfVTE0krF", "text": "基於 Megatron-Core 對 MoE Model 進行 Fine-tuning(澳門文旅數據)", "text_arr": ["基於 Megatron-Core 對 MoE Model 進行 Fine-tuning(澳門文旅數據)"], "type": "text"}]}, "id": "recv3WxYwnW9Vk", "record_id": "recv3WxYwnW9Vk"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": "從以上的 insights 對 Qwen3-VL 做同樣的實驗", "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "Qwen3-VL-30B-A3B", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recv3WxC3sNgYo"], "table_id": "tblcK7RNfVTE0krF", "text": "基於 Megatron-Core 對 MoE Model 進行 Fine-tuning(澳門文旅數據)", "text_arr": ["基於 Megatron-Core 對 MoE Model 進行 Fine-tuning(澳門文旅數據)"], "type": "text"}]}, "id": "recv3Wy2le6vKD", "record_id": "recv3Wy2le6vKD"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": "從以上的 insights 對 Qwen3-Omni 做同樣的實驗", "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "Qwen3-Omni-30B-A3B", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recv3WxC3sNgYo"], "table_id": "tblcK7RNfVTE0krF", "text": "基於 Megatron-Core 對 MoE Model 進行 Fine-tuning(澳門文旅數據)", "text_arr": ["基於 Megatron-Core 對 MoE Model 進行 Fine-tuning(澳門文旅數據)"], "type": "text"}]}, "id": "recv3Wy38gL1dd", "record_id": "recv3Wy38gL1dd"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": "3", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": "測試不同部署分式,對模型推理的影響", "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "優化評估速度", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recv3WxLgc00mP"], "table_id": "tblcK7RNfVTE0krF", "text": "評估 Fine-tuned Qwen3 Series", "text_arr": ["評估 Fine-tuned Qwen3 Series"], "type": "text"}]}, "id": "recv3WymweZAPn", "record_id": "recv3WymweZAPn"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": 1768579200000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": "1. Pydantic AI\n2. LangGraph\n3. Claude Agent SDK / OpenAI Agent SDK\n4. AutoGen / CrewAI \n.\n.", "Related Documents": null, "Start date": 1767542400000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "AI agent framework survey", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv3WyOUGhXKF", "record_id": "recv3WyOUGhXKF"}, {"fields": {"Days Left": -46112, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": "基于Pipecat及Livekit开始重构VLM接口开发,实现新的三段式高并发音视频框架\n1. Pipecat深度调研\n2. Livekit深度调研及调优\n3. 接口重构\n4. 引入简单的上下文Context及用户关联 (同步调研Mem系统的集成)", "Related Documents": null, "Start date": 1764518400000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "VLM Pipecat及Livekit接口框架研发", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv46eEPKgiBY", "record_id": "recv46eEPKgiBY"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": 1764604800000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": "提供webrtc服务", "Related Documents": null, "Start date": 1764518400000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "livekit集群部署", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "总结": null, "父记录": [{"record_ids": ["recv46eEPKgiBY"], "table_id": "tblcK7RNfVTE0krF", "text": "VLM Pipecat及Livekit接口框架研发", "text_arr": ["VLM Pipecat及Livekit接口框架研发"], "type": "text"}]}, "id": "recv4cqqCvb9fc", "record_id": "recv4cqqCvb9fc"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": 1764604800000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": "提供模型能力", "Related Documents": null, "Start date": 1764604800000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "llm, vlm, omni模型接口支持", "Task Description": null, "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "总结": null, "父记录": [{"record_ids": ["recv46eEPKgiBY"], "table_id": "tblcK7RNfVTE0krF", "text": "VLM Pipecat及Livekit接口框架研发", "text_arr": ["VLM Pipecat及Livekit接口框架研发"], "type": "text"}]}, "id": "recv4hd9KKlvsz", "record_id": "recv4hd9KKlvsz"}, {"fields": {"Days Left": -102, "End Date": null, "Estimate Deadline": 1766073600000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": "框架研发", "Related Documents": null, "Start date": 1765728000000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "框架功能开发", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "总结": null, "父记录": [{"record_ids": ["recv46eEPKgiBY"], "table_id": "tblcK7RNfVTE0krF", "text": "VLM Pipecat及Livekit接口框架研发", "text_arr": ["VLM Pipecat及Livekit接口框架研发"], "type": "text"}]}, "id": "recv4hdxp4fKDb", "record_id": "recv4hdxp4fKDb"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": 1766073600000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": "vllm-omni", "Related Documents": null, "Start date": 1764777600000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "vllm-omni env", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv4v1eNFWJ9Y", "record_id": "recv4v1eNFWJ9Y"}, {"fields": {"Days Left": -53, "End Date": null, "Estimate Deadline": 1770307200000, "Images": null, "Manday count": "4", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": 1764950400000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "算力预约系统", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv4QhNX63GnG", "record_id": "recv4QhNX63GnG"}, {"fields": {"Days Left": -60, "End Date": null, "Estimate Deadline": 1769702400000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": "1. 在Ubuntu环境下安装IsaacLab\n2. 熟悉IsaacSim手动建模流程\n3. 熟悉Python自动化建模流程", "Related Documents": null, "Start date": 1764259200000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "IsaacLab仿真", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv4QjAbFStod", "record_id": "recv4QjAbFStod"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": 1765468800000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": "测试视频功能", "Related Documents": null, "Start date": 1765382400000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "livekit实时视频测试", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "总结": null, "父记录": [{"record_ids": ["recv46eEPKgiBY"], "table_id": "tblcK7RNfVTE0krF", "text": "VLM Pipecat及Livekit接口框架研发", "text_arr": ["VLM Pipecat及Livekit接口框架研发"], "type": "text"}]}, "id": "recv5qOvKDVbKA", "record_id": "recv5qOvKDVbKA"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": 1766505600000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": "1. 提供asr模型服务", "Related Documents": null, "Start date": 1766419200000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "asr模型服务支持", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "总结": null, "父记录": [{"record_ids": ["recv46eEPKgiBY"], "table_id": "tblcK7RNfVTE0krF", "text": "VLM Pipecat及Livekit接口框架研发", "text_arr": ["VLM Pipecat及Livekit接口框架研发"], "type": "text"}]}, "id": "recv6a2p35mAxi", "record_id": "recv6a2p35mAxi"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": 1766678400000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": "1. 提供tts模型服务", "Related Documents": null, "Start date": 1766592000000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "tts模型服务支持", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "总结": null, "父记录": [{"record_ids": ["recv46eEPKgiBY"], "table_id": "tblcK7RNfVTE0krF", "text": "VLM Pipecat及Livekit接口框架研发", "text_arr": ["VLM Pipecat及Livekit接口框架研发"], "type": "text"}]}, "id": "recv6a2zMurm6R", "record_id": "recv6a2zMurm6R"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": 1767024000000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": "1. 解决pipecat以及livekit agent的组件对接", "Related Documents": null, "Start date": 1766937600000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "livekit agent开发", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "总结": null, "父记录": [{"record_ids": ["recv46eEPKgiBY"], "table_id": "tblcK7RNfVTE0krF", "text": "VLM Pipecat及Livekit接口框架研发", "text_arr": ["VLM Pipecat及Livekit接口框架研发"], "type": "text"}]}, "id": "recv6VXcWBE8vE", "record_id": "recv6VXcWBE8vE"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": 1767801600000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": "1. 解决僵尸进程问题", "Related Documents": null, "Start date": 1767715200000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "livekit server与livekit agent的僵尸进程bug", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "总结": null, "父记录": [{"record_ids": ["recv46eEPKgiBY"], "table_id": "tblcK7RNfVTE0krF", "text": "VLM Pipecat及Livekit接口框架研发", "text_arr": ["VLM Pipecat及Livekit接口框架研发"], "type": "text"}]}, "id": "recv6VXqbO1jWx", "record_id": "recv6VXqbO1jWx"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": 1767369600000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": null, "Related Documents": null, "Start date": 1767283200000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "修复vlm对图片支持的bug", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "总结": null, "父记录": [{"record_ids": ["recv46eEPKgiBY"], "table_id": "tblcK7RNfVTE0krF", "text": "VLM Pipecat及Livekit接口框架研发", "text_arr": ["VLM Pipecat及Livekit接口框架研发"], "type": "text"}]}, "id": "recv7u9gP5MmDT", "record_id": "recv7u9gP5MmDT"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": 1768492800000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": "https://github.com/yusufkaraaslan/Skill_Seekers", "Related Documents": null, "Start date": 1768233600000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "Agent Skills", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv7YYrygVobu", "record_id": "recv7YYrygVobu"}, {"fields": {"Days Left": -81, "End Date": null, "Estimate Deadline": 1767888000000, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": 1767542400000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "具身智能网球机项目方案", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv81rTTw3hf7", "record_id": "recv81rTTw3hf7"}, {"fields": {"Days Left": -46112, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": 1767888000000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "网球机底盘制作", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv81upnlaZAh", "record_id": "recv81upnlaZAh"}, {"fields": {"Days Left": -46112, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": null, "Related Documents": null, "Start date": 1768147200000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "机械臂演示方案", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}], "总结": null, "父记录": [{"record_ids": null, "table_id": "tblcK7RNfVTE0krF", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv81uz8HxaiC", "record_id": "recv81uz8HxaiC"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": 1767456000000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": null, "Related Documents": null, "Start date": 1767456000000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "asr模型支持websocket", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "总结": null, "父记录": [{"record_ids": ["recv46eEPKgiBY"], "table_id": "tblcK7RNfVTE0krF", "text": "VLM Pipecat及Livekit接口框架研发", "text_arr": ["VLM Pipecat及Livekit接口框架研发"], "type": "text"}]}, "id": "recv832dyq51DQ", "record_id": "recv832dyq51DQ"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": 1767542400000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": null, "Related Documents": null, "Start date": 1767542400000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "tts模型支持websocket", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "总结": null, "父记录": [{"record_ids": ["recv46eEPKgiBY"], "table_id": "tblcK7RNfVTE0krF", "text": "VLM Pipecat及Livekit接口框架研发", "text_arr": ["VLM Pipecat及Livekit接口框架研发"], "type": "text"}]}, "id": "recv832g1R7cm5", "record_id": "recv832g1R7cm5"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "AutoGen 0.7.5", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recv7YYrygVobu"], "table_id": "tblcK7RNfVTE0krF", "text": "Agent Skills", "text_arr": ["Agent Skills"], "type": "text"}]}, "id": "recv83Lx6HhzbI", "record_id": "recv83Lx6HhzbI"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "vLLM 0.13.3", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recv7YYrygVobu"], "table_id": "tblcK7RNfVTE0krF", "text": "Agent Skills", "text_arr": ["Agent Skills"], "type": "text"}]}, "id": "recv83Lyml8Uxk", "record_id": "recv83Lyml8Uxk"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "AutoGen 0.7.5", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recv3WyOUGhXKF"], "table_id": "tblcK7RNfVTE0krF", "text": "AI agent framework survey", "text_arr": ["AI agent framework survey"], "type": "text"}]}, "id": "recv83LCs6mlSe", "record_id": "recv83LCs6mlSe"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Completed", "Target Customers": ["IRD"], "Task": "Commit Message Guidelines (Angular Conventional Commit)", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": null, "父记录": [{"record_ids": ["recv7YYrygVobu"], "table_id": "tblcK7RNfVTE0krF", "text": "Agent Skills", "text_arr": ["Agent Skills"], "type": "text"}]}, "id": "recv89gheGIImt", "record_id": "recv89gheGIImt"}, {"fields": {"Days Left": 0, "End Date": null, "Estimate Deadline": 1768492800000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": "1. asr服务暴露 2. tts服务暴露 3. livekit server服务暴露", "Related Documents": null, "Start date": 1768406400000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "omnichat实现服务暴露", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "总结": null, "父记录": [{"record_ids": ["recv46eEPKgiBY"], "table_id": "tblcK7RNfVTE0krF", "text": "VLM Pipecat及Livekit接口框架研发", "text_arr": ["VLM Pipecat及Livekit接口框架研发"], "type": "text"}]}, "id": "recv8qAbgmo6B5", "record_id": "recv8qAbgmo6B5"}, {"fields": {"Days Left": -46112, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": 1768752000000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "硬件采购和基本功能测试连接", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv8I35tzI9Nm"], "table_id": "tblcK7RNfVTE0krF", "text": "嗑点啦", "text_arr": ["嗑点啦"], "type": "text"}]}, "id": "recv8I6vtzn5dG", "record_id": "recv8I6vtzn5dG"}, {"fields": {"Days Left": -46112, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": " 對接到OmniChat 2.0框架(用戶記憶,工具調用,多模態交互優化,調研對比OVA OS功能", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv8I35tzI9Nm"], "table_id": "tblcK7RNfVTE0krF", "text": "嗑点啦", "text_arr": ["嗑点啦"], "type": "text"}]}, "id": "recv8I6QMIbdP6", "record_id": "recv8I6QMIbdP6"}, {"fields": {"Days Left": -46112, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "嗑点啦代码功能开发", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv8I35tzI9Nm"], "table_id": "tblcK7RNfVTE0krF", "text": "嗑点啦", "text_arr": ["嗑点啦"], "type": "text"}]}, "id": "recv8I70f9c3s4", "record_id": "recv8I70f9c3s4"}, {"fields": {"Days Left": -46112, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "摄像头睁眼闭眼显示", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv8I70f9c3s4"], "table_id": "tblcK7RNfVTE0krF", "text": "嗑点啦代码功能开发", "text_arr": ["嗑点啦代码功能开发"], "type": "text"}]}, "id": "recv8I7tWHcYXn", "record_id": "recv8I7tWHcYXn"}, {"fields": {"Days Left": -46112, "End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Wishlist", "Target Customers": ["IRD"], "Task": "身体姿态活动识别", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv8I70f9c3s4"], "table_id": "tblcK7RNfVTE0krF", "text": "嗑点啦代码功能开发", "text_arr": ["嗑点啦代码功能开发"], "type": "text"}]}, "id": "recv8I7LIdKaYI", "record_id": "recv8I7LIdKaYI"}, {"fields": {"Days Left": 0, "End Date": 1772640000000, "Estimate Deadline": 1772640000000, "Images": null, "Manday count": "1", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": 1772380800000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "對接飛書,匯總所有Dashboard的信息到同一工具/系統", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv8I3sg7YHaA"], "table_id": "tblcK7RNfVTE0krF", "text": "任务安排时间管理关联工具", "text_arr": ["任务安排时间管理关联工具"], "type": "text"}]}, "id": "recv8I94HXjfXW", "record_id": "recv8I94HXjfXW"}, {"fields": {"Days Left": -14, "End Date": 1773676800000, "Estimate Deadline": 1773676800000, "Images": null, "Manday count": "0.5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": 1773590400000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "系統能跟蹤超時task并且提醒跟進(長時間沒進度的也提醒)", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv8I3sg7YHaA"], "table_id": "tblcK7RNfVTE0krF", "text": "任务安排时间管理关联工具", "text_arr": ["任务安排时间管理关联工具"], "type": "text"}]}, "id": "recv8I9dDtWg3E", "record_id": "recv8I9dDtWg3E"}, {"fields": {"Days Left": -11, "End Date": 1773936000000, "Estimate Deadline": 1773936000000, "Images": null, "Manday count": "2", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": 1773676800000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "能產生匯總報表,減少每月/每季度給管理層的“手工”活", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv8I3sg7YHaA"], "table_id": "tblcK7RNfVTE0krF", "text": "任务安排时间管理关联工具", "text_arr": ["任务安排时间管理关联工具"], "type": "text"}]}, "id": "recv8I9jCwfu5B", "record_id": "recv8I9jCwfu5B"}, {"fields": {"Days Left": -11, "End Date": 1773936000000, "Estimate Deadline": 1773936000000, "Images": null, "Manday count": "2", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": 1773676800000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "能產生一些insights(產生Task的相關簡介與總結)", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": null, "父记录": [{"record_ids": ["recv8I3sg7YHaA"], "table_id": "tblcK7RNfVTE0krF", "text": "任务安排时间管理关联工具", "text_arr": ["任务安排时间管理关联工具"], "type": "text"}]}, "id": "recv8I9jOCiawv", "record_id": "recv8I9jOCiawv"}, {"fields": {"Days Left": -70, "End Date": null, "Estimate Deadline": 1768838400000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": null, "Related Documents": null, "Start date": 1768752000000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "omnichat 文档编写", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "总结": null, "父记录": [{"record_ids": ["recv46eEPKgiBY"], "table_id": "tblcK7RNfVTE0krF", "text": "VLM Pipecat及Livekit接口框架研发", "text_arr": ["VLM Pipecat及Livekit接口框架研发"], "type": "text"}]}, "id": "recv8NP6WblA6I", "record_id": "recv8NP6WblA6I"}, {"fields": {"Days Left": -69, "End Date": null, "Estimate Deadline": 1768924800000, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Important", "Progress notes": "1. web前端编写 2. cpp客户端编写", "Related Documents": null, "Start date": 1768924800000, "Status": "Ongoing ", "Target Customers": ["IRD"], "Task": "omnichat client(含cpp)", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "总结": null, "父记录": [{"record_ids": ["recv46eEPKgiBY"], "table_id": "tblcK7RNfVTE0krF", "text": "VLM Pipecat及Livekit接口框架研发", "text_arr": ["VLM Pipecat及Livekit接口框架研发"], "type": "text"}]}, "id": "recv8NP7avdde1", "record_id": "recv8NP7avdde1"}, {"fields": {"Days Left": 0, "End Date": 1769184000000, "Estimate Deadline": 1769356800000, "Images": null, "Manday count": "2.5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "Normal", "Progress notes": null, "Related Documents": null, "Start date": 1768924800000, "Status": "Completed", "Target Customers": ["IRD"], "Task": "tts-blackbox重构改造", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}], "总结": "tts-blackbox重构改造项目状态为进行中(Ongoing),负责人陈文晓,计划开始时间2026/01/21,计划结束时间2026/01/26,实际开始时间2026/01/24,工时2.5,优先级为Normal,所属模块为TTS ASR系统设计开发。", "父记录": [{"record_ids": ["recv14HesizlNf"], "table_id": "tblcK7RNfVTE0krF", "text": "TTS ASR系统设计开发", "text_arr": ["TTS ASR系统设计开发"], "type": "text"}]}, "id": "recv8ZPxz0DLvl", "record_id": "recv8ZPxz0DLvl"}]}, {"name": "POC", "records": [{"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P3", "Progress notes": "此處可放處理日期和進度(建議每周更新)", "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "刪除兩地NAS同步配置及相關文件", "Task Description": "現存可見在ICC的irdnas1,有一些同步失敗的文件/文件夾,請將相關配置和資料刪除,減少空間占用", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": "删除两地NAS同步配置及相关文件:删除ICC的irdnas1中同步失败的文件/文件夹及相关配置以减少空间占用。处理人:Timous,状态:已完成,优先级:P3。(建议每周更新处理日期和进度)", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuFSgWd7TCrG", "record_id": "recuFSgWd7TCrG"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P2", "Progress notes": "1. 如果系統盤要由1.92T*2變成1.92T*4,可以點做,是否需要重裝?\n新加的盘单独做RAID,通过LVM扩大根分区\n2. 後面增加計算節點,會使用RDMA網絡,如何配置?\n当前管理节点没有私用RDMA,管理节点如果也换成RDMA则需要重装集群。 或者管理节点不用RDMA,计算节点用RAMD情况下可以不用重装集群,新增计算节点直接通过IB网络扩进来现有集群即可。\n3. 後面增加計算節點,會使用共享的存儲,如何配置?\n跟管理节点一样,直接挂载共享存储\n4. 增加節點后,跨節點能調度所有顯卡?一個容器中能看到所有顯卡吗?\ndoker只支持一个物理机器一个容器,容器不能扩物理机,单个容器看到的卡无法超过物理机的卡数。跨节点调度,会创建多个容器,每个容器运行在一个物理机上,多机直接通过NCCL进行通讯。", "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "咨詢黃工天浪云增加節點的相關問題事項", "Task Description": "1. 如果系統盤要由1.92T*2變成1.92T*4,可以點做,是否需要重裝?\n2. 後面增加計算節點,會使用RDMA網絡,如何配置?\n3. 後面增加計算節點,會使用共享的存儲,如何配置?\n4. 增加節點后,跨節點能調度所有顯卡?一個容器中能看到所有顯卡?", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "总结": "关于天浪云增加节点的咨询及答复如下:1. 系统盘由1.92T*2变为1.92T*4,可将新加盘单独做RAID,通过LVM扩大根分区,无需重装。2. 新增计算节点使用RDMA网络,若管理节点也换RDMA需重装集群,管理节点不用则新增计算节点可通过IB网络直接扩入现有集群,无需重装。3. 新增计算节点使用共享存储,配置方式同管理节点,直接挂载即可。4. 增加节点后,跨节点调度会创建多个容器,每个容器运行在一个物理机上,通过NCCL通讯;单个容器只能看到所在物理机的显卡,无法超过该物理机卡数。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuFShJO4AV93", "record_id": "recuFShJO4AV93"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P1", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "兩張A6000安裝(ICC 7960)", "Task Description": "1. 完成兩張A6000及nvlink到7960的安裝\n2. 完成相關配置及驅動檢查(如需要)\n3. 硬件在Admin同事思婷処", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "总结": "完成两张A6000及nvlink到7960的安装,完成相关配置及驱动检查(如需要),硬件在Admin同事思婷处,任务已完成(陈湝昕)。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuFSibEt13i2", "record_id": "recuFSibEt13i2"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P3", "Progress notes": "实验室九阳神功", "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "資產列表文件編寫", "Task Description": "1. 完成實驗室和IRD部門主要資產文件編寫", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "总结": "資產列表文件編寫中,1. 完成實驗室和IRD部門主要資產文件編寫(實驗室九陽神功)由陳湝昕負責,狀態為已完成,優先級P3。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuFSkVq33xKa", "record_id": "recuFSkVq33xKa"}, {"fields": {"End Date": 1742918400000, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P2", "Progress notes": "智能院容器平台", "Related Documents": null, "Start date": 1743350400000, "Status": "已完成", "Target Customers": null, "Task": "長期Jarvis推理資源", "Task Description": "配置院内平臺雙卡A100-40G作爲長期Jarvis推理資源\n(視乎資源情況,陳老師一個docker,宇軒一個docker)", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "总结": "已完成配置院内智能院容器平台双卡A100-40G作为长期Jarvis推理资源,计划为陈老师和宇轩各分配一个docker(视资源情况)。(责任人:吴嘉泰,优先级:P2,计划完成时间:2025/03/31,实际完成时间:2025/03/26)", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuGpU40zh2tn", "record_id": "recuGpU40zh2tn"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P2", "Progress notes": "Installation Guideline", "Related Documents": null, "Start date": 1743523200000, "Status": "已完成", "Target Customers": null, "Task": "irdtower02 (ICC 7960)標準化安裝部署", "Task Description": "1. 安裝部署irdtower02\n2. 推脚本,設置用戶,nas等等\n3. 測試一鍵開啓jarvis服務\n4. 提前複製其遠Omni環境文件到irdtower02上", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "总结": "irdtower02 (ICC 7960)標準化安裝部署已完成,包含安裝部署irdtower02、推脚本、设置用户和nas、测试一键开启jarvis服务、提前复制远Omni环境文件到irdtower02上。由陈湝昕负责,优先级P2,完成时间2025/04/02。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuGxztbKW3kq", "record_id": "recuGxztbKW3kq"}, {"fields": {"End Date": 1748188800000, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P2", "Progress notes": " AIStation人工智能平台_V5.1_API文档.pdf 浪潮云API调用 ", "Related Documents": null, "Start date": 1747929600000, "Status": "已完成", "Target Customers": null, "Task": "浪潮云API调用测试", "Task Description": "测试浪潮云调用方式,权限设置,账号设置", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "总结": "浪潮云API调用测试已完成,测试内容包括调用方式、权限设置及账号设置,涉及《AIStation人工智能平台_V5.1_API文档.pdf》,负责人为陈湝昕,优先级P2,起止时间为2025年5月23日至5月26日。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuLHoGS5J6ZA", "record_id": "recuLHoGS5J6ZA"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P2", "Progress notes": "代码数据卷在目录\"/Code\",权重数据集数据卷在\"/Dataset\"下。\n\n容器内部端口 -> 公网端口\n\n公网地址: 43.143.159.99 e.g. ssh -p 11011 root@43.143.159.99\n\n容器初始密码:******** (以防安全风险,初始密码不要更改)\n\npcl:\n22 -> 11011\n7860 -> 11012\n8888 -> 11013\n8000 -> 11014\n8080 -> 11015", "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "澳大设置天案云负载及FRP设置登记", "Task Description": "参考浙大和哈工大设置,占用和浙大的那张卡吧", "Task leader": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "总结": "澳大设置天案云负载及FRP设置登记,参考浙大和哈工大,占用浙大相关卡。代码数据卷在“/Code”目录,权重数据集数据卷在“/Dataset”下。公网地址为43.143.159.99,如ssh -p 11011 root@43.143.159.99。容器初始密码已提供且不要更改。pcl的容器内部端口与公网端口对应为:22->11011、7860->11012、8888->11013、8000->11014、8080->11015。登记人吴嘉泰,状态已完成,优先级P2。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuNee0kRzxqj", "record_id": "recuNee0kRzxqj"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": "10", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P3", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "已完成", "Target Customers": null, "Task": "文心模型测试", "Task Description": "基于文心模型对博维资料做上下文学习测试\n1. 挑選一個ERINE 4.5合適規模的模型進行推理部署\n2. 針對博維文字資料進行ICL測試(可問嘉泰拿些數據)\n3. 針對博維展廳3個產品進行具有視覺理解的ICL測試(可問Ricky拿些數據)", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "总结": "文心模型测试任务:基于文心模型对博维资料做上下文学习测试,具体包括:1. 挑选ERNIE 4.5合适规模模型进行推理部署;2. 针对博维文字资料进行ICL测试(可向嘉泰拿数据);3. 针对博维展厅3个产品进行具视觉理解的ICL测试(可向Ricky拿数据)。该任务由陈湝昕完成,优先级P3,工时10。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuPXtTd7LQbH", "record_id": "recuPXtTd7LQbH"}, {"fields": {"End Date": 1758211200000, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P1", "Progress notes": "Quincy:\n1. Video Understanding (9月訓練出結果,11月投稿)\n2. Omni 推理優化,適配vLLM或高併發\n3. 視覺記憶和視覺推理系統應用於飲食健康或其他垂直領域\n\nRicky:\n1. VibeInvoice,OCR 功能整合到 Agent 流程處理中\n2. Omni/VLM 在澳門文旅上的持續後訓練優化\n3. VLM 在澳門文旅上慢推理場景的訓練調研及嘗試 (取決於小舟及BWI的功能需求)\n4. 澳門文旅數據增廣,多輪對話等合成\n5. 端到端 TTS 下游任務調研 (可研究小米 TTS 及 VITA 組 LUCY 等work)\n\nVera & Ivan:\n1. BarcoOne 對接及功能需求提出,並遷移 RAG,LLM,TTS 等模型到原生平台進行完整流程測試\n2. TTS API 系統設計,研發及測試。包括論文指導,多個 TTS 模型融合,及其整合流程處理,多進程隊列機制開發測試\n3. 現有 jarvis-api 深化及 MCP agent blackbox 對接\n\nWishList:\n1. 多模態 RAG 功能,調研圖搜圖,多模態搜索處理,及如何整合到 BarcoOne 成為 Workflow 功能之一\n2. 視覺理解推理及其訓練,初步想到針對 1.) 胃鏡臨床數據 2.) 澳門文旅場景數據 3.) 飲食健康建議數據 4.) 或有其他開源可用數據", "Related Documents": null, "Start date": 1758211200000, "Status": "已完成", "Target Customers": null, "Task": "討論多模態Q4工作", "Task Description": "as titled", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "总结": "这是关于多模态Q4工作的讨论内容总结:\n- **Quincy**:一是Video Understanding(9月训练出结果,11月投稿);二是Omni推理优化,适配vLLM或高并发;三是将视觉记忆和视觉推理系统应用于饮食健康或其他垂直领域。\n- **Ricky**:一是VibeInvoice,将OCR功能整合到Agent流程处理中;二是Omni/VLM在澳门文旅上的持续后训练优化;三是VLM在澳门文旅上慢推理场景的训练调研及尝试(取决于小舟及BWI的功能需求);四是澳门文旅数据增广,多轮对话等合成;五是端到端TTS下游任务调研(可研究小米TTS及VITA组LUCY等work)。\n- **Vera & Ivan**:一是BarcoOne对接及功能需求提出,并迁移RAG、LLM、TTS等模型到原生平台进行完整流程测试;二是TTS API系统设计、研发及测试,包括论文指导、多个TTS模型融合及其整合流程处理、多进程队列机制开发测试;三是现有jarvis-api深化及MCP agent blackbox对接。\n- **WishList**:一是多模态RAG功能,调研图搜图、多模态搜索处理,及如何整合到BarcoOne成为Workflow功能之一;二是视觉理解推理及其训练,初步想到针对胃鏡临床数据、澳门文旅场景数据、饮食健康建议数据或其他开源可用数据(Ricky已完成,P1,2025/09/19)。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recuX12Csq3rdl", "record_id": "recuX12Csq3rdl"}, {"fields": {"End Date": 1765468800000, "Estimate Deadline": null, "Images": null, "Manday count": "10", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P2", "Progress notes": "已完成兩份資料製作並上傳到\n\\\\10.6.23.200\\Documents\\PPT Slides\\Showcase\nAgent 與 Embodied文件夾中", "Related Documents": null, "Start date": 1764518400000, "Status": "已完成", "Target Customers": null, "Task": "多智能體與具身智能PPT資料製作", "Task Description": "1. 製作多智能體及SOC PPT\n2. 製作具身智能内容PPT", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00sb_2ddc23a5-afeb-40c4-852e-f13d49644c2g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Benson", "id": "ou_7c091d83db9f1dfecc90bcf3e640c453", "name": "Benson"}], "总结": "Benson已完成多智能體及SOC、具身智能内容两份PPT资料的制作,于2025年12月12日上传至\\\\10.6.23.200\\Documents\\PPT Slides\\Showcase\\Agent 與 Embodied文件夹中,对应P2,工时10。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv59SmIPiBn1", "record_id": "recv59SmIPiBn1"}, {"fields": {"End Date": 1766073600000, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P2", "Progress notes": null, "Related Documents": null, "Start date": 1764345600000, "Status": "已封存", "Target Customers": null, "Task": "GDI機櫃遷移與小機房部署", "Task Description": "1. 遷移小機櫃到GDI\n2. GDI小機房規劃\n3. 遷移相關機器", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00sb_2ddc23a5-afeb-40c4-852e-f13d49644c2g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Benson", "id": "ou_7c091d83db9f1dfecc90bcf3e640c453", "name": "Benson"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}], "总结": "GDI機櫃遷移與小機房部署任務包括遷移小機櫃到GDI、GDI小機房規劃及遷移相關機器,由陈湝昕、Benson、马其远負責,狀態為已封存,優先級P2,計劃時間2025/11/29至2025/12/19。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv2RQZIURbPW", "record_id": "recv2RQZIURbPW"}, {"fields": {"End Date": 1763654400000, "Estimate Deadline": null, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P1", "Progress notes": null, "Related Documents": null, "Start date": 1763308800000, "Status": "已完成", "Target Customers": null, "Task": "C2 项目PPT制作", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}], "总结": "C2项目PPT制作,负责人马其远,状态已完成,优先级P1,计划开始时间2025/11/17,计划结束时间2025/11/21,工时5。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv3brkbJVxXA", "record_id": "recv3brkbJVxXA"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "Wish List", "Target Customers": null, "Task": "Prefect / AirTable / Baserow 原型測試", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00sb_2ddc23a5-afeb-40c4-852e-f13d49644c2g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Benson", "id": "ou_7c091d83db9f1dfecc90bcf3e640c453", "name": "Benson"}], "总结": "Benson进行了Prefect、AirTable、Baserow的原型测试,相关内容列在愿望清单中。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv3IJiR7DwDZ", "record_id": "recv3IJiR7DwDZ"}, {"fields": {"End Date": 1764259200000, "Estimate Deadline": null, "Images": null, "Manday count": "3", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P2", "Progress notes": null, "Related Documents": null, "Start date": 1764000000000, "Status": "已完成", "Target Customers": null, "Task": "重裝MO7960及3660服務器", "Task Description": "1. 數據備份\n2. 完成兩台主機設置及數據遷移", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": "重装MO7960及3660服务器:已完成数据备份、两台主机设置及数据迁移。负责人Timous,优先级P2,计划时间2025/11/25 - 2025/11/28,工时3。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv3OuS6DMQ6o", "record_id": "recv3OuS6DMQ6o"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P1", "Progress notes": null, "Related Documents": null, "Start date": 1767024000000, "Status": "已完成", "Target Customers": null, "Task": "重新部署建民RAG", "Task Description": "1.根据建民要求将原本的ES改为Milvus并部署 2.在预生产环境中用Chart的方式部署法律RAG", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "总结": "重新部署建民RAG:1. 根据建民要求将原本的ES改为Milvus并部署;2. 在预生产环境中用Chart的方式部署法律RAG。(负责人:陈湝昕,状态:已完成,优先级:P1,截止日期:2025/12/30)", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv6J8H7Cr88C", "record_id": "recv6J8H7Cr88C"}, {"fields": {"End Date": 1767715200000, "Estimate Deadline": null, "Images": null, "Manday count": "2", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1767715200000, "Status": "已完成", "Target Customers": null, "Task": "法律RAG打包并部署", "Task Description": "协助建民将原有的医疗RAG改成法律版本的Demo并打包成可部署的chart包或docker", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}], "总结": "法律RAG打包并部署:协助建民将原有的医疗RAG改成法律版本的Demo,并打包成可部署的chart包或docker。陈湝昕已完成,起止时间为2026/01/07,优先级2。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv7u4xoEXygl", "record_id": "recv7u4xoEXygl"}, {"fields": {"End Date": 1769443200000, "Estimate Deadline": null, "Images": null, "Manday count": "2", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P1", "Progress notes": null, "Related Documents": null, "Start date": 1769356800000, "Status": "已完成", "Target Customers": null, "Task": "部署AI-Translation", "Task Description": "協助文繞部署AI-Translation到BWZ環境及功能測試", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": "任务“部署AI-Translation”:协助文繞将AI-Translation部署到BWZ环境并进行功能测试,负责人Timous,优先级P1,状态已完成,开始时间2026/01/26,结束时间2026/01/27,工时2。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recv9KQTtuVTXc", "record_id": "recv9KQTtuVTXc"}, {"fields": {"End Date": 1768924800000, "Estimate Deadline": null, "Images": null, "Manday count": "1", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P4", "Progress notes": null, "Related Documents": null, "Start date": 1768924800000, "Status": "已完成", "Target Customers": null, "Task": "部署及測試Next AI Drawio", "Task Description": "部署及測試Next AI Drawio的基本建圖能力,已把鏡像上傳到harbor,讓嘉泰幫忙打包服務", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": "部署及測試Next AI Drawio:完成基本建圖能力部署與測試,鏡像已上傳至harbor,請嘉泰協助打包服務。(Timous,已完成,P4,2026/01/21)", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvb4dRwioMTI", "record_id": "recvb4dRwioMTI"}, {"fields": {"End Date": 1770912000000, "Estimate Deadline": null, "Images": null, "Manday count": "5", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P3", "Progress notes": "雷池 WAF 部署與服務測試", "Related Documents": null, "Start date": 1770566400000, "Status": "已完成", "Target Customers": null, "Task": "部署測試雷池", "Task Description": "測試透過雷池來訪問智能院服務", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": "部署测试雷池,测试通过雷池访问智能院服务,该雷池WAF部署与服务测试任务由Timous完成,优先级P3,起止时间为2026年2月9日至2月13日,工时5。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvb4fioUAqha", "record_id": "recvb4fioUAqha"}, {"fields": {"End Date": 1774022400000, "Estimate Deadline": null, "Images": null, "Manday count": "3", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1773849600000, "Status": "已完成", "Target Customers": null, "Task": "24B-2平台部署測試", "Task Description": "根據現有的項目來修改並測試部署, 但因學生已放假, 待驗證流程可行性後再提供服務給SOC測試使用", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": "24B-2平台部署测试:根据现有项目修改并测试部署,因学生已放假,待验证流程可行性后再提供服务给SOC测试使用,目前已完成。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvb68Naa1Ylu", "record_id": "recvb68Naa1Ylu"}, {"fields": {"End Date": 1770739200000, "Estimate Deadline": null, "Images": null, "Manday count": "2", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P1", "Progress notes": null, "Related Documents": null, "Start date": 1770739200000, "Status": "已完成", "Target Customers": null, "Task": "Cyberx、SOCscore 预生产环境上线", "Task Description": "将两个对外项目在ICC预生产环境上线、需要准备好OS以及对外隧道", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00ku_3b39893d-514a-42b8-ad84-736eef337d7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "刘忠杰", "id": "ou_bf17af7947103d4687a0bd17578c0705", "name": "刘忠杰"}], "总结": "Cyberx、SOCscore预生产环境上线:需在ICC预生产环境上线两个对外项目,准备好OS及对外隧道。陈湝昕、刘忠杰负责,已完成,优先级P1,时间2026/02/11。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recvbAS7SN59bh", "record_id": "recvbAS7SN59bh"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": "45", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P3", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "待开始", "Target Customers": null, "Task": "PSD Internal KB System", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": "PSD Internal KB System 项目由 Timous 负责,目前状态为待开始,优先级 P3,预估工时 45。", "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recveb6Vwj2wCX", "record_id": "recveb6Vwj2wCX"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P3", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "待开始", "Target Customers": null, "Task": "Requirements & Platform Selection", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": "Requirements & Platform Selection(Timous)任务状态为待开始,优先级P3,关联PSD Internal KB System。", "父記錄": [{"record_ids": ["recveb6Vwj2wCX"], "table_id": "tblJLFMoImjmioZz", "text": "PSD Internal KB System", "text_arr": ["PSD Internal KB System"], "type": "text"}]}, "id": "recveb7zKpo9Sn", "record_id": "recveb7zKpo9Sn"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P3", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "待开始", "Target Customers": null, "Task": "Requirements analysis", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": "项目“Requirements analysis”由Timous负责,当前状态为待开始,优先级P3,所属模块为Requirements & Platform Selection。", "父記錄": [{"record_ids": ["recveb7zKpo9Sn"], "table_id": "tblJLFMoImjmioZz", "text": "Requirements & Platform Selection", "text_arr": ["Requirements & Platform Selection"], "type": "text"}]}, "id": "recveb7PL5Of5r", "record_id": "recveb7PL5Of5r"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P3", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "待开始", "Target Customers": null, "Task": "Tool evaluation & selection", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": "任务“Tool evaluation & selection”(工具评估与选择)由Timous负责,当前状态为“待开始”,优先级P3,所属模块为“Requirements & Platform Selection”(需求与平台选择)。", "父記錄": [{"record_ids": ["recveb7zKpo9Sn"], "table_id": "tblJLFMoImjmioZz", "text": "Requirements & Platform Selection", "text_arr": ["Requirements & Platform Selection"], "type": "text"}]}, "id": "recveb7TCmeZha", "record_id": "recveb7TCmeZha"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P3", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "待开始", "Target Customers": null, "Task": "RAG Implementation", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": "任务名称:RAG Implementation,负责人:Timous,状态:待开始,优先级:P3,所属系统:PSD Internal KB System。", "父記錄": [{"record_ids": ["recveb6Vwj2wCX"], "table_id": "tblJLFMoImjmioZz", "text": "PSD Internal KB System", "text_arr": ["PSD Internal KB System"], "type": "text"}]}, "id": "recveb7V5dgHI2", "record_id": "recveb7V5dgHI2"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P3", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "待开始", "Target Customers": null, "Task": "RAG flow design", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": "条目信息:标题为“RAG flow design”,负责人为“Timous”,状态“待开始”,优先级“P3”,关联项“RAG Implementation”。", "父記錄": [{"record_ids": ["recveb7V5dgHI2"], "table_id": "tblJLFMoImjmioZz", "text": "RAG Implementation", "text_arr": ["RAG Implementation"], "type": "text"}]}, "id": "recveb7X6ojqCA", "record_id": "recveb7X6ojqCA"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P3", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "待开始", "Target Customers": null, "Task": "Document indexing & vectorization", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": "任务“Document indexing & vectorization”(文档索引与向量化)由Timous负责,状态为“待开始”,优先级P3,属于“RAG Implementation”(RAG实施)相关工作。", "父記錄": [{"record_ids": ["recveb7V5dgHI2"], "table_id": "tblJLFMoImjmioZz", "text": "RAG Implementation", "text_arr": ["RAG Implementation"], "type": "text"}]}, "id": "recveb7YRX8NmC", "record_id": "recveb7YRX8NmC"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P3", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "待开始", "Target Customers": null, "Task": "RAG pipeline implementation", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": "RAG pipeline implementation(RAG Implementation)由Timous负责,当前状态为待开始,优先级P3。", "父記錄": [{"record_ids": ["recveb7V5dgHI2"], "table_id": "tblJLFMoImjmioZz", "text": "RAG Implementation", "text_arr": ["RAG Implementation"], "type": "text"}]}, "id": "recveb831zkQ2R", "record_id": "recveb831zkQ2R"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P3", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "待开始", "Target Customers": null, "Task": "RAG tuning & evaluation", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": "任务:RAG tuning & evaluation,负责人:Timous,状态:待开始,优先级:P3,所属模块:RAG Implementation。", "父記錄": [{"record_ids": ["recveb7V5dgHI2"], "table_id": "tblJLFMoImjmioZz", "text": "RAG Implementation", "text_arr": ["RAG Implementation"], "type": "text"}]}, "id": "recveb83P9jiU6", "record_id": "recveb83P9jiU6"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P3", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "待开始", "Target Customers": null, "Task": "Deployment & Testing", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": "任务“Deployment & Testing”由Timous负责,当前状态为“待开始”,优先级P3,所属项目为“PSD Internal KB System”。", "父記錄": [{"record_ids": ["recveb6Vwj2wCX"], "table_id": "tblJLFMoImjmioZz", "text": "PSD Internal KB System", "text_arr": ["PSD Internal KB System"], "type": "text"}]}, "id": "recveb8cSlAKdY", "record_id": "recveb8cSlAKdY"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P3", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "待开始", "Target Customers": null, "Task": "Production deployment", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": "Production deployment任务由Timous负责,状态为待开始,优先级P3,归类于Deployment & Testing。", "父記錄": [{"record_ids": ["recveb8cSlAKdY"], "table_id": "tblJLFMoImjmioZz", "text": "Deployment & Testing", "text_arr": ["Deployment & Testing"], "type": "text"}]}, "id": "recveb8gbpZl1d", "record_id": "recveb8gbpZl1d"}, {"fields": {"End Date": null, "Estimate Deadline": null, "Images": null, "Manday count": null, "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": "P3", "Progress notes": null, "Related Documents": null, "Start date": null, "Status": "待开始", "Target Customers": null, "Task": "Testing and handover", "Task Description": null, "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "总结": "Testing and handover (Timous) - Status: Pending, Priority: P3, Category: Deployment & Testing", "父記錄": [{"record_ids": ["recveb8cSlAKdY"], "table_id": "tblJLFMoImjmioZz", "text": "Deployment & Testing", "text_arr": ["Deployment & Testing"], "type": "text"}]}, "id": "recveb8hXJhCWs", "record_id": "recveb8hXJhCWs"}, {"fields": {"End Date": 1773849600000, "Estimate Deadline": null, "Images": null, "Manday count": "4", "Overdue": [{"text": "✅ Normal", "type": "text"}], "Priority": null, "Progress notes": null, "Related Documents": null, "Start date": 1773676800000, "Status": "已完成", "Target Customers": null, "Task": "AgentSandbox预生产环境准备", "Task Description": "将AgentSandbox部署到ICC环境并在内部进行测试及演示", "Task leader": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}], "总结": null, "父記錄": [{"record_ids": null, "table_id": "tblJLFMoImjmioZz", "text": null, "text_arr": [], "type": "text"}]}, "id": "recveEwYu1bTls", "record_id": "recveEwYu1bTls"}]}, {"name": "FundDelivery", "records": [{"fields": {"group": null, "事务名稱": "25C1項目答辯", "事务情况": "25年C1項目的答辯工作\n1. 準備ppt\n2. 進行相應答辯預演\n3. 準備問題集及應對答案", "事务执行人": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}], "人天開銷": "20", "任務完成時間": 1748620800000, "父记录": [{"record_ids": null, "table_id": "tblfQgtdk05tBiuw", "text": null, "text_arr": [], "type": "text"}], "跟進內容": "已完成25年C1項目的申請及答辯工作", "进展": "已完成", "重要程度": "P1", "項目歸屬": ["25C1"], "預期完成時間 ETA": 1746892800000}, "id": "recuGxLJiAuhXf", "record_id": "recuGxLJiAuhXf"}, {"fields": {"group": null, "事务名稱": "哈工大智能體模型訓練環境部署", "事务情况": "1. 在天案云上準備兩卡的環境\n2. 配置相關PVC綁定\n3. 配置FRP以給遠程端口", "事务执行人": [{"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "人天開銷": null, "任務完成時間": null, "父记录": [{"record_ids": null, "table_id": "tblfQgtdk05tBiuw", "text": null, "text_arr": [], "type": "text"}], "跟進內容": "平台容器外放", "进展": "已完成", "重要程度": "P4", "項目歸屬": ["24重點"], "預期完成時間 ETA": null}, "id": "recuGxM4sHnyY0", "record_id": "recuGxM4sHnyY0"}, {"fields": {"group": null, "事务名稱": "K8s平臺跨節點分佈式訓練測試", "事务情况": "1. 測試K3s/K8s平臺,如天案云,原生集群跨節點調度的方法\n2. 跨節點的推理,優化方法及參數\n3. 跨節點的訓練,優化方法及參數\n4. 一鍵化部署多節點啓動的設計思考(包括PVC載,負載内服務啓動,網絡LB設計等)", "事务执行人": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_d281e858-6120-44ba-8fdb-6b176d069dcg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈湝昕", "id": "ou_1e7f943e9a7dc1dc81428898e3798030", "name": "陈湝昕"}, {"avatar_url": "https://s1-imfile.feishucdn.com/static-resource/v1/v3_00c0_ba335016-952c-4498-a832-193c6158a0ag~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "吴嘉泰", "id": "ou_cff77177e8bb971c1565f1982212178c", "name": "吴嘉泰"}], "人天開銷": null, "任務完成時間": null, "父记录": [{"record_ids": null, "table_id": "tblfQgtdk05tBiuw", "text": null, "text_arr": [], "type": "text"}], "跟進內容": "集群计算性能优化-RDMA评估指标", "进展": "已完成", "重要程度": "P2", "項目歸屬": ["24重點"], "預期完成時間 ETA": 1755273600000}, "id": "recuGE1xFKplL0", "record_id": "recuGE1xFKplL0"}, {"fields": {"group": null, "事务名稱": "23年B類項目-第二年度報告編寫", "事务情况": "編寫 23 年 B 類項目-第二年度報告,内容圍繞:\n1. 數據增廣\n2. 表情分別結果\n2. Pipeline 串聯及其測試效果 (face detection, landmarks detection, facial expression classification)", "事务执行人": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00cc_e521134f-3aad-42f2-94d3-9c39e11f2e7g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Ricky", "id": "ou_6759b23cefec74a54a102090aa129c7e", "name": "Ricky"}], "人天開銷": null, "任務完成時間": 1754409600000, "父记录": [{"record_ids": null, "table_id": "tblfQgtdk05tBiuw", "text": null, "text_arr": [], "type": "text"}], "跟進內容": "完成人臉表情結果分析&框架實時性實驗初稿,開始對新的face datasets進行review和處理 (已提交 word 檔報告)", "进展": "已完成", "重要程度": null, "項目歸屬": ["23B"], "預期完成時間 ETA": 1756396800000}, "id": "recuQfRTRRpyhv", "record_id": "recuQfRTRRpyhv"}, {"fields": {"group": null, "事务名稱": "25C2項目本子及文件編寫", "事务情况": "1. 本子\n2. CTE\n3. 相關摘要", "事务执行人": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00bu_cc39b281-29de-4715-8848-5450b68f7f3g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "马其远", "id": "ou_ba9ac73ef517710a3f17465d7366c3e4", "name": "马其远"}], "人天開銷": null, "任務完成時間": null, "父记录": [{"record_ids": null, "table_id": "tblfQgtdk05tBiuw", "text": null, "text_arr": [], "type": "text"}], "跟進內容": null, "进展": "已完成", "重要程度": "P1", "項目歸屬": ["25C2"], "預期完成時間 ETA": 1755619200000}, "id": "recuSiFcv3yoh7", "record_id": "recuSiFcv3yoh7"}, {"fields": {"group": null, "事务名稱": "24年重點-智能體框架高可用設計", "事务情况": "1. 阿達討論相關設計要素\n2. MCP Zero框架改造", "事务执行人": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}], "人天開銷": null, "任務完成時間": null, "父记录": [{"record_ids": null, "table_id": "tblfQgtdk05tBiuw", "text": null, "text_arr": [], "type": "text"}], "跟進內容": "此Task已转移到 ✅Agent Group Dashboard进行详细跟进,同事框架高可用能力暂不着手开展", "进展": "已封存", "重要程度": "P2", "項目歸屬": ["24重點"], "預期完成時間 ETA": 1755792000000}, "id": "recuT4Qu75fZ8e", "record_id": "recuT4Qu75fZ8e"}, {"fields": {"group": null, "事务名稱": "24年重點-工具調用Agent設計", "事务情况": "1. 討論並更新相關工具調用Agent的列表\n2. 找到每個Agent的跟進人和party", "事务执行人": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef4b9e23-e5e2-491a-a599-71ba7c889dfg~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "黎宇轩", "id": "ou_252fb4c374474b2586d576cc53ef9db3", "name": "黎宇轩"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00sb_2ddc23a5-afeb-40c4-852e-f13d49644c2g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Benson", "id": "ou_7c091d83db9f1dfecc90bcf3e640c453", "name": "Benson"}], "人天開銷": null, "任務完成時間": null, "父记录": [{"record_ids": null, "table_id": "tblfQgtdk05tBiuw", "text": null, "text_arr": [], "type": "text"}], "跟進內容": null, "进展": "已封存", "重要程度": "P3", "項目歸屬": ["24重點"], "預期完成時間 ETA": null}, "id": "recuT4QOTVg73z", "record_id": "recuT4QOTVg73z"}, {"fields": {"group": null, "事务名稱": "26C1項目本子及文件編寫", "事务情况": "編寫26年C1類項目文件", "事务执行人": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_ef929e52-4fc4-424a-9de6-c6740755cf9g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "陈文晓", "id": "ou_67a9397a62fcb33e2769c211deced6fe", "name": "陈文晓"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}, {"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v3_00sb_2ddc23a5-afeb-40c4-852e-f13d49644c2g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Benson", "id": "ou_7c091d83db9f1dfecc90bcf3e640c453", "name": "Benson"}], "人天開銷": "5", "任務完成時間": 1770307200000, "父记录": [{"record_ids": null, "table_id": "tblfQgtdk05tBiuw", "text": null, "text_arr": [], "type": "text"}], "跟進內容": "1. CTE\n2. 合作協議\n3. 推薦信\n4. 系統填寫文件\n5. 系統提交文件\n6. 系統摘要", "进展": "已完成", "重要程度": "P1", "項目歸屬": ["26C1"], "預期完成時間 ETA": 1769961600000}, "id": "recv96Xz894REj", "record_id": "recv96Xz894REj"}, {"fields": {"group": null, "事务名稱": "26C1項目PPT預備及報告", "事务情况": "編寫報告PPT", "事务执行人": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "人天開銷": "5", "任務完成時間": 1774368000000, "父记录": [{"record_ids": null, "table_id": "tblfQgtdk05tBiuw", "text": null, "text_arr": [], "type": "text"}], "跟進內容": null, "进展": "进行中", "重要程度": "P1", "項目歸屬": ["26C1"], "預期完成時間 ETA": 1774368000000}, "id": "recvdZpHlzk9nr", "record_id": "recvdZpHlzk9nr"}, {"fields": {"group": null, "事务名稱": "26C1項目答辯", "事务情况": "項目現場答辯", "事务执行人": [{"avatar_url": "https://s3-imfile.feishucdn.com/static-resource/v1/v2_1dcd6032-2d98-40f5-81f7-026469c37f8g~?image_size=72x72&cut_type=default-face&quality=&format=jpeg&sticker_format=.webp", "email": "", "en_name": "Timous", "id": "ou_17bdc3e278bb787efd6aa36e8fe59bdb", "name": "Timous"}], "人天開銷": "5", "任務完成時間": 1774627200000, "父记录": [{"record_ids": null, "table_id": "tblfQgtdk05tBiuw", "text": null, "text_arr": [], "type": "text"}], "跟進內容": null, "进展": "进行中", "重要程度": "P1", "項目歸屬": ["26C1"], "預期完成時間 ETA": 1774627200000}, "id": "recvfqgdxgUOWs", "record_id": "recvfqgdxgUOWs"}, {"fields": {"group": null, "事务名稱": null, "事务情况": null, "事务执行人": null, "人天開銷": null, "任務完成時間": null, "父记录": [{"record_ids": null, "table_id": "tblfQgtdk05tBiuw", "text": null, "text_arr": [], "type": "text"}], "跟進內容": null, "进展": "进行中", "重要程度": null, "項目歸屬": null, "預期完成時間 ETA": null}, "id": "recvfqotZuhKd3", "record_id": "recvfqotZuhKd3"}]}]; // Array of {name, records}
|
||
let rawRecords = [];
|
||
let records = [];
|
||
|
||
window.refreshDataAPI = async function() {
|
||
const btn = document.getElementById('refreshData');
|
||
if (!btn) return;
|
||
const originalText = btn.innerHTML;
|
||
btn.innerHTML = '⏳ Pulling latest Feishu data (may take tens of seconds)...';
|
||
btn.disabled = true;
|
||
try {
|
||
const res = await fetch('/api/refresh', {method: 'GET'});
|
||
if (!res.ok) {
|
||
let msg = res.statusText;
|
||
try {
|
||
const data = await res.json();
|
||
if(data.message) msg = data.message;
|
||
} catch(e) {}
|
||
alert('Refresh failed: ' + msg + '\\nIt might be a timeout connecting to Feishu, please try again later.');
|
||
} else {
|
||
alert('Refresh successful! The page will reload to display the latest data.');
|
||
window.location.href = '/';
|
||
}
|
||
} catch(e) {
|
||
alert('Refresh request error: ' + e.message + '\\nIf using local files, please ensure the backend server.py is running.');
|
||
} finally {
|
||
btn.innerHTML = originalText;
|
||
btn.disabled = false;
|
||
}
|
||
};
|
||
|
||
function extractText(val) {
|
||
if (Array.isArray(val) && val.length > 0) return val[0].text || '';
|
||
return val ? String(val) : '';
|
||
}
|
||
|
||
function formatDate(ts) {
|
||
if (!ts) return '';
|
||
const d = new Date(Number(ts));
|
||
const mo = String(d.getMonth()+1).padStart(2,'0');
|
||
const da = String(d.getDate()).padStart(2,'0');
|
||
return `${mo}-${da}`;
|
||
}
|
||
|
||
function parseRecords() {
|
||
records = rawRecords.map(r => {
|
||
const fields = r.fields || {};
|
||
const taskNameRaw = fields['Task'] || fields['Task Description'];
|
||
const taskName = extractText(taskNameRaw) || 'Untitled Task';
|
||
const status = extractText(fields['Status']).trim();
|
||
const priority = extractText(fields['Priority']).trim();
|
||
const overdue = extractText(fields['Overdue']).trim();
|
||
const manday = fields['Manday count'] || '';
|
||
const progressNotes = extractText(fields['Progress notes']).trim();
|
||
|
||
let tcRaw = fields['Target Customers'];
|
||
let targetCustomers = '';
|
||
if (Array.isArray(tcRaw)) {
|
||
targetCustomers = tcRaw.map(x => typeof x === 'object' ? (x.text || '') : String(x)).join(', ').trim();
|
||
} else if (tcRaw) {
|
||
targetCustomers = String(tcRaw).trim();
|
||
}
|
||
if (targetCustomers) {
|
||
console.log("Parsed Target Customers for [" + taskName + "]:", targetCustomers);
|
||
}
|
||
|
||
let parentRaw = fields['父记录'];
|
||
let parentId = null;
|
||
let parentName = null;
|
||
|
||
if (Array.isArray(parentRaw) && parentRaw.length > 0) {
|
||
if (parentRaw[0].record_ids && parentRaw[0].record_ids.length > 0) {
|
||
parentId = parentRaw[0].record_ids[0];
|
||
} else {
|
||
parentName = parentRaw[0].text;
|
||
}
|
||
} else if (typeof parentRaw === 'string') {
|
||
parentName = parentRaw.trim();
|
||
}
|
||
|
||
const startDateRaw = fields['Start date'];
|
||
const endDateRaw = fields['End Date'];
|
||
const startDate = startDateRaw ? Number(startDateRaw) : Infinity;
|
||
const endDate = endDateRaw ? Number(endDateRaw) : Infinity;
|
||
|
||
const leadersRaw = Array.isArray(fields['Task leader']) ? fields['Task leader'] : [];
|
||
const leaders = leadersRaw.filter(x => x && typeof x === 'object').map(x => ({name: x.name, avatar: x.avatar_url}));
|
||
|
||
return {
|
||
id: r.record_id,
|
||
taskName,
|
||
status,
|
||
priority,
|
||
overdue,
|
||
manday,
|
||
progressNotes,
|
||
targetCustomers,
|
||
parentId,
|
||
parentName,
|
||
startDate,
|
||
endDate,
|
||
startDateStr: formatDate(startDateRaw),
|
||
endDateStr: formatDate(endDateRaw),
|
||
leaders
|
||
};
|
||
});
|
||
|
||
// Build hierarchy mapping
|
||
const nameMap = {};
|
||
records.forEach(r => nameMap[r.taskName] = r.id);
|
||
records.forEach(r => {
|
||
if (!r.parentId && r.parentName && nameMap[r.parentName]) {
|
||
r.parentId = nameMap[r.parentName];
|
||
}
|
||
if (r.parentId === r.id) r.parentId = null;
|
||
});
|
||
|
||
// Populate dropdowns
|
||
const statuses = new Set();
|
||
const leaderNames = new Set();
|
||
records.forEach(r => {
|
||
if(r.status) statuses.add(r.status);
|
||
r.leaders.forEach(l => leaderNames.add(l.name));
|
||
});
|
||
|
||
const statusSelect = document.getElementById('statusFilter');
|
||
statusSelect.innerHTML = '<option value="">All Statuses</option>';
|
||
Array.from(statuses).sort().forEach(s => {
|
||
const opt = document.createElement('option');
|
||
opt.value = opt.textContent = s;
|
||
statusSelect.appendChild(opt);
|
||
});
|
||
|
||
const leaderSelect = document.getElementById('leaderFilter');
|
||
leaderSelect.innerHTML = '<option value="">All Leaders</option>';
|
||
Array.from(leaderNames).sort().forEach(l => {
|
||
const opt = document.createElement('option');
|
||
opt.value = opt.textContent = l;
|
||
leaderSelect.appendChild(opt);
|
||
});
|
||
}
|
||
|
||
function switchTab(index) {
|
||
if (!tabData[index]) return;
|
||
rawRecords = tabData[index].records;
|
||
|
||
document.querySelectorAll('.tab').forEach((t, i) => {
|
||
if (i === index) t.classList.add('active');
|
||
else t.classList.remove('active');
|
||
});
|
||
|
||
// Reset filters visual
|
||
document.getElementById('searchInput').value = '';
|
||
document.getElementById('sortOrder').value = 'default';
|
||
|
||
parseRecords();
|
||
render();
|
||
}
|
||
|
||
function initTabs() {
|
||
const container = document.getElementById('tabContainer');
|
||
tabData.forEach((tab, index) => {
|
||
const btn = document.createElement('button');
|
||
btn.className = 'tab';
|
||
btn.textContent = tab.name;
|
||
btn.onclick = () => switchTab(index);
|
||
container.appendChild(btn);
|
||
});
|
||
|
||
const summaryBtn = document.createElement('button');
|
||
summaryBtn.className = 'tab';
|
||
summaryBtn.style.marginLeft = 'auto'; // Push to the right
|
||
summaryBtn.style.color = '#8b5cf6';
|
||
summaryBtn.style.fontWeight = 'bold';
|
||
summaryBtn.innerHTML = '🌟 全局大总结';
|
||
summaryBtn.onclick = window.requestGlobalSummary;
|
||
container.appendChild(summaryBtn);
|
||
|
||
if (tabData.length > 0) {
|
||
switchTab(0);
|
||
}
|
||
}
|
||
|
||
// UI State
|
||
let isExpandAll = false;
|
||
|
||
document.getElementById('searchInput').addEventListener('input', render);
|
||
document.getElementById('statusFilter').addEventListener('change', render);
|
||
document.getElementById('leaderFilter').addEventListener('change', render);
|
||
document.getElementById('sortOrder').addEventListener('change', render);
|
||
document.getElementById('dateFrom').addEventListener('change', render);
|
||
document.getElementById('dateTo').addEventListener('change', render);
|
||
document.getElementById('toggleExpand').addEventListener('click', () => {
|
||
isExpandAll = !isExpandAll;
|
||
render();
|
||
});
|
||
|
||
function sortNodes(nodes, sortKey) {
|
||
if (sortKey === 'default') return nodes;
|
||
nodes.sort((a, b) => {
|
||
if (sortKey === 'startDate') return a.startDate - b.startDate;
|
||
if (sortKey === 'priority') {
|
||
const getP = p => p.includes('High') || p.includes('Important') ? 3 : p.includes('Normal') ? 2 : 1;
|
||
return getP(b.priority) - getP(a.priority);
|
||
}
|
||
return 0;
|
||
});
|
||
nodes.forEach(n => sortNodes(n.children, sortKey));
|
||
return nodes;
|
||
}
|
||
|
||
function filterNodes(nodes, search, statusFilter, leaderFilter, dateFrom, dateTo) {
|
||
let result = [];
|
||
nodes.forEach(n => {
|
||
let matchSearch = n.taskName.toLowerCase().includes(search.toLowerCase()) ||
|
||
(n.targetCustomers && n.targetCustomers.toLowerCase().includes(search.toLowerCase()));
|
||
let matchStatus = statusFilter === '' || n.status === statusFilter;
|
||
let matchLeader = leaderFilter === '' || n.leaders.some(l => l.name === leaderFilter);
|
||
|
||
let matchDate = true;
|
||
if (dateFrom !== -Infinity || dateTo !== Infinity) {
|
||
let s = n.startDate !== Infinity ? n.startDate : (n.endDate !== Infinity ? n.endDate : Infinity);
|
||
let e = n.endDate !== Infinity ? n.endDate : (n.startDate !== Infinity ? n.startDate : Infinity);
|
||
|
||
if (s !== Infinity && e !== Infinity) {
|
||
matchDate = (s <= dateTo) && (e >= dateFrom);
|
||
} else {
|
||
matchDate = false;
|
||
}
|
||
}
|
||
|
||
let filteredChildren = filterNodes(n.children, search, statusFilter, leaderFilter, dateFrom, dateTo);
|
||
|
||
let selfMatch = matchSearch && matchStatus && matchLeader && matchDate;
|
||
|
||
if (selfMatch || filteredChildren.length > 0) {
|
||
let cloned = {...n, children: filteredChildren};
|
||
cloned.isMatch = selfMatch;
|
||
result.push(cloned);
|
||
}
|
||
});
|
||
return result;
|
||
}
|
||
|
||
function genTags(n) {
|
||
let html = '<div class="tags">';
|
||
if (n.status) {
|
||
let bg = '#f1f5f9', fg = '#475569';
|
||
if (n.status.includes('Ongoing') || n.status.includes('进行中')) { bg='#dbeafe'; fg='#1e40af'; }
|
||
else if (n.status.includes('Completed') || n.status.includes('完成')) { bg='#d1fae5'; fg='#065f46'; }
|
||
html += `<span class="tag" style="background:${bg};color:${fg}">${n.status}</span>`;
|
||
}
|
||
if (n.priority) {
|
||
if (n.priority.includes('High') || n.priority.includes('Important')) {
|
||
html += `<span class="tag" style="background:#ffedd5;color:#c2410c">${n.priority}</span>`;
|
||
} else if (!n.priority.includes('Normal')) {
|
||
html += `<span class="tag" style="background:#f1f5f9;color:#475569">${n.priority}</span>`;
|
||
}
|
||
}
|
||
if (n.overdue && !n.overdue.includes('✅')) {
|
||
html += `<span class="tag" style="background:#fee2e2;color:#991b1b">${n.overdue}</span>`;
|
||
}
|
||
if (n.targetCustomers) {
|
||
html += `<span class="tag" style="background:#fce7f3;color:#9d174d">🎯 ${n.targetCustomers}</span>`;
|
||
}
|
||
html += '</div>';
|
||
return html;
|
||
}
|
||
|
||
function genMeta(n) {
|
||
let html = '<div class="task-meta">';
|
||
if (n.leaders.length > 0) {
|
||
html += '<div class="meta-item">';
|
||
n.leaders.forEach(l => {
|
||
if (l.avatar) html += `<img src="${l.avatar}" class="avatar" title="${l.name}">`;
|
||
else html += `<span>${l.name}</span>`;
|
||
});
|
||
html += '</div>';
|
||
}
|
||
if (n.startDateStr || n.endDateStr) {
|
||
html += `<div class="meta-item">🗓️ ${n.startDateStr} ~ ${n.endDateStr}</div>`;
|
||
}
|
||
if (n.manday) {
|
||
html += `<div class="meta-item">⏱️ ${n.manday}d</div>`;
|
||
}
|
||
html += '</div>';
|
||
return html;
|
||
}
|
||
|
||
window.toggleNotes = function(event, id) {
|
||
event.stopPropagation();
|
||
event.preventDefault();
|
||
const el = document.getElementById('notes-' + id);
|
||
if (!el) return;
|
||
if (el.style.display === 'none') {
|
||
el.style.display = 'block';
|
||
} else {
|
||
el.style.display = 'none';
|
||
}
|
||
};
|
||
|
||
function renderHTML(nodes, isRoot) {
|
||
if (nodes.length === 0) return '';
|
||
let html = isRoot ? '<ul class="tree">' : '<ul>';
|
||
nodes.forEach(n => {
|
||
let dimClass = n.isMatch === false ? 'dimmed' : '';
|
||
let tags = genTags(n);
|
||
let meta = genMeta(n);
|
||
|
||
// Hide details by default, show toggle button if notes exist
|
||
let toggleNotesBtn = '';
|
||
let notesHtml = '';
|
||
if (n.progressNotes) {
|
||
toggleNotesBtn = `<span title="Toggle Progress Notes" style="cursor:pointer; font-size:14px; margin-right:6px;" onclick="window.toggleNotes(event, '${n.id}')">📝</span>`;
|
||
notesHtml = `<div id="notes-${n.id}" style="display:none; font-size:13px; color:#64748b; margin-top:8px; padding:8px; background:#f8fafc; border-radius:6px; border:1px dashed #cbd5e1; font-family: monospace; white-space: pre-wrap;">${n.progressNotes}</div>`;
|
||
}
|
||
|
||
html += `<li class="${dimClass}">`;
|
||
if (n.children.length > 0) {
|
||
let openAttr = isExpandAll ? 'open' : '';
|
||
html += `<details ${openAttr}>
|
||
<summary>
|
||
<div class="node-content" style="flex-wrap: wrap;">
|
||
<div style="width:100%; display:flex; align-items:center; justify-content:space-between;">
|
||
<div class="task-left">
|
||
<span class="toggle-icon">▶</span>
|
||
${toggleNotesBtn}
|
||
<span class="task-title">${n.taskName}</span>
|
||
${tags}
|
||
</div>
|
||
${meta}
|
||
</div>
|
||
${notesHtml ? '<div style="width:100%; padding-left:24px;">' + notesHtml + '</div>' : ''}
|
||
</div>
|
||
</summary>
|
||
${renderHTML(n.children, false)}
|
||
</details>`;
|
||
} else {
|
||
let unnamedClass = n.taskName === 'Untitled Task' ? 'unnamed-task' : '';
|
||
html += `<div class="node-content empty-leaf" style="flex-wrap: wrap;">
|
||
<div style="width:100%; display:flex; align-items:center; justify-content:space-between;">
|
||
<div class="task-left">
|
||
${toggleNotesBtn}
|
||
<span class="task-title ${unnamedClass}">${n.taskName}</span>
|
||
${tags}
|
||
</div>
|
||
${meta}
|
||
</div>
|
||
${notesHtml ? '<div style="width:100%; padding-left:8px;">' + notesHtml + '</div>' : ''}
|
||
</div>`;
|
||
}
|
||
html += '</li>';
|
||
});
|
||
html += '</ul>';
|
||
return html;
|
||
}
|
||
|
||
function calculateNodeManday(node, coveredByParentWithManday) {
|
||
let manday = 0;
|
||
let hasManday = false;
|
||
if (node.manday) {
|
||
let val = parseFloat(node.manday);
|
||
if (!isNaN(val) && val > 0) {
|
||
// Rule: Divide by number of leaders
|
||
let divisor = (node.leaders && node.leaders.length > 0) ? node.leaders.length : 1;
|
||
manday = val / divisor;
|
||
hasManday = true;
|
||
}
|
||
}
|
||
|
||
if (node.isMatch) {
|
||
if (coveredByParentWithManday) return 0; // Already counted at a higher level
|
||
if (hasManday) return manday; // This node matches and has its own manday, use it and ignore descendants' manday
|
||
// Match but no manday on this node, accumulate from matching descendants
|
||
return node.children.reduce((acc, child) => acc + calculateNodeManday(child, false), 0);
|
||
} else {
|
||
// This node doesn't match, check descendants.
|
||
// If a parent match already covered this branch, we still pass that info down.
|
||
return node.children.reduce((acc, child) => acc + calculateNodeManday(child, coveredByParentWithManday), 0);
|
||
}
|
||
}
|
||
|
||
function countNodes(nodes) {
|
||
return nodes.reduce((sum, n) => sum + 1 + countNodes(n.children), 0);
|
||
}
|
||
|
||
function collectMatchedNodes(nodes) {
|
||
let acc = [];
|
||
nodes.forEach(n => {
|
||
if (n.isMatch) acc.push(n);
|
||
acc = acc.concat(collectMatchedNodes(n.children));
|
||
});
|
||
return acc;
|
||
}
|
||
|
||
function generateSummary(nodes, status, leader) {
|
||
let matched = collectMatchedNodes(nodes);
|
||
if (matched.length === 0) return '';
|
||
|
||
let totalMandays = nodes.reduce((sum, n) => sum + calculateNodeManday(n, false), 0);
|
||
let completed = 0;
|
||
let ongoing = 0;
|
||
let taskNames = [];
|
||
|
||
matched.forEach(r => {
|
||
if (r.status && (r.status.includes('Completed') || r.status.includes('完成'))) completed++;
|
||
else if (r.status && (r.status.includes('Ongoing') || r.status.includes('进行中'))) ongoing++;
|
||
|
||
if (r.taskName && r.taskName !== 'Untitled Task') {
|
||
taskNames.push(r.taskName);
|
||
}
|
||
});
|
||
|
||
let html = '<div style="margin-bottom:16px; padding:12px 16px; background:#f0fdf4; border: 1px solid #bbf7d0; border-left:4px solid #22c55e; border-radius:6px; font-size:14px; color:#166534; box-shadow: 0 1px 2px rgba(0,0,0,0.05);">';
|
||
html += '<div style="font-weight:600; margin-bottom:6px; display:flex; align-items:center; gap:6px;"><span>💡</span>智能总结 (Smart Summary)</div>';
|
||
|
||
let parts = [];
|
||
if (!status && !leader) {
|
||
let title = document.getElementById('searchInput') && document.getElementById('searchInput').value ? '搜索结果' : '当前全局';
|
||
parts.push(`${title}共有 <strong>${matched.length}</strong> 项任务 (已完成 ${completed} 项,进行中 ${ongoing} 项)。`);
|
||
if (totalMandays > 0) parts.push(`预计总人力:<strong>${Math.round(totalMandays*10)/10}</strong> 人日。`);
|
||
parts.push(`核心事项概览:`);
|
||
} else if (leader && !status) {
|
||
parts.push(`<strong>${leader}</strong> 共有 <strong>${matched.length}</strong> 项任务 (已完成 ${completed} 项,进行中 ${ongoing} 项)。`);
|
||
if (totalMandays > 0) parts.push(`预计总人力:<strong>${Math.round(totalMandays*10)/10}</strong> 人日。`);
|
||
parts.push(`Ta 负责的主要事项有:`);
|
||
} else if (status && !leader) {
|
||
let isDone = status.includes('Completed') || status.includes('完成');
|
||
if (isDone) {
|
||
parts.push(`✅ 已经干完了 <strong>${matched.length}</strong> 项任务!`);
|
||
if (totalMandays > 0) parts.push(`共计消耗人力:<strong>${Math.round(totalMandays*10)/10}</strong> 人日。`);
|
||
parts.push(`具体完成了这些东西:`);
|
||
} else {
|
||
parts.push(`有 <strong>${matched.length}</strong> 项任务处于 "<strong>${status}</strong>" 状态。`);
|
||
if (totalMandays > 0) parts.push(`关联的人力评估:<strong>${Math.round(totalMandays*10)/10}</strong> 人日。`);
|
||
parts.push(`具体包含:`);
|
||
}
|
||
} else if (leader && status) {
|
||
parts.push(`<strong>${leader}</strong> 有 <strong>${matched.length}</strong> 项状态为 "<strong>${status}</strong>" 的任务。`);
|
||
if (totalMandays > 0) parts.push(`相关人力评估:<strong>${Math.round(totalMandays*10)/10}</strong> 人日。`);
|
||
parts.push(`相关任务:`);
|
||
}
|
||
|
||
if (taskNames.length > 0) {
|
||
let displayNames = taskNames.slice(0, 10).map(n => `「${n}」`).join('、');
|
||
if (taskNames.length > 10) displayNames += ` 等等 (共${taskNames.length}个)`;
|
||
parts.push(`${displayNames}。`);
|
||
}
|
||
|
||
html += '<div style="line-height: 1.6;">' + parts.join(' ') + '</div>';
|
||
|
||
window._lastMatchedNodes = matched;
|
||
|
||
html += `<div style="margin-top:12px;display:flex;gap:8px;align-items:center;">
|
||
<button onclick="window.requestAISummary()" style="background:#22c55e;color:white;border:none;padding:6px 12px;border-radius:6px;cursor:pointer;font-weight:500;font-size:13px;transition:background 0.2s;" onmouseover="this.style.background='#16a34a'" onmouseout="this.style.background='#22c55e'">🤖 请求 AI 深度总结</button>
|
||
<button onclick="window.configAI()" style="background:transparent;border:1px solid #bbf7d0;color:#166534;padding:6px 12px;border-radius:6px;cursor:pointer;font-size:13px;transition:background 0.2s;" onmouseover="this.style.background='#dcfce7'" onmouseout="this.style.background='transparent'">⚙️ 配置 API</button>
|
||
</div>`;
|
||
|
||
html += '</div>';
|
||
return html;
|
||
}
|
||
|
||
window.configAI = function() {
|
||
let currentKey = localStorage.getItem('ai_api_key') || 'sk-orez64WkG1NkfksB5j_hGA';
|
||
let currentUrl = localStorage.getItem('ai_base_url') || 'https://oai.bwgdi.com/v1';
|
||
let currentModel = localStorage.getItem('ai_model') || 'MiniMaxAI';
|
||
let currentSys = localStorage.getItem('ai_sys_prompt') || defaultSystemPrompt;
|
||
let currentTab = localStorage.getItem('ai_tab_prompt') || defaultTabPrompt;
|
||
let currentGlobal = localStorage.getItem('ai_global_prompt') || defaultGlobalPrompt;
|
||
|
||
document.getElementById('settingApiKey').value = currentKey;
|
||
document.getElementById('settingApiUrl').value = currentUrl;
|
||
document.getElementById('settingApiModel').value = currentModel;
|
||
document.getElementById('settingSystemPrompt').value = currentSys;
|
||
document.getElementById('settingTabPrompt').value = currentTab;
|
||
document.getElementById('settingGlobalPrompt').value = currentGlobal;
|
||
|
||
document.getElementById('settingsModal').style.display = 'flex';
|
||
};
|
||
|
||
window.saveSettings = function() {
|
||
localStorage.setItem('ai_api_key', document.getElementById('settingApiKey').value);
|
||
localStorage.setItem('ai_base_url', document.getElementById('settingApiUrl').value);
|
||
localStorage.setItem('ai_model', document.getElementById('settingApiModel').value);
|
||
localStorage.setItem('ai_sys_prompt', document.getElementById('settingSystemPrompt').value);
|
||
localStorage.setItem('ai_tab_prompt', document.getElementById('settingTabPrompt').value);
|
||
localStorage.setItem('ai_global_prompt', document.getElementById('settingGlobalPrompt').value);
|
||
|
||
document.getElementById('settingsModal').style.display = 'none';
|
||
};
|
||
|
||
async function fetchAndStreamAI(promptText, box) {
|
||
let key = localStorage.getItem('ai_api_key') || 'sk-orez64WkG1NkfksB5j_hGA';
|
||
let url = localStorage.getItem('ai_base_url') || 'https://oai.bwgdi.com/v1';
|
||
let model = localStorage.getItem('ai_model') || 'MiniMaxAI';
|
||
let sysPrompt = localStorage.getItem('ai_sys_prompt') || defaultSystemPrompt;
|
||
|
||
if (!key && url.includes('openai.com')) {
|
||
alert('系统检测到您未配置 API Key,请先进行配置!');
|
||
window.configAI();
|
||
key = localStorage.getItem('ai_api_key');
|
||
if (!key) return;
|
||
}
|
||
|
||
box.style.display = 'block';
|
||
box.textContent = '🚀 正在请求 AI,这可能需要一点时间,请稍等...\n如果长时间不响应,请检查浏览器控制台报错或网络代理。';
|
||
|
||
try {
|
||
let fetchUrl = url;
|
||
if (fetchUrl.endsWith('/')) fetchUrl = fetchUrl.slice(0, -1);
|
||
if (!fetchUrl.endsWith('/chat/completions')) fetchUrl += '/chat/completions';
|
||
|
||
const response = await fetch(fetchUrl, {
|
||
method: 'POST',
|
||
headers: {
|
||
'Content-Type': 'application/json',
|
||
'Authorization': 'Bearer ' + key
|
||
},
|
||
body: JSON.stringify({
|
||
model: model,
|
||
messages: [
|
||
{ role: 'system', content: sysPrompt },
|
||
{ role: 'user', content: promptText }
|
||
],
|
||
stream: true,
|
||
temperature: 0.7
|
||
})
|
||
});
|
||
|
||
if (!response.ok) {
|
||
const errBox = await response.text();
|
||
box.textContent = `网络请求失败 (状态码 ${response.status}): \n${errBox}\n\n请确认提供的 API Base URL(${url}) 和 API Key 是否正确。`;
|
||
return;
|
||
}
|
||
|
||
const reader = response.body.getReader();
|
||
const decoder = new TextDecoder("utf-8");
|
||
let content = '';
|
||
box.textContent = '思考中...';
|
||
|
||
while (true) {
|
||
const { done, value } = await reader.read();
|
||
if (done) break;
|
||
const chunk = decoder.decode(value, { stream: true });
|
||
const lines = chunk.split('\n');
|
||
for (const line of lines) {
|
||
if (line.trim().startsWith('data:') && line.trim() !== 'data: [DONE]') {
|
||
try {
|
||
let jsonStr = line.replace(/^data:\s*/, '');
|
||
const parsed = JSON.parse(jsonStr);
|
||
if (parsed.choices && parsed.choices[0].delta && parsed.choices[0].delta.content) {
|
||
content += parsed.choices[0].delta.content;
|
||
|
||
let displayContent = content.replace(/<think>[\s\S]*?(?:<\/think>\n*|$)/gi, '');
|
||
if (content.toLowerCase().includes('<think>') && !content.toLowerCase().includes('</think>')) {
|
||
displayContent = "🤔 正在深度思考中...\n\n" + displayContent;
|
||
}
|
||
|
||
box.textContent = displayContent;
|
||
box.scrollTop = box.scrollHeight;
|
||
}
|
||
} catch(e) {}
|
||
}
|
||
}
|
||
}
|
||
} catch(e) {
|
||
box.textContent = `发生异常: ${e.message}\n请检查网络连通性或 API 跨域(CORS)限制问题。`;
|
||
}
|
||
}
|
||
|
||
window.requestAISummary = function() {
|
||
const matched = window._lastMatchedNodes || [];
|
||
if (matched.length === 0) {
|
||
alert("当前视图没有任何任务记录,无需总结。");
|
||
return;
|
||
}
|
||
|
||
const tasksForAI = matched.map(m => ({
|
||
TaskName: m.taskName,
|
||
Status: m.status,
|
||
Priority: m.priority,
|
||
Leaders: m.leaders.map(l => l.name).join(','),
|
||
ProgressNotes: m.progressNotes || "无",
|
||
Manday: m.manday || "0",
|
||
TargetCustomers: m.targetCustomers || "无"
|
||
}));
|
||
|
||
let tabPrompt = localStorage.getItem('ai_tab_prompt') || defaultTabPrompt;
|
||
const promptText = `${tabPrompt}
|
||
|
||
- 数据如下:
|
||
${JSON.stringify(tasksForAI, null, 2)}`;
|
||
|
||
const box = document.getElementById('aiSummaryResult');
|
||
fetchAndStreamAI(promptText, box);
|
||
};
|
||
|
||
window.requestGlobalSummary = function() {
|
||
let allTasks = [];
|
||
tabData.forEach(tab => {
|
||
tab.records.forEach(r => {
|
||
const fields = r.fields || {};
|
||
const taskNameRaw = fields['Task'] || fields['Task Description'];
|
||
let taskName = '';
|
||
if (Array.isArray(taskNameRaw) && taskNameRaw.length > 0) taskName = taskNameRaw[0].text || '';
|
||
else taskName = taskNameRaw ? String(taskNameRaw) : 'Untitled Task';
|
||
|
||
let statusRaw = fields['Status'];
|
||
let status = '';
|
||
if (Array.isArray(statusRaw) && statusRaw.length > 0) status = statusRaw[0].text || '';
|
||
else status = statusRaw ? String(statusRaw) : '';
|
||
|
||
let targetCustomersRaw = fields['Target Customers'];
|
||
let targetCustomers = '';
|
||
if (Array.isArray(targetCustomersRaw)) {
|
||
targetCustomers = targetCustomersRaw.map(x => typeof x === 'object' ? (x.text || '') : String(x)).join(', ').trim();
|
||
} else if (targetCustomersRaw) {
|
||
targetCustomers = String(targetCustomersRaw).trim();
|
||
}
|
||
|
||
allTasks.push({
|
||
TabName: tab.name,
|
||
TaskName: taskName,
|
||
Status: status.trim(),
|
||
TargetCustomers: targetCustomers.trim()
|
||
});
|
||
});
|
||
});
|
||
|
||
if (allTasks.length === 0) {
|
||
alert("所有视图均没有任务记录,无需总结。");
|
||
return;
|
||
}
|
||
|
||
let globalPrompt = localStorage.getItem('ai_global_prompt') || defaultGlobalPrompt;
|
||
const promptText = `${globalPrompt}
|
||
|
||
- 数据如下:
|
||
${JSON.stringify(allTasks, null, 2)}`;
|
||
|
||
const box = document.getElementById('globalAiSummaryResult');
|
||
fetchAndStreamAI(promptText, box);
|
||
};
|
||
|
||
function render() {
|
||
const search = document.getElementById('searchInput').value;
|
||
const status = document.getElementById('statusFilter').value;
|
||
const leader = document.getElementById('leaderFilter').value;
|
||
const sortKey = document.getElementById('sortOrder').value;
|
||
|
||
let dfRaw = document.getElementById('dateFrom').value;
|
||
let dtRaw = document.getElementById('dateTo').value;
|
||
const dateFrom = dfRaw ? new Date(dfRaw).getTime() : -Infinity;
|
||
const dateTo = dtRaw ? new Date(dtRaw).getTime() + 86400000 - 1 : Infinity;
|
||
|
||
let nodeMap = {};
|
||
records.forEach(r => { nodeMap[r.id] = {...r, children: []}; });
|
||
|
||
let roots = [];
|
||
records.forEach(r => {
|
||
let n = nodeMap[r.id];
|
||
if (r.parentId && nodeMap[r.parentId]) nodeMap[r.parentId].children.push(n);
|
||
else roots.push(n);
|
||
});
|
||
|
||
// Sort logic inside roots recursively helps visual grouping
|
||
roots.sort((a,b) => b.children.length - a.children.length); // roots with children on top by default
|
||
|
||
let filtered = filterNodes(roots, search, status, leader, dateFrom, dateTo);
|
||
let sorted = sortNodes(filtered, sortKey);
|
||
|
||
let renderedHtml = renderHTML(sorted, true);
|
||
document.getElementById('tree-container').innerHTML = renderedHtml || '<p style="text-align:center;color:#64748b;margin-top:40px;">No matching records found.</p>';
|
||
|
||
let visibleCount = countNodes(sorted);
|
||
let isFilterActive = search !== '' || status !== '' || leader !== '';
|
||
let msg = `Showing ${visibleCount} / ${records.length} tasks`;
|
||
if (isFilterActive) {
|
||
msg += ' (Filtered)';
|
||
}
|
||
document.getElementById('statsDisplay').textContent = msg;
|
||
document.getElementById('summaryDisplay').innerHTML = generateSummary(filtered, status, leader);
|
||
|
||
// Clear AI Summary on any filter change so it doesn't show stale info
|
||
let aiBox = document.getElementById('aiSummaryResult');
|
||
if (aiBox) {
|
||
aiBox.style.display = 'none';
|
||
aiBox.textContent = '';
|
||
}
|
||
}
|
||
|
||
// Initialize tabs and first render
|
||
initTabs();
|
||
|
||
</script>
|
||
</body>
|
||
</html>
|