feat(aia): Complete AIA V2.0 and sync all changes
AIA V2.0 Major Updates: - Add StreamingService with OpenAI Compatible format (backend/common/streaming) - Upgrade Chat component V2 with Ant Design X deep integration - Implement 12 intelligent agents (5 phases: topic/design/review/data/writing) - Create AgentHub with 100% prototype V11 restoration - Create ChatWorkspace with fullscreen immersive experience - Add ThinkingBlock for deep thinking display - Add useAIStream Hook for stream handling - Add ConversationList for conversation management Backend (~1300 lines): - common/streaming: OpenAI adapter and streaming service - modules/aia: 12 agents config, conversation service, attachment service - Unified API routes to /api/v1 (RVW, PKB, AIA modules) - Update authentication and permission helpers Frontend (~3500 lines): - modules/aia: AgentHub + ChatWorkspace + AgentCard components - shared/Chat: AIStreamChat, ThinkingBlock, useAIStream, useConversations - Update all modules API endpoints to v1 - Modern design with theme colors (blue/yellow/teal/purple) Documentation (~2500 lines): - AIA module status and development guide - Universal capabilities catalog (11 services) - Quick reference card - System overview updates - All module documentation synchronization Other Updates: - DC Tool C: Python operations and frontend components - IIT Manager: session memory and wechat service - PKB/RVW/ASL: API route updates - Docker configs and deployment scripts - Database migrations and scripts - Test files and documentation Tested: AIA streaming verified, authentication working, core features functional Status: AIA V2.0 completed (85%), all changes synchronized
This commit is contained in:
@@ -45,5 +45,6 @@ Status: Day 1 complete (11/11 tasks), ready for Day 2
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -275,5 +275,6 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -223,3 +223,4 @@ https://iit.xunzhengyixue.com/api/v1/iit/health
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -152,3 +152,4 @@ https://iit.xunzhengyixue.com/api/v1/iit/health
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -53,3 +53,4 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -313,3 +313,4 @@ npx tsx src/modules/iit-manager/test-patient-wechat-url-verify.ts
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -175,3 +175,4 @@ npm run dev
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -52,3 +52,4 @@ main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -46,3 +46,4 @@ main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -41,3 +41,4 @@ main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -73,3 +73,4 @@ main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -36,3 +36,4 @@ main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -77,3 +77,4 @@ main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -24,3 +24,4 @@ main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -112,3 +112,4 @@ main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -83,3 +83,4 @@ main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -69,3 +69,4 @@ main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -111,3 +111,4 @@ main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -22,3 +22,4 @@ ON CONFLICT (id) DO NOTHING;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -54,3 +54,4 @@ ON CONFLICT (id) DO NOTHING;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -70,5 +70,6 @@ WHERE table_schema = 'dc_schema'
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -108,5 +108,6 @@ ORDER BY ordinal_position;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -121,5 +121,6 @@ runMigration()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -55,5 +55,6 @@ COMMENT ON COLUMN "dc_schema"."dc_tool_c_sessions"."column_mapping" IS '列名
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -82,5 +82,6 @@ COMMENT ON COLUMN dc_schema.dc_tool_c_sessions.expires_at IS '过期时间(创
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -122,5 +122,6 @@ Write-Host ""
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -232,5 +232,6 @@ function extractCodeBlocks(obj, blocks = []) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -31,3 +31,4 @@ CREATE TABLE IF NOT EXISTS platform_schema.job_common (
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -105,3 +105,4 @@ CREATE OR REPLACE FUNCTION platform_schema.delete_queue(queue_name text) RETURNS
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -251,5 +251,6 @@ checkDCTables();
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -6,3 +6,4 @@ CREATE SCHEMA IF NOT EXISTS capability_schema;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -203,5 +203,6 @@ createAiHistoryTable()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -190,5 +190,6 @@ createToolCTable()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -187,5 +187,6 @@ createToolCTable()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -116,3 +116,4 @@ main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* PKB模块API简化测试脚本
|
||||
* PKB璅∪<EFBFBD>API蝞<EFBFBD><EFBFBD>𡝗<EFBFBD>霂閗<EFBFBD><EFBFBD>?
|
||||
* 瘚贝<E7989A><E8B49D>唳<EFBFBD><E594B3>亥<EFBFBD>摨梶<E691A8><E6A2B6><EFBFBD>★<EFBFBD>蠘<EFBFBD>
|
||||
*/
|
||||
|
||||
@@ -17,36 +17,36 @@ interface TestResult {
|
||||
const results: TestResult[] = [];
|
||||
|
||||
function printResult(result: TestResult) {
|
||||
const icon = result.status === 'pass' ? '✅' : '❌';
|
||||
const icon = result.status === 'pass' ? '<EFBFBD>? : '<EFBFBD>?;
|
||||
console.log(`${icon} ${result.name} ${result.duration ? `(${result.duration}ms)` : ''}`);
|
||||
console.log(` ${result.message}`);
|
||||
}
|
||||
|
||||
// 测试1:健康检查
|
||||
// 瘚贝<EFBFBD>1嚗𡁜<EFBFBD>摨瑟<EFBFBD><EFBFBD>?
|
||||
async function testHealthCheck(): Promise<TestResult> {
|
||||
const startTime = Date.now();
|
||||
try {
|
||||
const response = await axios.get(`${BASE_URL}/api/v2/pkb/health`);
|
||||
const response = await axios.get(`${BASE_URL}/api/v1/pkb/health`);
|
||||
const duration = Date.now() - startTime;
|
||||
|
||||
if (response.data.status === 'ok') {
|
||||
return {
|
||||
name: '健康检查(v2)',
|
||||
name: '<EFBFBD>亙熒璉<EFBFBD><EFBFBD>伐<EFBFBD>v2嚗?,
|
||||
status: 'pass',
|
||||
message: `<60>亥<EFBFBD>摨𤘪㺭: ${response.data.database.knowledgeBases}, schema: ${response.data.database.schema}`,
|
||||
duration,
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
name: '健康检查(v2)',
|
||||
name: '<EFBFBD>亙熒璉<EFBFBD><EFBFBD>伐<EFBFBD>v2嚗?,
|
||||
status: 'fail',
|
||||
message: '返回状态异常',
|
||||
message: '餈𥪜<EFBFBD><EFBFBD>嗆<EFBFBD><EFBFBD><EFBFBD>撣?,
|
||||
duration,
|
||||
};
|
||||
}
|
||||
} catch (error: any) {
|
||||
return {
|
||||
name: '健康检查(v2)',
|
||||
name: '<EFBFBD>亙熒璉<EFBFBD><EFBFBD>伐<EFBFBD>v2嚗?,
|
||||
status: 'fail',
|
||||
message: error.message,
|
||||
duration: Date.now() - startTime,
|
||||
@@ -54,7 +54,7 @@ async function testHealthCheck(): Promise<TestResult> {
|
||||
}
|
||||
}
|
||||
|
||||
// 测试2:获取知识库列表(v1 vs v2)
|
||||
// 瘚贝<EFBFBD>2嚗朞繮<EFBFBD>𣇉䰻霂<EFBFBD><EFBFBD><EFBFBD>𡑒”嚗ǒ1 vs v2嚗?
|
||||
async function testGetKnowledgeBases(): Promise<TestResult> {
|
||||
try {
|
||||
const startV1 = Date.now();
|
||||
@@ -62,7 +62,7 @@ async function testGetKnowledgeBases(): Promise<TestResult> {
|
||||
const v1Duration = Date.now() - startV1;
|
||||
|
||||
const startV2 = Date.now();
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v2/pkb/knowledge/knowledge-bases`);
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v1/pkb/knowledge/knowledge-bases`);
|
||||
const v2Duration = Date.now() - startV2;
|
||||
|
||||
const v1Count = v1Response.data.data?.length || 0;
|
||||
@@ -70,14 +70,14 @@ async function testGetKnowledgeBases(): Promise<TestResult> {
|
||||
|
||||
if (v1Count === v2Count) {
|
||||
return {
|
||||
name: '获取知识库列表(v1 vs v2)',
|
||||
name: '<EFBFBD>瑕<EFBFBD><EFBFBD>亥<EFBFBD>摨枏<EFBFBD>銵剁<EFBFBD>v1 vs v2嚗?,
|
||||
status: 'pass',
|
||||
message: `v1: ${v1Count}个 (${v1Duration}ms), v2: ${v2Count}个 (${v2Duration}ms) ✅`,
|
||||
message: `v1: ${v1Count}銝?(${v1Duration}ms), v2: ${v2Count}銝?(${v2Duration}ms) <20><>,
|
||||
duration: v1Duration + v2Duration,
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
name: '获取知识库列表(v1 vs v2)',
|
||||
name: '<EFBFBD>瑕<EFBFBD><EFBFBD>亥<EFBFBD>摨枏<EFBFBD>銵剁<EFBFBD>v1 vs v2嚗?,
|
||||
status: 'fail',
|
||||
message: `<EFBFBD>圈<EFBFBD>銝滢<EFBFBD><EFBFBD>湛<EFBFBD>v1: ${v1Count}, v2: ${v2Count}`,
|
||||
duration: v1Duration + v2Duration,
|
||||
@@ -85,14 +85,14 @@ async function testGetKnowledgeBases(): Promise<TestResult> {
|
||||
}
|
||||
} catch (error: any) {
|
||||
return {
|
||||
name: '获取知识库列表(v1 vs v2)',
|
||||
name: '<EFBFBD>瑕<EFBFBD><EFBFBD>亥<EFBFBD>摨枏<EFBFBD>銵剁<EFBFBD>v1 vs v2嚗?,
|
||||
status: 'fail',
|
||||
message: error.message,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
// 测试3:获取知识库详情(v1 vs v2)
|
||||
// 瘚贝<EFBFBD>3嚗朞繮<EFBFBD>𣇉䰻霂<EFBFBD><EFBFBD>霂行<EFBFBD>嚗ǒ1 vs v2嚗?
|
||||
async function testGetKnowledgeBaseById(kbId: string): Promise<TestResult> {
|
||||
try {
|
||||
const startV1 = Date.now();
|
||||
@@ -100,7 +100,7 @@ async function testGetKnowledgeBaseById(kbId: string): Promise<TestResult> {
|
||||
const v1Duration = Date.now() - startV1;
|
||||
|
||||
const startV2 = Date.now();
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v2/pkb/knowledge/knowledge-bases/${kbId}`);
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v1/pkb/knowledge/knowledge-bases/${kbId}`);
|
||||
const v2Duration = Date.now() - startV2;
|
||||
|
||||
const v1Name = v1Response.data.data?.name;
|
||||
@@ -108,14 +108,14 @@ async function testGetKnowledgeBaseById(kbId: string): Promise<TestResult> {
|
||||
|
||||
if (v1Name === v2Name) {
|
||||
return {
|
||||
name: '获取知识库详情(v1 vs v2)',
|
||||
name: '<EFBFBD>瑕<EFBFBD><EFBFBD>亥<EFBFBD>摨栞祕<EFBFBD><EFBFBD><EFBFBD>v1 vs v2嚗?,
|
||||
status: 'pass',
|
||||
message: `名称一致: "${v1Name}", v1: ${v1Duration}ms, v2: ${v2Duration}ms ✅`,
|
||||
message: `<EFBFBD>滨妍銝<EFBFBD><EFBFBD>? "${v1Name}", v1: ${v1Duration}ms, v2: ${v2Duration}ms <EFBFBD><EFBFBD>,
|
||||
duration: v1Duration + v2Duration,
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
name: '获取知识库详情(v1 vs v2)',
|
||||
name: '<27>瑕<EFBFBD><E79195>亥<EFBFBD>摨栞祕<E6A09E><E7A595><EFBFBD>v1 vs v2嚗?,
|
||||
status: 'fail',
|
||||
message: `<EFBFBD>滨妍銝滢<EFBFBD><EFBFBD>湛<EFBFBD>v1: "${v1Name}", v2: "${v2Name}"`,
|
||||
duration: v1Duration + v2Duration,
|
||||
@@ -123,52 +123,52 @@ async function testGetKnowledgeBaseById(kbId: string): Promise<TestResult> {
|
||||
}
|
||||
} catch (error: any) {
|
||||
return {
|
||||
name: '获取知识库详情(v1 vs v2)',
|
||||
name: '<27>瑕<EFBFBD><E79195>亥<EFBFBD>摨栞祕<E6A09E><E7A595><EFBFBD>v1 vs v2嚗?,
|
||||
status: 'fail',
|
||||
message: error.message,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
// 测试4:获取知识库统计(v1 vs v2)
|
||||
// 瘚贝<EFBFBD>4嚗朞繮<EFBFBD>𣇉䰻霂<EFBFBD><EFBFBD>蝏蠘恣嚗ǒ1 vs v2嚗?
|
||||
async function testGetKnowledgeBaseStats(kbId: string): Promise<TestResult> {
|
||||
try {
|
||||
const v1Response = await axios.get(`${BASE_URL}/api/v1/knowledge-bases/${kbId}/stats`);
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v2/pkb/knowledge/knowledge-bases/${kbId}/stats`);
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v1/pkb/knowledge/knowledge-bases/${kbId}/stats`);
|
||||
|
||||
const v1Docs = v1Response.data.data.totalDocuments;
|
||||
const v2Docs = v2Response.data.data.totalDocuments;
|
||||
|
||||
if (v1Docs === v2Docs) {
|
||||
return {
|
||||
name: '获取知识库统计(v1 vs v2)',
|
||||
name: '<27>瑕<EFBFBD><E79195>亥<EFBFBD>摨梶<E691A8>霈∴<E99C88>v1 vs v2嚗?,
|
||||
status: 'pass',
|
||||
message: `文档数一致: ${v1Docs}个 ✅`,
|
||||
message: `<EFBFBD><EFBFBD>﹝<EFBFBD>唬<EFBFBD><EFBFBD>? ${v1Docs}銝?<EFBFBD><EFBFBD>,
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
name: '获取知识库统计(v1 vs v2)',
|
||||
name: '<EFBFBD>瑕<EFBFBD><EFBFBD>亥<EFBFBD>摨梶<EFBFBD>霈∴<EFBFBD>v1 vs v2嚗?,
|
||||
status: 'fail',
|
||||
message: `<60><>﹝<EFBFBD>唬<EFBFBD>銝<EFBFBD><E98A9D>湛<EFBFBD>v1: ${v1Docs}, v2: ${v2Docs}`,
|
||||
};
|
||||
}
|
||||
} catch (error: any) {
|
||||
return {
|
||||
name: '获取知识库统计(v1 vs v2)',
|
||||
name: '<EFBFBD>瑕<EFBFBD><EFBFBD>亥<EFBFBD>摨梶<EFBFBD>霈∴<EFBFBD>v1 vs v2嚗?,
|
||||
status: 'fail',
|
||||
message: error.message,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
// 测试5:RAG检索(v1 vs v2)
|
||||
// 瘚贝<EFBFBD>5嚗鑹AG璉<EFBFBD>蝝g<EFBFBD>v1 vs v2嚗?
|
||||
async function testSearchKnowledgeBase(kbId: string): Promise<TestResult> {
|
||||
try {
|
||||
const query = '瘝餌<E7989D>';
|
||||
const v1Response = await axios.get(`${BASE_URL}/api/v1/knowledge-bases/${kbId}/search`, {
|
||||
params: { query, top_k: 3 },
|
||||
});
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v2/pkb/knowledge/knowledge-bases/${kbId}/search`, {
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v1/pkb/knowledge/knowledge-bases/${kbId}/search`, {
|
||||
params: { query, top_k: 3 },
|
||||
});
|
||||
|
||||
@@ -176,13 +176,13 @@ async function testSearchKnowledgeBase(kbId: string): Promise<TestResult> {
|
||||
const v2Count = v2Response.data.data?.records?.length || 0;
|
||||
|
||||
return {
|
||||
name: 'RAG检索(v1 vs v2)',
|
||||
name: 'RAG璉<EFBFBD>蝝g<EFBFBD>v1 vs v2嚗?,
|
||||
status: 'pass',
|
||||
message: `v1返回${v1Count}条, v2返回${v2Count}条 ✅`,
|
||||
message: `v1餈𥪜<E9A488>${v1Count}<7D>? v2餈𥪜<E9A488>${v2Count}<7D>?<3F><>,
|
||||
};
|
||||
} catch (error: any) {
|
||||
return {
|
||||
name: 'RAG检索(v1 vs v2)',
|
||||
name: 'RAG璉<EFBFBD>蝝g<EFBFBD>v1 vs v2嚗?,
|
||||
status: 'fail',
|
||||
message: error.message,
|
||||
};
|
||||
@@ -195,7 +195,7 @@ async function testDocumentSelection(kbId: string): Promise<TestResult> {
|
||||
const v1Response = await axios.get(`${BASE_URL}/api/v1/knowledge-bases/${kbId}/document-selection`, {
|
||||
params: { max_files: 5, max_tokens: 100000 },
|
||||
});
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v2/pkb/knowledge/knowledge-bases/${kbId}/document-selection`, {
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v1/pkb/knowledge/knowledge-bases/${kbId}/document-selection`, {
|
||||
params: { max_files: 5, max_tokens: 100000 },
|
||||
});
|
||||
|
||||
@@ -203,13 +203,13 @@ async function testDocumentSelection(kbId: string): Promise<TestResult> {
|
||||
const v2Docs = v2Response.data.data?.selectedDocuments?.length || 0;
|
||||
|
||||
return {
|
||||
name: '文档选择-全文阅读模式(v1 vs v2)',
|
||||
name: '<EFBFBD><EFBFBD>﹝<EFBFBD>㗇𥋘-<2D>冽<EFBFBD><E586BD><EFBFBD>粉璅∪<E79285>嚗ǒ1 vs v2嚗?,
|
||||
status: 'pass',
|
||||
message: `v1选择${v1Docs}个文档, v2选择${v2Docs}个文档 ✅`,
|
||||
message: `v1<76>㗇𥋘${v1Docs}銝芣<E98A9D>獢? v2<76>㗇𥋘${v2Docs}銝芣<E98A9D>獢?<3F><>,
|
||||
};
|
||||
} catch (error: any) {
|
||||
return {
|
||||
name: '文档选择-全文阅读模式(v1 vs v2)',
|
||||
name: '<EFBFBD><EFBFBD>﹝<EFBFBD>㗇𥋘-<EFBFBD>冽<EFBFBD><EFBFBD><EFBFBD>粉璅∪<EFBFBD>嚗ǒ1 vs v2嚗?,
|
||||
status: 'fail',
|
||||
message: error.message,
|
||||
};
|
||||
@@ -220,32 +220,32 @@ async function testDocumentSelection(kbId: string): Promise<TestResult> {
|
||||
async function testBatchTemplates(): Promise<TestResult> {
|
||||
try {
|
||||
const v1Response = await axios.get(`${BASE_URL}/api/v1/batch/templates`);
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v2/pkb/batch-tasks/batch/templates`);
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v1/pkb/batch-tasks/batch/templates`);
|
||||
|
||||
const v1Count = v1Response.data.data?.length || 0;
|
||||
const v2Count = v2Response.data.data?.length || 0;
|
||||
|
||||
return {
|
||||
name: '批处理模板(v1 vs v2)',
|
||||
name: '<EFBFBD>孵<EFBFBD><EFBFBD><EFBFBD>芋<EFBFBD>選<EFBFBD>v1 vs v2嚗?,
|
||||
status: 'pass',
|
||||
message: `v1: ${v1Count}个模板, v2: ${v2Count}个模板 ✅`,
|
||||
message: `v1: ${v1Count}銝芣芋<E88AA3>? v2: ${v2Count}銝芣芋<E88AA3>?<3F><>,
|
||||
};
|
||||
} catch (error: any) {
|
||||
return {
|
||||
name: '批处理模板(v1 vs v2)',
|
||||
name: '<EFBFBD>孵<EFBFBD><EFBFBD><EFBFBD>芋<EFBFBD>選<EFBFBD>v1 vs v2嚗?,
|
||||
status: 'fail',
|
||||
message: error.message,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
// 主测试函数
|
||||
// 銝餅<EFBFBD>霂訫遆<EFBFBD>?
|
||||
async function runTests() {
|
||||
console.log('🚀 PKB API测试开始...\n');
|
||||
console.log('<EFBFBD><EFBFBD> PKB API瘚贝<EFBFBD>撘<EFBFBD>憪?..\n');
|
||||
console.log('='.repeat(80));
|
||||
|
||||
// 测试1:健康检查
|
||||
console.log('\n📋 测试1:健康检查');
|
||||
// 瘚贝<EFBFBD>1嚗𡁜<EFBFBD>摨瑟<EFBFBD><EFBFBD>?
|
||||
console.log('\n<EFBFBD><EFBFBD> 瘚贝<E7989A>1嚗𡁜<E59A97>摨瑟<E691A8><E7919F>?);
|
||||
console.log('-'.repeat(80));
|
||||
results.push(await testHealthCheck());
|
||||
printResult(results[results.length - 1]);
|
||||
@@ -257,16 +257,16 @@ async function runTests() {
|
||||
printResult(results[results.length - 1]);
|
||||
|
||||
// <20>瑕<EFBFBD>蝚砌<E89D9A>銝芰䰻霂<E4B0BB><E99C82>ID<49>其<EFBFBD><E585B6>𡒊賒瘚贝<E7989A>
|
||||
const kbListResponse = await axios.get(`${BASE_URL}/api/v2/pkb/knowledge/knowledge-bases`);
|
||||
const kbListResponse = await axios.get(`${BASE_URL}/api/v1/pkb/knowledge/knowledge-bases`);
|
||||
const firstKb = kbListResponse.data.data?.[0];
|
||||
|
||||
if (!firstKb) {
|
||||
console.log('\n❌ 没有可用的知识库,后续测试跳过');
|
||||
console.log('\n<EFBFBD>?瘝⊥<EFBFBD><EFBFBD>舐鍂<EFBFBD><EFBFBD>䰻霂<EFBFBD><EFBFBD>嚗<EFBFBD><EFBFBD>蝏剜<EFBFBD>霂閗歲餈?);
|
||||
return;
|
||||
}
|
||||
|
||||
const kbId = firstKb.id;
|
||||
console.log(`\n使用知识库: ${firstKb.name} (ID: ${kbId})`);
|
||||
console.log(`\n雿輻鍂<EFBFBD>亥<EFBFBD>摨? ${firstKb.name} (ID: ${kbId})`);
|
||||
|
||||
// 瘚贝<E7989A>3嚗朞繮<E69C9E>𣇉䰻霂<E4B0BB><E99C82>霂行<E99C82>
|
||||
console.log('\n<><6E> 瘚贝<E7989A>3嚗𡁶䰻霂<E4B0BB><E99C82>霂行<E99C82>');
|
||||
@@ -280,8 +280,8 @@ async function runTests() {
|
||||
results.push(await testGetKnowledgeBaseStats(kbId));
|
||||
printResult(results[results.length - 1]);
|
||||
|
||||
// 测试5:RAG检索
|
||||
console.log('\n📋 测试5:RAG检索');
|
||||
// 瘚贝<EFBFBD>5嚗鑹AG璉<EFBFBD>蝝?
|
||||
console.log('\n<EFBFBD><EFBFBD> 瘚贝<E7989A>5嚗鑹AG璉<47>蝝?);
|
||||
console.log('-'.repeat(80));
|
||||
results.push(await testSearchKnowledgeBase(kbId));
|
||||
printResult(results[results.length - 1]);
|
||||
@@ -308,8 +308,8 @@ async function runTests() {
|
||||
const totalDuration = results.reduce((sum, r) => sum + (r.duration || 0), 0);
|
||||
|
||||
console.log(`\n<>餉恣: ${results.length}銝芣<E98A9D>霂𧄧);
|
||||
console.log(`✅ 通过: ${passCount}个`);
|
||||
console.log(`❌ 失败: ${failCount}个`);
|
||||
console.log(`<60>?<3F>朞<EFBFBD>: ${passCount}銝注);
|
||||
console.log(`<60>?憭梯揖: ${failCount}銝注);
|
||||
console.log(`<60>梧<EFBFBD> <20>餉<EFBFBD>埈𧒄: ${totalDuration}ms`);
|
||||
|
||||
if (failCount === 0) {
|
||||
@@ -320,7 +320,7 @@ async function runTests() {
|
||||
}
|
||||
|
||||
runTests().catch(error => {
|
||||
console.error('❌ 测试执行失败:', error);
|
||||
console.error('<EFBFBD>?瘚贝<EFBFBD><EFBFBD>扯<EFBFBD>憭梯揖:', error);
|
||||
process.exit(1);
|
||||
});
|
||||
|
||||
@@ -336,3 +336,4 @@ runTests().catch(error => {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,21 +1,15 @@
|
||||
/**
|
||||
* PKB模块API自动化测试脚本
|
||||
*
|
||||
* 功能:
|
||||
* 1. 测试所有PKB API端点(v1和v2)
|
||||
* 2. 对比v1和v2的返回结果
|
||||
* 3. 验证数据一致性
|
||||
* 4. 性能对比
|
||||
* PKB璅∪<EFBFBD>API<EFBFBD>芸𢆡<EFBFBD>𡝗<EFBFBD>霂閗<EFBFBD><EFBFBD>? *
|
||||
* <EFBFBD>蠘<EFBFBD>嚗? * 1. 瘚贝<E7989A><E8B49D><EFBFBD><EFBFBD>侨KB API蝡舐<E89DA1>嚗ǒ1<C792>綋2嚗? * 2. 撖寞<E69296>v1<76>綋2<E7B68B><32><EFBFBD><EFBFBD>䂿<EFBFBD><E482BF>? * 3. 撉諹<E69289><E8ABB9>唳旿銝<E697BF><E98A9D>湔<EFBFBD>? * 4. <20>扯<EFBFBD>撖寞<E69296>
|
||||
* 5. 颲寧<E9A2B2><E5AFA7>∩辣瘚贝<E7989A>
|
||||
*
|
||||
* 运行方式:
|
||||
* npx tsx scripts/test-pkb-apis.ts
|
||||
* 餈鞱<EFBFBD><EFBFBD>孵<EFBFBD>嚗? * npx tsx scripts/test-pkb-apis.ts
|
||||
*/
|
||||
|
||||
import axios, { AxiosError } from 'axios';
|
||||
|
||||
const BASE_URL = 'http://localhost:3000';
|
||||
const TEST_KB_NAME = `测试知识库-${Date.now()}`;
|
||||
const TEST_KB_NAME = `瘚贝<EFBFBD><EFBFBD>亥<EFBFBD>摨?${Date.now()}`;
|
||||
|
||||
interface TestResult {
|
||||
name: string;
|
||||
@@ -29,45 +23,42 @@ interface TestResult {
|
||||
const results: TestResult[] = [];
|
||||
let testKbId: string | null = null;
|
||||
|
||||
// 工具函数:比较两个响应是否一致
|
||||
function compareResponses(v1: any, v2: any): boolean {
|
||||
// 撌亙<EFBFBD><EFBFBD>賣㺭嚗𡁏<EFBFBD>颲<EFBFBD>舅銝芸<EFBFBD>摨娍糓<EFBFBD>虫<EFBFBD><EFBFBD>?function compareResponses(v1: any, v2: any): boolean {
|
||||
return JSON.stringify(v1) === JSON.stringify(v2);
|
||||
}
|
||||
|
||||
// 工具函数:打印测试结果
|
||||
function printResult(result: TestResult) {
|
||||
const icon = result.status === 'pass' ? '✅' : result.status === 'fail' ? '❌' : '⏭️';
|
||||
// 撌亙<EFBFBD><EFBFBD>賣㺭嚗𡁏<EFBFBD><EFBFBD>唳<EFBFBD>霂閧<EFBFBD><EFBFBD>?function printResult(result: TestResult) {
|
||||
const icon = result.status === 'pass' ? '<27>? : result.status === 'fail' ? '<EFBFBD>? : '<27>哨<EFBFBD>';
|
||||
console.log(`${icon} ${result.name} ${result.duration ? `(${result.duration}ms)` : ''}`);
|
||||
if (result.message) {
|
||||
console.log(` ${result.message}`);
|
||||
}
|
||||
}
|
||||
|
||||
// 测试1:健康检查
|
||||
async function testHealthCheck(): Promise<TestResult> {
|
||||
// 瘚贝<EFBFBD>1嚗𡁜<EFBFBD>摨瑟<EFBFBD><EFBFBD>?async function testHealthCheck(): Promise<TestResult> {
|
||||
const startTime = Date.now();
|
||||
try {
|
||||
const response = await axios.get(`${BASE_URL}/api/v2/pkb/health`);
|
||||
const response = await axios.get(`${BASE_URL}/api/v1/pkb/health`);
|
||||
const duration = Date.now() - startTime;
|
||||
|
||||
if (response.data.status === 'ok' && response.data.module === 'pkb' && response.data.version === 'v2') {
|
||||
return {
|
||||
name: '健康检查',
|
||||
name: '<EFBFBD>亙熒璉<EFBFBD><EFBFBD>?,
|
||||
status: 'pass',
|
||||
message: `状态: ${response.data.status}, 知识库数: ${response.data.database.knowledgeBases}`,
|
||||
message: `<60>嗆<EFBFBD>? ${response.data.status}, <20>亥<EFBFBD>摨𤘪㺭: ${response.data.database.knowledgeBases}`,
|
||||
duration,
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
name: '健康检查',
|
||||
name: '<EFBFBD>亙熒璉<EFBFBD><EFBFBD>?,
|
||||
status: 'fail',
|
||||
message: '返回数据格式不正确',
|
||||
message: '餈𥪜<EFBFBD><EFBFBD>唳旿<EFBFBD>澆<EFBFBD>銝齿迤蝖?,
|
||||
duration,
|
||||
};
|
||||
}
|
||||
} catch (error: any) {
|
||||
return {
|
||||
name: '健康检查',
|
||||
name: '<EFBFBD>亙熒璉<EFBFBD><EFBFBD>?,
|
||||
status: 'fail',
|
||||
message: error.message,
|
||||
duration: Date.now() - startTime,
|
||||
@@ -75,15 +66,14 @@ async function testHealthCheck(): Promise<TestResult> {
|
||||
}
|
||||
}
|
||||
|
||||
// 测试2:获取知识库列表(对比v1和v2)
|
||||
async function testGetKnowledgeBases(): Promise<TestResult> {
|
||||
// 瘚贝<EFBFBD>2嚗朞繮<EFBFBD>𣇉䰻霂<EFBFBD><EFBFBD><EFBFBD>𡑒”嚗<EFBFBD>笆瘥畕1<EFBFBD>綋2嚗?async function testGetKnowledgeBases(): Promise<TestResult> {
|
||||
try {
|
||||
const startV1 = Date.now();
|
||||
const v1Response = await axios.get(`${BASE_URL}/api/v1/knowledge-bases`);
|
||||
const v1Duration = Date.now() - startV1;
|
||||
|
||||
const startV2 = Date.now();
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v2/pkb/knowledge/knowledge-bases`);
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v1/pkb/knowledge/knowledge-bases`);
|
||||
const v2Duration = Date.now() - startV2;
|
||||
|
||||
const v1Count = v1Response.data.data?.length || 0;
|
||||
@@ -91,35 +81,34 @@ async function testGetKnowledgeBases(): Promise<TestResult> {
|
||||
|
||||
if (v1Count === v2Count) {
|
||||
return {
|
||||
name: '获取知识库列表(v1 vs v2)',
|
||||
name: '<EFBFBD>瑕<EFBFBD><EFBFBD>亥<EFBFBD>摨枏<EFBFBD>銵剁<EFBFBD>v1 vs v2嚗?,
|
||||
status: 'pass',
|
||||
message: `v1: ${v1Count}个 (${v1Duration}ms), v2: ${v2Count}个 (${v2Duration}ms), 数据一致✅`,
|
||||
message: `v1: ${v1Count}銝?(${v1Duration}ms), v2: ${v2Count}銝?(${v2Duration}ms), <20>唳旿銝<E697BF><E98A9D>氯<EFBFBD>`,
|
||||
duration: v1Duration + v2Duration,
|
||||
v1Response: v1Response.data,
|
||||
v2Response: v2Response.data,
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
name: '获取知识库列表(v1 vs v2)',
|
||||
name: '<EFBFBD>瑕<EFBFBD><EFBFBD>亥<EFBFBD>摨枏<EFBFBD>銵剁<EFBFBD>v1 vs v2嚗?,
|
||||
status: 'fail',
|
||||
message: `数量不一致!v1: ${v1Count}个, v2: ${v2Count}个`,
|
||||
message: `<EFBFBD>圈<EFBFBD>銝滢<EFBFBD><EFBFBD>湛<EFBFBD>v1: ${v1Count}銝? v2: ${v2Count}銝注,
|
||||
duration: v1Duration + v2Duration,
|
||||
};
|
||||
}
|
||||
} catch (error: any) {
|
||||
return {
|
||||
name: '获取知识库列表(v1 vs v2)',
|
||||
name: '<27>瑕<EFBFBD><E79195>亥<EFBFBD>摨枏<E691A8>銵剁<E98AB5>v1 vs v2嚗?,
|
||||
status: 'fail',
|
||||
message: error.message,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
// 测试3:创建知识库(v2)
|
||||
async function testCreateKnowledgeBase(): Promise<TestResult> {
|
||||
// 瘚贝<EFBFBD>3嚗𡁜<EFBFBD>撱箇䰻霂<EFBFBD><EFBFBD>嚗ǒ2嚗?async function testCreateKnowledgeBase(): Promise<TestResult> {
|
||||
const startTime = Date.now();
|
||||
try {
|
||||
const response = await axios.post(`${BASE_URL}/api/v2/pkb/knowledge/knowledge-bases`, {
|
||||
const response = await axios.post(`${BASE_URL}/api/v1/pkb/knowledge/knowledge-bases`, {
|
||||
name: TEST_KB_NAME,
|
||||
description: '餈蹱糓銝<E7B393>銝芾䌊<E88ABE>典<EFBFBD>瘚贝<E7989A><E8B49D>𥕦遣<F0A595A6><E981A3>䰻霂<E4B0BB><E99C82>',
|
||||
}, {
|
||||
@@ -132,14 +121,14 @@ async function testCreateKnowledgeBase(): Promise<TestResult> {
|
||||
if (response.data.success && response.data.data.id) {
|
||||
testKbId = response.data.data.id;
|
||||
return {
|
||||
name: '创建知识库(v2)',
|
||||
name: '<27>𥕦遣<F0A595A6>亥<EFBFBD>摨橒<E691A8>v2嚗?,
|
||||
status: 'pass',
|
||||
message: `<EFBFBD>𣂼<EFBFBD><EFBFBD>𥕦遣嚗䬠D: ${testKbId}`,
|
||||
duration,
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
name: '创建知识库(v2)',
|
||||
name: '<27>𥕦遣<F0A595A6>亥<EFBFBD>摨橒<E691A8>v2嚗?,
|
||||
status: 'fail',
|
||||
message: '<27>𥕦遣憭梯揖<E6A2AF>𤥁<EFBFBD><F0A4A581>墧聢撘譍<E69298>甇<EFBFBD>&',
|
||||
duration,
|
||||
@@ -150,7 +139,7 @@ async function testCreateKnowledgeBase(): Promise<TestResult> {
|
||||
JSON.stringify(error.response.data) :
|
||||
(error.response?.data?.message || error.message);
|
||||
return {
|
||||
name: '创建知识库(v2)',
|
||||
name: '<27>𥕦遣<F0A595A6>亥<EFBFBD>摨橒<E691A8>v2嚗?,
|
||||
status: 'fail',
|
||||
message: errorDetail,
|
||||
duration: Date.now() - startTime,
|
||||
@@ -158,15 +147,14 @@ async function testCreateKnowledgeBase(): Promise<TestResult> {
|
||||
}
|
||||
}
|
||||
|
||||
// 测试4:获取知识库详情(对比v1和v2)
|
||||
async function testGetKnowledgeBaseById(kbId: string): Promise<TestResult> {
|
||||
// 瘚贝<EFBFBD>4嚗朞繮<EFBFBD>𣇉䰻霂<EFBFBD><EFBFBD>霂行<EFBFBD>嚗<EFBFBD>笆瘥畕1<EFBFBD>綋2嚗?async function testGetKnowledgeBaseById(kbId: string): Promise<TestResult> {
|
||||
try {
|
||||
const startV1 = Date.now();
|
||||
const v1Response = await axios.get(`${BASE_URL}/api/v1/knowledge-bases/${kbId}`);
|
||||
const v1Duration = Date.now() - startV1;
|
||||
|
||||
const startV2 = Date.now();
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v2/pkb/knowledge/knowledge-bases/${kbId}`);
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v1/pkb/knowledge/knowledge-bases/${kbId}`);
|
||||
const v2Duration = Date.now() - startV2;
|
||||
|
||||
const v1Name = v1Response.data.data?.name;
|
||||
@@ -174,14 +162,14 @@ async function testGetKnowledgeBaseById(kbId: string): Promise<TestResult> {
|
||||
|
||||
if (v1Name === v2Name) {
|
||||
return {
|
||||
name: '获取知识库详情(v1 vs v2)',
|
||||
name: '<27>瑕<EFBFBD><E79195>亥<EFBFBD>摨栞祕<E6A09E><E7A595><EFBFBD>v1 vs v2嚗?,
|
||||
status: 'pass',
|
||||
message: `v1: ${v1Duration}ms, v2: ${v2Duration}ms, 名称一致: "${v1Name}"✅`,
|
||||
message: `v1: ${v1Duration}ms, v2: ${v2Duration}ms, <EFBFBD>滨妍銝<EFBFBD><EFBFBD>? "${v1Name}"<EFBFBD><EFBFBD>,
|
||||
duration: v1Duration + v2Duration,
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
name: '获取知识库详情(v1 vs v2)',
|
||||
name: '<EFBFBD>瑕<EFBFBD><EFBFBD>亥<EFBFBD>摨栞祕<EFBFBD><EFBFBD><EFBFBD>v1 vs v2嚗?,
|
||||
status: 'fail',
|
||||
message: `<60>滨妍銝滢<E98A9D><E6BBA2>湛<EFBFBD>v1: "${v1Name}", v2: "${v2Name}"`,
|
||||
duration: v1Duration + v2Duration,
|
||||
@@ -189,33 +177,32 @@ async function testGetKnowledgeBaseById(kbId: string): Promise<TestResult> {
|
||||
}
|
||||
} catch (error: any) {
|
||||
return {
|
||||
name: '获取知识库详情(v1 vs v2)',
|
||||
name: '<EFBFBD>瑕<EFBFBD><EFBFBD>亥<EFBFBD>摨栞祕<EFBFBD><EFBFBD><EFBFBD>v1 vs v2嚗?,
|
||||
status: 'fail',
|
||||
message: error.message,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
// 测试5:更新知识库(v2)
|
||||
async function testUpdateKnowledgeBase(kbId: string): Promise<TestResult> {
|
||||
// 瘚贝<EFBFBD>5嚗𡁏凒<EFBFBD>啁䰻霂<EFBFBD><EFBFBD>嚗ǒ2嚗?async function testUpdateKnowledgeBase(kbId: string): Promise<TestResult> {
|
||||
const startTime = Date.now();
|
||||
try {
|
||||
const response = await axios.put(`${BASE_URL}/api/v2/pkb/knowledge/knowledge-bases/${kbId}`, {
|
||||
const response = await axios.put(`${BASE_URL}/api/v1/pkb/knowledge/knowledge-bases/${kbId}`, {
|
||||
name: `${TEST_KB_NAME}-撌脫凒<E884AB>躬,
|
||||
description: '描述已更新',
|
||||
description: '<27>讛膩撌脫凒<E884AB>?,
|
||||
});
|
||||
const duration = Date.now() - startTime;
|
||||
|
||||
if (response.data.success) {
|
||||
return {
|
||||
name: '更新知识库(v2)',
|
||||
name: '<27>湔鰵<E6B994>亥<EFBFBD>摨橒<E691A8>v2嚗?,
|
||||
status: 'pass',
|
||||
message: '<27>湔鰵<E6B994>𣂼<EFBFBD>',
|
||||
duration,
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
name: '更新知识库(v2)',
|
||||
name: '<27>湔鰵<E6B994>亥<EFBFBD>摨橒<E691A8>v2嚗?,
|
||||
status: 'fail',
|
||||
message: '<27>湔鰵憭梯揖',
|
||||
duration,
|
||||
@@ -223,7 +210,7 @@ async function testUpdateKnowledgeBase(kbId: string): Promise<TestResult> {
|
||||
}
|
||||
} catch (error: any) {
|
||||
return {
|
||||
name: '更新知识库(v2)',
|
||||
name: '<27>湔鰵<E6B994>亥<EFBFBD>摨橒<E691A8>v2嚗?,
|
||||
status: 'fail',
|
||||
message: error.response?.data?.message || error.message,
|
||||
duration: Date.now() - startTime,
|
||||
@@ -231,66 +218,63 @@ async function testUpdateKnowledgeBase(kbId: string): Promise<TestResult> {
|
||||
}
|
||||
}
|
||||
|
||||
// 测试6:获取知识库统计(对比v1和v2)
|
||||
async function testGetKnowledgeBaseStats(kbId: string): Promise<TestResult> {
|
||||
// 瘚贝<EFBFBD>6嚗朞繮<EFBFBD>𣇉䰻霂<EFBFBD><EFBFBD>蝏蠘恣嚗<EFBFBD>笆瘥畕1<EFBFBD>綋2嚗?async function testGetKnowledgeBaseStats(kbId: string): Promise<TestResult> {
|
||||
try {
|
||||
const v1Response = await axios.get(`${BASE_URL}/api/v1/knowledge-bases/${kbId}/stats`);
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v2/pkb/knowledge/knowledge-bases/${kbId}/stats`);
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v1/pkb/knowledge/knowledge-bases/${kbId}/stats`);
|
||||
|
||||
const v1Stats = v1Response.data.data;
|
||||
const v2Stats = v2Response.data.data;
|
||||
|
||||
if (v1Stats.totalDocuments === v2Stats.totalDocuments) {
|
||||
return {
|
||||
name: '获取知识库统计(v1 vs v2)',
|
||||
name: '<27>瑕<EFBFBD><E79195>亥<EFBFBD>摨梶<E691A8>霈∴<E99C88>v1 vs v2嚗?,
|
||||
status: 'pass',
|
||||
message: `文档数一致: ${v1Stats.totalDocuments}个✅`,
|
||||
message: `<EFBFBD><EFBFBD>﹝<EFBFBD>唬<EFBFBD><EFBFBD>? ${v1Stats.totalDocuments}銝芬<EFBFBD>`,
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
name: '获取知识库统计(v1 vs v2)',
|
||||
name: '<27>瑕<EFBFBD><E79195>亥<EFBFBD>摨梶<E691A8>霈∴<E99C88>v1 vs v2嚗?,
|
||||
status: 'fail',
|
||||
message: `<EFBFBD><EFBFBD>﹝<EFBFBD>唬<EFBFBD>銝<EFBFBD><EFBFBD>湛<EFBFBD>v1: ${v1Stats.totalDocuments}, v2: ${v2Stats.totalDocuments}`,
|
||||
};
|
||||
}
|
||||
} catch (error: any) {
|
||||
return {
|
||||
name: '获取知识库统计(v1 vs v2)',
|
||||
name: '<27>瑕<EFBFBD><E79195>亥<EFBFBD>摨梶<E691A8>霈∴<E99C88>v1 vs v2嚗?,
|
||||
status: 'fail',
|
||||
message: error.message,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
// 测试7:RAG检索(对比v1和v2)
|
||||
async function testSearchKnowledgeBase(kbId: string): Promise<TestResult> {
|
||||
// 瘚贝<EFBFBD>7嚗鑹AG璉<EFBFBD>蝝g<EFBFBD>撖寞<EFBFBD>v1<EFBFBD>綋2嚗?async function testSearchKnowledgeBase(kbId: string): Promise<TestResult> {
|
||||
try {
|
||||
const query = '瘚贝<E7989A><E8B49D>亥砭';
|
||||
const v1Response = await axios.get(`${BASE_URL}/api/v1/knowledge-bases/${kbId}/search`, {
|
||||
params: { query, top_k: 5 },
|
||||
});
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v2/pkb/knowledge/knowledge-bases/${kbId}/search`, {
|
||||
const v2Response = await axios.get(`${BASE_URL}/api/v1/pkb/knowledge/knowledge-bases/${kbId}/search`, {
|
||||
params: { query, top_k: 5 },
|
||||
});
|
||||
|
||||
return {
|
||||
name: 'RAG检索(v1 vs v2)',
|
||||
name: 'RAG璉<47>蝝g<E89D9D>v1 vs v2嚗?,
|
||||
status: 'pass',
|
||||
message: '璉<>蝝X<E89D9D><EFBCB8><EFBFBD><EFBFBD>銝支葵<E694AF><E891B5>𧋦<EFBFBD>質<EFBFBD><E8B3AA>硺<EFBFBD>蝏𤘪<E89D8F>',
|
||||
};
|
||||
} catch (error: any) {
|
||||
return {
|
||||
name: 'RAG检索(v1 vs v2)',
|
||||
name: 'RAG璉<47>蝝g<E89D9D>v1 vs v2嚗?,
|
||||
status: 'fail',
|
||||
message: error.message,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
// 测试8:边界条件 - 不存在的知识库
|
||||
async function testNotFoundKnowledgeBase(): Promise<TestResult> {
|
||||
// 瘚贝<EFBFBD>8嚗朞器<EFBFBD>峕辺隞?- 銝滚<E98A9D><E6BB9A>函<EFBFBD><E587BD>亥<EFBFBD>摨?async function testNotFoundKnowledgeBase(): Promise<TestResult> {
|
||||
try {
|
||||
await axios.get(`${BASE_URL}/api/v2/pkb/knowledge/knowledge-bases/00000000-0000-0000-0000-000000000000`);
|
||||
await axios.get(`${BASE_URL}/api/v1/pkb/knowledge/knowledge-bases/00000000-0000-0000-0000-000000000000`);
|
||||
return {
|
||||
name: '颲寧<E9A2B2>瘚贝<E7989A>嚗帋<E59A97>摮睃銁<E79D83><E98A81>䰻霂<E4B0BB><E99C82>',
|
||||
status: 'fail',
|
||||
@@ -301,7 +285,7 @@ async function testNotFoundKnowledgeBase(): Promise<TestResult> {
|
||||
return {
|
||||
name: '颲寧<E9A2B2>瘚贝<E7989A>嚗帋<E59A97>摮睃銁<E79D83><E98A81>䰻霂<E4B0BB><E99C82>',
|
||||
status: 'pass',
|
||||
message: `正确返回错误状态: ${error.response.status}✅`,
|
||||
message: `甇<EFBFBD>&餈𥪜<EFBFBD><EFBFBD>躰秤<EFBFBD>嗆<EFBFBD>? ${error.response.status}<EFBFBD><EFBFBD>,
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
@@ -313,23 +297,22 @@ async function testNotFoundKnowledgeBase(): Promise<TestResult> {
|
||||
}
|
||||
}
|
||||
|
||||
// 测试9:清理 - 删除测试知识库
|
||||
async function testDeleteKnowledgeBase(kbId: string): Promise<TestResult> {
|
||||
// 瘚贝<EFBFBD>9嚗𡁏<EFBFBD><EFBFBD>?- <20>𣳇膄瘚贝<E7989A><E8B49D>亥<EFBFBD>摨?async function testDeleteKnowledgeBase(kbId: string): Promise<TestResult> {
|
||||
const startTime = Date.now();
|
||||
try {
|
||||
const response = await axios.delete(`${BASE_URL}/api/v2/pkb/knowledge/knowledge-bases/${kbId}`);
|
||||
const response = await axios.delete(`${BASE_URL}/api/v1/pkb/knowledge/knowledge-bases/${kbId}`);
|
||||
const duration = Date.now() - startTime;
|
||||
|
||||
if (response.data.success) {
|
||||
return {
|
||||
name: '删除知识库(v2)',
|
||||
name: '<EFBFBD>𣳇膄<EFBFBD>亥<EFBFBD>摨橒<EFBFBD>v2嚗?,
|
||||
status: 'pass',
|
||||
message: '<EFBFBD>𣳇膄<EFBFBD>𣂼<EFBFBD>',
|
||||
duration,
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
name: '删除知识库(v2)',
|
||||
name: '<EFBFBD>𣳇膄<EFBFBD>亥<EFBFBD>摨橒<EFBFBD>v2嚗?,
|
||||
status: 'fail',
|
||||
message: '<27>𣳇膄憭梯揖',
|
||||
duration,
|
||||
@@ -337,7 +320,7 @@ async function testDeleteKnowledgeBase(kbId: string): Promise<TestResult> {
|
||||
}
|
||||
} catch (error: any) {
|
||||
return {
|
||||
name: '删除知识库(v2)',
|
||||
name: '<EFBFBD>𣳇膄<EFBFBD>亥<EFBFBD>摨橒<EFBFBD>v2嚗?,
|
||||
status: 'fail',
|
||||
message: error.response?.data?.message || error.message,
|
||||
duration: Date.now() - startTime,
|
||||
@@ -345,13 +328,11 @@ async function testDeleteKnowledgeBase(kbId: string): Promise<TestResult> {
|
||||
}
|
||||
}
|
||||
|
||||
// 主测试函数
|
||||
async function runTests() {
|
||||
console.log('🚀 开始PKB API自动化测试...\n');
|
||||
// 銝餅<EFBFBD>霂訫遆<EFBFBD>?async function runTests() {
|
||||
console.log('<EFBFBD><EFBFBD> 撘<EFBFBD>憪閪KB API<EFBFBD>芸𢆡<EFBFBD>𡝗<EFBFBD>霂?..\n');
|
||||
console.log('='.repeat(80));
|
||||
|
||||
// 测试1:健康检查
|
||||
console.log('\n📋 阶段1:健康检查');
|
||||
// 瘚贝<EFBFBD>1嚗𡁜<EFBFBD>摨瑟<EFBFBD><EFBFBD>? console.log('\n<EFBFBD><EFBFBD> <EFBFBD>嗆挾1嚗𡁜<EFBFBD>摨瑟<EFBFBD><EFBFBD>?);
|
||||
console.log('-'.repeat(80));
|
||||
results.push(await testHealthCheck());
|
||||
printResult(results[results.length - 1]);
|
||||
@@ -369,7 +350,7 @@ async function runTests() {
|
||||
printResult(results[results.length - 1]);
|
||||
|
||||
if (!testKbId) {
|
||||
console.log('\n❌ 无法获取测试知识库ID,后续测试跳过');
|
||||
console.log('\n<EFBFBD>?<3F>䭾<EFBFBD><E4ADBE>瑕<EFBFBD>瘚贝<E7989A><E8B49D>亥<EFBFBD>摨𨧻D嚗<44><E59A97>蝏剜<E89D8F>霂閗歲餈?);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -385,26 +366,22 @@ async function runTests() {
|
||||
results.push(await testUpdateKnowledgeBase(testKbId));
|
||||
printResult(results[results.length - 1]);
|
||||
|
||||
// 测试6:获取统计信息
|
||||
console.log('\n📋 阶段6:知识库统计');
|
||||
// 瘚贝<EFBFBD>6嚗朞繮<EFBFBD>𣇉<EFBFBD>霈∩縑<EFBFBD>? console.log('\n<EFBFBD><EFBFBD> <EFBFBD>嗆挾6嚗𡁶䰻霂<EFBFBD><EFBFBD>蝏蠘恣');
|
||||
console.log('-'.repeat(80));
|
||||
results.push(await testGetKnowledgeBaseStats(testKbId));
|
||||
printResult(results[results.length - 1]);
|
||||
|
||||
// 测试7:RAG检索
|
||||
console.log('\n📋 阶段7:RAG检索');
|
||||
// 瘚贝<EFBFBD>7嚗鑹AG璉<EFBFBD>蝝? console.log('\n<EFBFBD><EFBFBD> <EFBFBD>嗆挾7嚗鑹AG璉<EFBFBD>蝝?);
|
||||
console.log('-'.repeat(80));
|
||||
results.push(await testSearchKnowledgeBase(testKbId));
|
||||
printResult(results[results.length - 1]);
|
||||
|
||||
// 测试8:边界条件
|
||||
console.log('\n📋 阶段8:边界条件测试');
|
||||
// 瘚贝<EFBFBD>8嚗朞器<EFBFBD>峕辺隞? console.log('\n<><6E> <20>嗆挾8嚗朞器<E69C9E>峕辺隞嗆<E99A9E>霂?);
|
||||
console.log('-'.repeat(80));
|
||||
results.push(await testNotFoundKnowledgeBase());
|
||||
printResult(results[results.length - 1]);
|
||||
|
||||
// 测试9:清理
|
||||
console.log('\n📋 阶段9:清理测试数据');
|
||||
// 瘚贝<EFBFBD>9嚗𡁏<EFBFBD><EFBFBD>? console.log('\n<><6E> <20>嗆挾9嚗𡁏<E59A97><F0A1818F><EFBFBD><EFBFBD>霂閙㺭<E99699>?);
|
||||
console.log('-'.repeat(80));
|
||||
results.push(await testDeleteKnowledgeBase(testKbId));
|
||||
printResult(results[results.length - 1]);
|
||||
@@ -420,13 +397,13 @@ async function runTests() {
|
||||
const totalDuration = results.reduce((sum, r) => sum + (r.duration || 0), 0);
|
||||
|
||||
console.log(`\n<EFBFBD>餉恣: ${results.length}銝芣<EFBFBD>霂𧄧);
|
||||
console.log(`✅ 通过: ${passCount}个`);
|
||||
console.log(`❌ 失败: ${failCount}个`);
|
||||
console.log(`<EFBFBD>?<EFBFBD>朞<EFBFBD>: ${passCount}銝注);
|
||||
console.log(`<EFBFBD>?憭梯揖: ${failCount}銝注);
|
||||
console.log(`<EFBFBD>哨<EFBFBD> 頝唾<EFBFBD>: ${skipCount}銝注);
|
||||
console.log(`<EFBFBD>梧<EFBFBD> <20>餉<EFBFBD>埈𧒄: ${totalDuration}ms`);
|
||||
|
||||
if (failCount === 0) {
|
||||
console.log('\n🎉 所有测试通过!');
|
||||
console.log('\n<EFBFBD><EFBFBD> <20><><EFBFBD>㗇<EFBFBD>霂閖<E99C82>朞<EFBFBD>嚗?);
|
||||
} else {
|
||||
console.log('\n<EFBFBD>𩤃<EFBFBD> <EFBFBD>典<EFBFBD>瘚贝<EFBFBD>憭梯揖嚗諹窈<EFBFBD>亦<EFBFBD>霂行<EFBFBD>');
|
||||
}
|
||||
@@ -434,7 +411,7 @@ async function runTests() {
|
||||
|
||||
// <20>扯<EFBFBD>瘚贝<E7989A>
|
||||
runTests().catch(error => {
|
||||
console.error('❌ 测试执行失败:', error);
|
||||
console.error('<EFBFBD>?瘚贝<EFBFBD><EFBFBD>扯<EFBFBD>憭梯揖:', error);
|
||||
process.exit(1);
|
||||
});
|
||||
|
||||
|
||||
@@ -82,3 +82,4 @@ testAPI().catch(console.error);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -301,3 +301,4 @@ verifySchemas()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -78,3 +78,4 @@ export async function moduleRoutes(fastify: FastifyInstance) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -108,3 +108,4 @@ export interface PaginatedResponse<T> {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -355,5 +355,6 @@ runTests().catch((error) => {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -296,5 +296,6 @@ runTest()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -334,5 +334,6 @@ Content-Type: application/json
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -270,5 +270,6 @@ export const conflictDetectionService = new ConflictDetectionService();
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -220,5 +220,6 @@ curl -X POST http://localhost:3000/api/v1/dc/tool-c/test/execute \
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -274,5 +274,6 @@ export const streamAIController = new StreamAIController();
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -185,3 +185,4 @@ logger.info('[SessionMemory] 会话记忆管理器已启动', {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -119,3 +119,4 @@ checkTableStructure();
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -106,3 +106,4 @@ checkProjectConfig().catch(console.error);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -88,3 +88,4 @@ main();
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -545,3 +545,4 @@ URL: https://iit.xunzhengyixue.com/api/v1/iit/patient-wechat/callback
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -180,3 +180,4 @@ console.log('');
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -497,3 +497,4 @@ export const patientWechatService = new PatientWechatService();
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -142,3 +142,4 @@ testDifyIntegration().catch(error => {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -169,5 +169,6 @@ testIitDatabase()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -157,3 +157,4 @@ if (hasError) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -183,3 +183,4 @@ async function testUrlVerification() {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -264,3 +264,4 @@ main().catch((error) => {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -148,3 +148,4 @@ Write-Host ""
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -239,5 +239,6 @@ export interface CachedProtocolRules {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -420,5 +420,6 @@ SET session_replication_role = 'origin';
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -122,5 +122,6 @@ WHERE key = 'verify_test';
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -265,5 +265,6 @@ verifyDatabase()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1
backend/src/types/global.d.ts
vendored
1
backend/src/types/global.d.ts
vendored
@@ -55,5 +55,6 @@ export {}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -78,5 +78,6 @@ Write-Host "✅ 完成!" -ForegroundColor Green
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -5,3 +5,4 @@ SELECT schema_name FROM information_schema.schemata WHERE schema_name NOT IN ('p
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,33 +1,33 @@
|
||||
###
|
||||
# PKB妯″潡杩佺Щ - API娴嬭瘯鑴氭湰
|
||||
# 测试v1和v2路由的功能完整性和一致性
|
||||
# 娴嬭瘯v1鍜寁2璺<EFBFBD>敱鐨勫姛鑳藉畬鏁存€у拰涓€鑷存€?
|
||||
###
|
||||
|
||||
@baseUrl = http://localhost:3000
|
||||
@userId = user-mock-001
|
||||
|
||||
### ============================================
|
||||
### 阶段3.1: 健康检查
|
||||
### 闃舵<EFBFBD>3.1: 鍋ュ悍妫€鏌?
|
||||
### ============================================
|
||||
|
||||
### 1. PKB v2健康检查
|
||||
GET {{baseUrl}}/api/v2/pkb/health
|
||||
### 1. PKB v2鍋ュ悍妫€鏌?
|
||||
GET {{baseUrl}}/api/v1/pkb/health
|
||||
Accept: application/json
|
||||
|
||||
### ============================================
|
||||
### 闃舵<E99783>3.2: 鐭ヨ瘑搴揅RUD娴嬭瘯
|
||||
### ============================================
|
||||
|
||||
### 2. 获取知识库列表(v1)
|
||||
### 2. 鑾峰彇鐭ヨ瘑搴撳垪琛<EFBFBD>紙v1锛?
|
||||
GET {{baseUrl}}/api/v1/knowledge-bases
|
||||
Accept: application/json
|
||||
|
||||
### 3. 获取知识库列表(v2)
|
||||
GET {{baseUrl}}/api/v2/pkb/knowledge/knowledge-bases
|
||||
### 3. 鑾峰彇鐭ヨ瘑搴撳垪琛<EFBFBD>紙v2锛?
|
||||
GET {{baseUrl}}/api/v1/pkb/knowledge/knowledge-bases
|
||||
Accept: application/json
|
||||
|
||||
### 4. 创建知识库(v2)
|
||||
POST {{baseUrl}}/api/v2/pkb/knowledge/knowledge-bases
|
||||
### 4. 鍒涘缓鐭ヨ瘑搴擄紙v2锛?
|
||||
POST {{baseUrl}}/api/v1/pkb/knowledge/knowledge-bases
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
@@ -35,7 +35,7 @@ Content-Type: application/json
|
||||
"description": "杩欐槸涓€涓<E282AC>€氳繃v2 API鍒涘缓鐨勬祴璇曠煡璇嗗簱"
|
||||
}
|
||||
|
||||
### 5. 创建知识库(v1 - 对比)
|
||||
### 5. 鍒涘缓鐭ヨ瘑搴擄紙v1 - 瀵规瘮锛?
|
||||
POST {{baseUrl}}/api/v1/knowledge-bases
|
||||
Content-Type: application/json
|
||||
|
||||
@@ -44,54 +44,54 @@ Content-Type: application/json
|
||||
"description": "杩欐槸涓€涓<E282AC>€氳繃v1 API鍒涘缓鐨勬祴璇曠煡璇嗗簱"
|
||||
}
|
||||
|
||||
### 6. 获取知识库详情(v2)
|
||||
### 6. 鑾峰彇鐭ヨ瘑搴撹<EFBFBD>鎯咃紙v2锛?
|
||||
# 鏇挎崲涓哄疄闄呯殑鐭ヨ瘑搴揑D
|
||||
@kbId = f6ebe476-c50f-4222-83d2-c2525edc6054
|
||||
GET {{baseUrl}}/api/v2/pkb/knowledge/knowledge-bases/{{kbId}}
|
||||
GET {{baseUrl}}/api/v1/pkb/knowledge/knowledge-bases/{{kbId}}
|
||||
Accept: application/json
|
||||
|
||||
### 7. 获取知识库详情(v1 - 对比)
|
||||
### 7. 鑾峰彇鐭ヨ瘑搴撹<EFBFBD>鎯咃紙v1 - 瀵规瘮锛?
|
||||
GET {{baseUrl}}/api/v1/knowledge-bases/{{kbId}}
|
||||
Accept: application/json
|
||||
|
||||
### 8. 更新知识库(v2)
|
||||
PUT {{baseUrl}}/api/v2/pkb/knowledge/knowledge-bases/{{kbId}}
|
||||
### 8. 鏇存柊鐭ヨ瘑搴擄紙v2锛?
|
||||
PUT {{baseUrl}}/api/v1/pkb/knowledge/knowledge-bases/{{kbId}}
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"name": "鏇存柊鍚庣殑鐭ヨ瘑搴撳悕绉皏2",
|
||||
"description": "通过v2 API更新的描述"
|
||||
"description": "閫氳繃v2 API鏇存柊鐨勬弿杩?
|
||||
}
|
||||
|
||||
### 9. 获取知识库统计(v2)
|
||||
GET {{baseUrl}}/api/v2/pkb/knowledge/knowledge-bases/{{kbId}}/stats
|
||||
### 9. 鑾峰彇鐭ヨ瘑搴撶粺璁★紙v2锛?
|
||||
GET {{baseUrl}}/api/v1/pkb/knowledge/knowledge-bases/{{kbId}}/stats
|
||||
Accept: application/json
|
||||
|
||||
### 10. 获取知识库统计(v1 - 对比)
|
||||
### 10. 鑾峰彇鐭ヨ瘑搴撶粺璁★紙v1 - 瀵规瘮锛?
|
||||
GET {{baseUrl}}/api/v1/knowledge-bases/{{kbId}}/stats
|
||||
Accept: application/json
|
||||
|
||||
### ============================================
|
||||
### 阶段3.3: RAG检索测试
|
||||
### 闃舵<EFBFBD>3.3: RAG妫€绱㈡祴璇?
|
||||
### ============================================
|
||||
|
||||
### 11. RAG检索(v2)
|
||||
GET {{baseUrl}}/api/v2/pkb/knowledge/knowledge-bases/{{kbId}}/search?query=阿尔兹海默症的治疗方法&top_k=5
|
||||
### 11. RAG妫€绱<EFBFBD>紙v2锛?
|
||||
GET {{baseUrl}}/api/v1/pkb/knowledge/knowledge-bases/{{kbId}}/search?query=闃垮皵鍏规捣榛樼棁鐨勬不鐤楁柟娉?top_k=5
|
||||
Accept: application/json
|
||||
|
||||
### 12. RAG检索(v1 - 对比)
|
||||
GET {{baseUrl}}/api/v1/knowledge-bases/{{kbId}}/search?query=阿尔兹海默症的治疗方法&top_k=5
|
||||
### 12. RAG妫€绱<EFBFBD>紙v1 - 瀵规瘮锛?
|
||||
GET {{baseUrl}}/api/v1/knowledge-bases/{{kbId}}/search?query=闃垮皵鍏规捣榛樼棁鐨勬不鐤楁柟娉?top_k=5
|
||||
Accept: application/json
|
||||
|
||||
### ============================================
|
||||
### 闃舵<E99783>3.4: 鏂囨。閫夋嫨锛堝叏鏂囬槄璇绘ā寮忥級
|
||||
### ============================================
|
||||
|
||||
### 13. 获取文档选择(v2)
|
||||
GET {{baseUrl}}/api/v2/pkb/knowledge/knowledge-bases/{{kbId}}/document-selection?max_files=7&max_tokens=750000
|
||||
### 13. 鑾峰彇鏂囨。閫夋嫨锛坴2锛?
|
||||
GET {{baseUrl}}/api/v1/pkb/knowledge/knowledge-bases/{{kbId}}/document-selection?max_files=7&max_tokens=750000
|
||||
Accept: application/json
|
||||
|
||||
### 14. 获取文档选择(v1 - 对比)
|
||||
### 14. 鑾峰彇鏂囨。閫夋嫨锛坴1 - 瀵规瘮锛?
|
||||
GET {{baseUrl}}/api/v1/knowledge-bases/{{kbId}}/document-selection?max_files=7&max_tokens=750000
|
||||
Accept: application/json
|
||||
|
||||
@@ -100,25 +100,25 @@ Accept: application/json
|
||||
### ============================================
|
||||
|
||||
### 15. 鑾峰彇鏂囨。鍒楄〃锛堥€氳繃鐭ヨ瘑搴撹<E690B4>鎯咃級
|
||||
GET {{baseUrl}}/api/v2/pkb/knowledge/knowledge-bases/{{kbId}}
|
||||
GET {{baseUrl}}/api/v1/pkb/knowledge/knowledge-bases/{{kbId}}
|
||||
Accept: application/json
|
||||
|
||||
### 16. 获取单个文档详情(v2)
|
||||
### 16. 鑾峰彇鍗曚釜鏂囨。璇︽儏锛坴2锛?
|
||||
# 鏇挎崲涓哄疄闄呯殑鏂囨。ID
|
||||
@docId = your-document-id
|
||||
GET {{baseUrl}}/api/v2/pkb/knowledge/documents/{{docId}}
|
||||
GET {{baseUrl}}/api/v1/pkb/knowledge/documents/{{docId}}
|
||||
Accept: application/json
|
||||
|
||||
### ============================================
|
||||
### 阶段3.6: 批处理功能测试
|
||||
### 闃舵<EFBFBD>3.6: 鎵瑰<EFBFBD>鐞嗗姛鑳芥祴璇?
|
||||
### ============================================
|
||||
|
||||
### 17. 获取批处理模板(v2)
|
||||
GET {{baseUrl}}/api/v2/pkb/batch-tasks/batch/templates
|
||||
### 17. 鑾峰彇鎵瑰<EFBFBD>鐞嗘ā鏉匡紙v2锛?
|
||||
GET {{baseUrl}}/api/v1/pkb/batch-tasks/batch/templates
|
||||
Accept: application/json
|
||||
|
||||
### 18. 创建批处理任务(v2)
|
||||
POST {{baseUrl}}/api/v2/pkb/batch-tasks/batch/execute
|
||||
### 18. 鍒涘缓鎵瑰<EFBFBD>鐞嗕换鍔★紙v2锛?
|
||||
POST {{baseUrl}}/api/v1/pkb/batch-tasks/batch/execute
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
@@ -134,25 +134,25 @@ Content-Type: application/json
|
||||
### 闃舵<E99783>3.7: 杈圭晫鏉′欢娴嬭瘯
|
||||
### ============================================
|
||||
|
||||
### 19. 测试不存在的知识库(v2)
|
||||
GET {{baseUrl}}/api/v2/pkb/knowledge/knowledge-bases/00000000-0000-0000-0000-000000000000
|
||||
### 19. 娴嬭瘯涓嶅瓨鍦ㄧ殑鐭ヨ瘑搴擄紙v2锛?
|
||||
GET {{baseUrl}}/api/v1/pkb/knowledge/knowledge-bases/00000000-0000-0000-0000-000000000000
|
||||
Accept: application/json
|
||||
|
||||
### 20. 测试无效的查询参数(v2)
|
||||
GET {{baseUrl}}/api/v2/pkb/knowledge/knowledge-bases/{{kbId}}/search?query=&top_k=0
|
||||
### 20. 娴嬭瘯鏃犳晥鐨勬煡璇㈠弬鏁帮紙v2锛?
|
||||
GET {{baseUrl}}/api/v1/pkb/knowledge/knowledge-bases/{{kbId}}/search?query=&top_k=0
|
||||
Accept: application/json
|
||||
|
||||
### 21. 测试超大top_k参数(v2)
|
||||
GET {{baseUrl}}/api/v2/pkb/knowledge/knowledge-bases/{{kbId}}/search?query=测试&top_k=1000
|
||||
### 21. 娴嬭瘯瓒呭ぇtop_k鍙傛暟锛坴2锛?
|
||||
GET {{baseUrl}}/api/v1/pkb/knowledge/knowledge-bases/{{kbId}}/search?query=娴嬭瘯&top_k=1000
|
||||
Accept: application/json
|
||||
|
||||
### ============================================
|
||||
### 闃舵<E99783>3.8: 娓呯悊娴嬭瘯鏁版嵁锛堝彲閫夛級
|
||||
### ============================================
|
||||
|
||||
### 22. 删除测试知识库(v2)
|
||||
### 22. 鍒犻櫎娴嬭瘯鐭ヨ瘑搴擄紙v2锛?
|
||||
# @testKbId = 浠庡垱寤哄搷搴斾腑鑾峰彇鐨処D
|
||||
DELETE {{baseUrl}}/api/v2/pkb/knowledge/knowledge-bases/{{testKbId}}
|
||||
DELETE {{baseUrl}}/api/v1/pkb/knowledge/knowledge-bases/{{testKbId}}
|
||||
|
||||
###
|
||||
|
||||
@@ -168,3 +168,4 @@ DELETE {{baseUrl}}/api/v2/pkb/knowledge/knowledge-bases/{{testKbId}}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -365,5 +365,6 @@ runAdvancedTests().catch(error => {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -431,5 +431,6 @@ runAllTests()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -389,5 +389,6 @@ runAllTests()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -25,3 +25,4 @@ main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -23,3 +23,4 @@ main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -35,3 +35,4 @@ main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -24,3 +24,4 @@ main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -164,3 +164,4 @@ main()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -173,5 +173,6 @@ Set-Location ..
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
579
earch
Normal file
579
earch
Normal file
@@ -0,0 +1,579 @@
|
||||
warning: in the working copy of 'docs/00-系统总体设计/00-今日架构设计总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/00-系统总体设计/00-核心问题解答.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/00-系统总体设计/00-阅读指南.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/00-系统总体设计/03-数据库架构说明.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/00-系统总体设计/04-运营管理端架构设计.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/00-系统总体设计/05-Schema隔离方案与成本分析.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/00-系统总体设计/06-模块独立部署与单机版方案.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/00-系统总体设计/07-Monorepo架构评估.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/00-系统总体设计/08-架构设计全景图.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/00-系统总体设计/09-总体需求文档(PRD).md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/00-系统总体设计/10-核心业务规则总览.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/00-系统总体设计/99-下一步行动决策建议.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/00-项目概述/产品需求文档(PRD).md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/00-项目概述/技术架构总览.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/00-项目概述/文档梳理与差异分析.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/00-项目概述/最新需求与技术方案深度评估.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/00-项目概述/现有系统技术摸底报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/00-项目概述/设计文档完成总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/01-平台基础层/01-用户与权限中心(UAM)/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/01-平台基础层/02-存储服务/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/01-平台基础层/03-通知服务/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/01-平台基础层/04-监控与日志/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/01-平台基础层/05-系统配置/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/01-平台基础层/06-前端架构/01-前端总体架构设计.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/01-平台基础层/06-前端架构/02-导航结构设计.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/01-平台基础层/06-前端架构/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/01-平台基础层/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/02-通用能力层/01-LLM大模型网关/03-CloseAI集成指南.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/02-通用能力层/02-文档处理引擎/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/02-通用能力层/03-RAG引擎/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/02-通用能力层/04-数据ETL引擎/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/02-通用能力层/05-医学NLP引擎/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/02-通用能力层/Postgres-Only异步任务处理指南.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/02-通用能力层/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/02-通用能力层/通用能力层技术债务清单.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ADMIN-运营管理端/00-Phase3.5完成总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ADMIN-运营管理端/00-系统设计/00-权限与角色体系梳理报告_v1.0.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ADMIN-运营管理端/02-技术设计/03-Prompt管理系统快速参考.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ADMIN-运营管理端/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ADMIN运营与INST机构管理端-文档体系建立完成.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/AIA-AI智能问答/02-技术设计/01-数据库设计.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/AIA-AI智能问答/04-开发计划/01-AIA-V2.1开发计划.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/AIA-AI智能问答/04-开发计划/02-后端API设计.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/AIA-AI智能问答/04-开发计划/03-前端组件设计.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/AIA-AI智能问答/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/00-新AI交接文档.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/00-系统设计/01-系统架构设计.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/00-系统设计/02-模块关联关系设计.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/00-系统设计/03-数据流设计.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/00-系统设计/04-技术选型说明.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/01-需求分析/01-需求总览.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/01-需求分析/02-标题摘要初筛需求详述.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/01-需求分析/03-全文复筛需求详述.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/01-需求分析/04-用户故事和验收标准.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/01-需求分析/05-非功能性需求.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/02-技术设计/03-前端组件设计.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/02-技术设计/04-AI模型集成设计.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/02-技术设计/05-文件处理设计.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/02-技术设计/06-质量保障与可追溯策略.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/02-技术设计/07-文献处理技术选型.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/02-技术设计/07-智能Prompt生成模块开发计划.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/02-技术设计/08-全文复筛质量保障策略.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/03-UI设计/01-标题摘要初筛UI设计.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/03-UI设计/02-全文复筛UI设计.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/03-UI设计/03-设计规范.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/04-开发计划/04-Week4-结果展示与导出开发计划.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/04-开发计划/05-全文复筛前端开发计划.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/04-开发计划/全文复筛开发计划-更新说明.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-01-23_全文复筛前端开发完成.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-01-23_全文复筛前端逻辑调整.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-Prompt设计与测试完成报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-Week1完成报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-Week2-Day1-Bug修复.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-Week2-Day1完成报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-两步测试完整报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-今日工作完成总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-今日工作总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-全天开发总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-卒中数据泛化测试报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-架构重构完成报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-路由问题修复报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-19-Week2-Day2完成报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-19-Week2-Day3完成报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-21-Week4完成报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-21-字段映射问题修复.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-21-用户体验优化.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-21-真实LLM集成完成报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-22_Day2-Day3_LLM服务与验证系统开发.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-23_Day4_数据库设计与批处理服务开发.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-23_Day5_全文复筛API开发.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-23_数据库迁移状态说明.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-开发记录/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-测试文档/01-测试计划.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-测试文档/02-标题摘要初筛测试用例.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/05-测试文档/03-测试数据/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ASL-AI智能文献/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_AI_Few-shot示例库.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_Bug修复总结_2025-12-08.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_Day3开发计划.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_Day4-5前端开发计划.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_MVP开发计划_V1.0.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_Pivot列顺序优化总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_方案B实施总结_2025-12-09.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_缺失值处理_开发进度_2025-12-10.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_缺失值处理功能_更新说明.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-02_工作总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-06_工具C_Day1开发完成总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-06_工具C_Day2开发完成总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-07_AI对话核心功能增强总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-07_Bug修复_DataGrid空数据防御.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-07_Day5_Ant-Design-X重构完成.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-07_Day5最终总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-07_UI优化与Bug修复.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-07_后端API完整对接完成.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-07_完整UI优化与功能增强.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-07_工具C_Day4前端基础完成.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/DC模块重建完成总结-Day1.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/Day2完成总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/Day3完成总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/Phase1-Portal页面开发完成-2025-12-02.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/Phase2-ToolB-Step1-2开发完成-2025-12-03.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/Portal页面UI优化-2025-12-02.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/Tool-B-MVP完成总结-2025-12-03.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/ToolB-UI优化-2025-12-03.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/ToolB-UI优化-Round2-2025-12-03.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/ToolB浏览器测试计划-2025-12-03.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/后端API测试报告-2025-12-02.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/待办事项-下一步工作.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/06-开发记录/数据库验证报告-2025-12-02.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/07-技术债务/Tool-B技术债务清单.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/DC-数据清洗整理/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/IIT Manager Agent/02-技术设计/IIT Manager Agent 完整技术开发方案 (V1.1).md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/IIT Manager Agent/02-技术设计/IIT Manager Agent 技术路径与架构设计.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/IIT Manager Agent/04-开发计划/REDCap对接技术方案与实施指南.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/IIT Manager Agent/04-开发计划/企业微信注册指南.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/IIT Manager Agent/06-开发记录/2026-01-04-Dify知识库集成开发记录.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/IIT Manager Agent/06-开发记录/Day2-REDCap实时集成开发完成记录.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/IIT Manager Agent/06-开发记录/Day3-企业微信集成与端到端测试完成记录.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/IIT Manager Agent/06-开发记录/Day3-企业微信集成开发完成记录.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/IIT Manager Agent/06-开发记录/Phase1.5-AI对话集成REDCap完成记录.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/IIT Manager Agent/06-开发记录/V1.1更新完成报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/IIT Manager Agent/07-技术债务/IIT Manager Agent 技术债务清单.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/INST-机构管理端/00-模块当前状态与开发指南.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/INST-机构管理端/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/PKB-个人知识库/00-模块当前状态与开发指南.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/PKB-个人知识库/02-技术设计/01-数据库设计.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/PKB-个人知识库/06-开发记录/2026-01-07-前端迁移与批处理功能完善.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/PKB-个人知识库/06-开发记录/2026-01-07_PKB模块前端V3设计实现.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/PKB-个人知识库/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/RVW-稿件审查系统/00-模块当前状态与开发指南.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/RVW-稿件审查系统/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/Redcap/00-模块概览/00-REDCap模块文档导航.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/Redcap/00-模块概览/02-REDCap对接总体方案.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/Redcap/00-模块概览/03-REDCap对接风险评估与技术挑战分析.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/Redcap/01-部署与配置/10-REDCap_Docker部署操作手册.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/Redcap/01-部署与配置/13-部署问题排查手册.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/Redcap/04-参考资料/02-REDCap部署指南与环境要求_旧版.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/Redcap/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/SSA-智能统计分析/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/03-业务模块/ST-统计分析工具/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/04-开发规范/01-数据库设计规范.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/04-开发规范/02-API设计规范.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/04-开发规范/03-数据库全局视图.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/04-开发规范/04-API路由总览.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/04-开发规范/09-数据库开发规范.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/04-开发规范/10-模块认证规范.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/05-部署文档/02-SAE部署完全指南(产品经理版).md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/05-部署文档/07-前端Nginx-SAE部署操作手册.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/05-部署文档/08-PostgreSQL数据库部署操作手册.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/05-部署文档/10-Node.js后端-Docker镜像构建手册.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/05-部署文档/11-Node.js后端-SAE部署配置清单.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/05-部署文档/12-Node.js后端-SAE部署操作手册.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/05-部署文档/13-Node.js后端-镜像修复记录.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/05-部署文档/14-Node.js后端-pino-pretty问题修复.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/05-部署文档/16-前端Nginx-部署成功总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/05-部署文档/17-完整部署实战手册-2025版.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/05-部署文档/18-部署文档使用指南.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/05-部署文档/19-日常更新快速操作手册.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/05-部署文档/文档修正报告-20251214.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/06-测试文档/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/07-运维文档/02-环境变量配置模板.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/07-运维文档/03-SAE环境变量配置指南.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/07-运维文档/05-Redis缓存与队列的区别说明.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/07-运维文档/06-长时间任务可靠性分析.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/07-运维文档/07-Redis使用需求分析(按模块).md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/03-每周计划/2025-11-12-工作总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/03-每周计划/2025-11-13-任务19完成总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/03-每周计划/2025-11-13-工作总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/03-每周计划/2025-11-14-任务19完成总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/03-每周计划/2025-11-16-平台基础设施规划完成总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/03-每周计划/2025-11-17-平台基础设施实施完成报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/03-每周计划/2025-11-17-平台基础设施验证报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/03-每周计划/2025-11-18-AI助手工作交接.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/03-每周计划/2025-12-13-Postgres-Only架构改造完成.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/03-每周计划/Week2-总结报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/04-技术决策/2025-11-18-MSE与ARMS采购决策分析.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/04-技术决策/2025-11-18-PostgreSQL版本选择建议.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/04-技术决策/2025-11-18-阿里云RDS系列选择建议.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/05-技术债务/通用对话服务抽取计划.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/2026-01-11-数据库事故总结.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/PKB前端问题修复报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/PKB前端验证指南.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/PKB功能审查报告-阶段0.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/PKB和RVW功能迁移计划.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/PKB精细化优化报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/PKB迁移-超级安全执行计划.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/PKB迁移-阶段1完成报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/PKB迁移-阶段2完成报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/PKB迁移-阶段2进行中.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/PKB迁移-阶段3完成报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/PKB迁移-阶段4完成报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/V2.2版本变化说明.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/下一阶段行动计划-V2.0-模块化架构优先.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/08-项目管理/下一阶段行动计划-V2.2-前端架构优先版.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/09-架构实施/01-Schema隔离架构设计(10个).md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/09-架构实施/04-平台基础设施规划.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/09-架构实施/Prisma配置完成报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/09-架构实施/Schema迁移完成报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/09-架构实施/前端模块注册机制实施报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/09-架构实施/后端代码分层-迁移计划.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/09-架构实施/后端代码分层实施报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/09-架构实施/后端架构增量演进方案.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/09-架构实施/快速功能测试报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/09-架构实施/数据库验证通过.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/09-架构实施/模块配置更新报告.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/09-架构实施/编码规范-UTF8最佳实践.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/_templates/API设计-模板.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/_templates/README.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/_templates/数据库设计-模板.md', CRLF will be replaced by LF the next time Git touches it
|
||||
warning: in the working copy of 'docs/_templates/模块README-模板.md', CRLF will be replaced by LF the next time Git touches it
|
||||
docs/00-系统总体设计/00-今日架构设计总结.md
|
||||
docs/00-系统总体设计/00-核心问题解答.md
|
||||
docs/00-系统总体设计/00-阅读指南.md
|
||||
docs/00-系统总体设计/01-系统架构分层设计.md
|
||||
docs/00-系统总体设计/02-文档体系重构方案.md
|
||||
docs/00-系统总体设计/03-数据库架构说明.md
|
||||
docs/00-系统总体设计/04-运营管理端架构设计.md
|
||||
docs/00-系统总体设计/05-Schema隔离方案与成本分析.md
|
||||
docs/00-系统总体设计/06-模块独立部署与单机版方案.md
|
||||
docs/00-系统总体设计/07-Monorepo架构评估.md
|
||||
docs/00-系统总体设计/08-架构设计全景图.md
|
||||
docs/00-系统总体设计/09-总体需求文档(PRD).md
|
||||
docs/00-系统总体设计/10-核心业务规则总览.md
|
||||
docs/00-系统总体设计/99-下一步行动决策建议.md
|
||||
docs/00-系统总体设计/README.md
|
||||
docs/00-系统总体设计/前后端模块化架构设计-V2.md
|
||||
docs/00-项目概述/产品需求文档(PRD).md
|
||||
docs/00-项目概述/壹证循科技 AI科研产品需求文档.md
|
||||
docs/00-项目概述/壹证循科技AI科研产品 - 技术架构白皮书.md
|
||||
docs/00-项目概述/技术架构总览.md
|
||||
docs/00-项目概述/文档梳理与差异分析.md
|
||||
docs/00-项目概述/最新需求与技术方案深度评估.md
|
||||
docs/00-项目概述/现有系统技术摸底报告.md
|
||||
docs/00-项目概述/设计文档完成总结.md
|
||||
docs/01-平台基础层/01-用户与权限中心(UAM)/README.md
|
||||
docs/01-平台基础层/02-存储服务/README.md
|
||||
docs/01-平台基础层/03-通知服务/README.md
|
||||
docs/01-平台基础层/04-监控与日志/README.md
|
||||
docs/01-平台基础层/05-系统配置/README.md
|
||||
docs/01-平台基础层/06-前端架构/01-前端总体架构设计.md
|
||||
docs/01-平台基础层/06-前端架构/02-导航结构设计.md
|
||||
docs/01-平台基础层/06-前端架构/README.md
|
||||
docs/01-平台基础层/README.md
|
||||
docs/02-通用能力层/01-LLM大模型网关/03-CloseAI集成指南.md
|
||||
docs/02-通用能力层/01-LLM大模型网关/README.md
|
||||
docs/02-通用能力层/02-文档处理引擎/README.md
|
||||
docs/02-通用能力层/03-RAG引擎/README.md
|
||||
docs/02-通用能力层/04-数据ETL引擎/README.md
|
||||
docs/02-通用能力层/05-医学NLP引擎/README.md
|
||||
docs/02-通用能力层/Postgres-Only异步任务处理指南.md
|
||||
docs/02-通用能力层/README.md
|
||||
docs/02-通用能力层/通用能力层技术债务清单.md
|
||||
docs/03-业务模块/ADMIN-运营管理端/00-Phase3.5完成总结.md
|
||||
docs/03-业务模块/ADMIN-运营管理端/00-模块当前状态与开发指南.md
|
||||
docs/03-业务模块/ADMIN-运营管理端/00-系统设计/00-权限与角色体系梳理报告_v1.0.md
|
||||
docs/03-业务模块/ADMIN-运营管理端/00-系统设计/02-通用能力层_10-权限体系梳理反馈与修正建议.md
|
||||
docs/03-业务模块/ADMIN-运营管理端/00-给新AI的快速指南.md
|
||||
docs/03-业务模块/ADMIN-运营管理端/01-需求分析/02-通用能力层_07-运营与机构管理端PRD_v2.1.md
|
||||
docs/03-业务模块/ADMIN-运营管理端/02-技术设计/02-通用能力层_03-Prompt管理系统与灰度预览设计方案.md
|
||||
docs/03-业务模块/ADMIN-运营管理端/02-技术设计/03-Prompt管理系统快速参考.md
|
||||
docs/03-业务模块/ADMIN-运营管理端/02-技术设计/Prompt管理后台设计.md
|
||||
docs/03-业务模块/ADMIN-运营管理端/04-开发计划/00-总体开发计划.md
|
||||
docs/03-业务模块/ADMIN-运营管理端/04-开发计划/01-TODO清单(可追踪).md
|
||||
docs/03-业务模块/ADMIN-运营管理端/04-开发计划/02-Prompt管理系统开发计划.md
|
||||
docs/03-业务模块/ADMIN-运营管理端/README.md
|
||||
docs/03-业务模块/ADMIN运营与INST机构管理端-文档体系建立完成.md
|
||||
docs/03-业务模块/AIA-AI智能问答/01-需求分析/AIA模块PRD.md
|
||||
docs/03-业务模块/AIA-AI智能问答/02-技术设计/01-数据库设计.md
|
||||
docs/03-业务模块/AIA-AI智能问答/04-开发计划/01-AIA-V2.1开发计划.md
|
||||
docs/03-业务模块/AIA-AI智能问答/04-开发计划/02-后端API设计.md
|
||||
docs/03-业务模块/AIA-AI智能问答/04-开发计划/03-前端组件设计.md
|
||||
docs/03-业务模块/AIA-AI智能问答/README.md
|
||||
docs/03-业务模块/ASL-AI智能文献/00-新AI交接文档.md
|
||||
docs/03-业务模块/ASL-AI智能文献/00-模块当前状态与开发指南.md
|
||||
docs/03-业务模块/ASL-AI智能文献/00-系统设计/01-系统架构设计.md
|
||||
docs/03-业务模块/ASL-AI智能文献/00-系统设计/02-模块关联关系设计.md
|
||||
docs/03-业务模块/ASL-AI智能文献/00-系统设计/03-数据流设计.md
|
||||
docs/03-业务模块/ASL-AI智能文献/00-系统设计/04-技术选型说明.md
|
||||
docs/03-业务模块/ASL-AI智能文献/01-需求分析/01-需求总览.md
|
||||
docs/03-业务模块/ASL-AI智能文献/01-需求分析/02-标题摘要初筛需求详述.md
|
||||
docs/03-业务模块/ASL-AI智能文献/01-需求分析/03-全文复筛需求详述.md
|
||||
docs/03-业务模块/ASL-AI智能文献/01-需求分析/04-用户故事和验收标准.md
|
||||
docs/03-业务模块/ASL-AI智能文献/01-需求分析/05-非功能性需求.md
|
||||
docs/03-业务模块/ASL-AI智能文献/01-需求分析/AI智能文献PRD(1)-产品概览.md
|
||||
docs/03-业务模块/ASL-AI智能文献/01-需求分析/AI智能文献PRD(2)-初筛与复筛.md
|
||||
docs/03-业务模块/ASL-AI智能文献/01-需求分析/AI智能文献PRD(3)-提取与分析模块.md
|
||||
docs/03-业务模块/ASL-AI智能文献/02-技术设计/01-数据库设计.md
|
||||
docs/03-业务模块/ASL-AI智能文献/02-技术设计/02-API设计规范.md
|
||||
docs/03-业务模块/ASL-AI智能文献/02-技术设计/03-前端组件设计.md
|
||||
docs/03-业务模块/ASL-AI智能文献/02-技术设计/04-AI模型集成设计.md
|
||||
docs/03-业务模块/ASL-AI智能文献/02-技术设计/05-文件处理设计.md
|
||||
docs/03-业务模块/ASL-AI智能文献/02-技术设计/06-质量保障与可追溯策略.md
|
||||
docs/03-业务模块/ASL-AI智能文献/02-技术设计/07-文献处理技术选型.md
|
||||
docs/03-业务模块/ASL-AI智能文献/02-技术设计/07-智能Prompt生成模块开发计划.md
|
||||
docs/03-业务模块/ASL-AI智能文献/02-技术设计/08-全文复筛质量保障策略.md
|
||||
docs/03-业务模块/ASL-AI智能文献/03-UI设计/01-标题摘要初筛UI设计.md
|
||||
docs/03-业务模块/ASL-AI智能文献/03-UI设计/02-全文复筛UI设计.md
|
||||
docs/03-业务模块/ASL-AI智能文献/03-UI设计/03-设计规范.md
|
||||
docs/03-业务模块/ASL-AI智能文献/04-开发计划/01-开发里程碑.md
|
||||
docs/03-业务模块/ASL-AI智能文献/04-开发计划/02-标题摘要初筛开发计划.md
|
||||
docs/03-业务模块/ASL-AI智能文献/04-开发计划/03-任务分解.md
|
||||
docs/03-业务模块/ASL-AI智能文献/04-开发计划/04-Week4-结果展示与导出开发计划.md
|
||||
docs/03-业务模块/ASL-AI智能文献/04-开发计划/04-全文复筛开发计划.md
|
||||
docs/03-业务模块/ASL-AI智能文献/04-开发计划/05-全文复筛前端开发计划.md
|
||||
docs/03-业务模块/ASL-AI智能文献/04-开发计划/全文复筛开发计划-更新说明.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-01-23_全文复筛前端开发完成.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-01-23_全文复筛前端逻辑调整.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-Prompt设计与测试完成报告.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-Week1完成报告.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-Week2-Day1-Bug修复.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-Week2-Day1完成报告.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-两步测试完整报告.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-今日工作完成总结.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-今日工作总结.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-全天开发总结.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-卒中数据泛化测试报告.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-架构重构完成报告.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-18-路由问题修复报告.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-19-Week2-Day2完成报告.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-19-Week2-Day3完成报告.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-21-Week4完成报告.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-21-字段映射问题修复.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-21-用户体验优化.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-21-真实LLM集成完成报告.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-22_Day2-Day3_LLM服务与验证系统开发.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-23_Day4_数据库设计与批处理服务开发.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-23_Day5_全文复筛API开发.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/2025-11-23_数据库迁移状态说明.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-开发记录/README.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-测试文档/01-测试计划.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-测试文档/02-标题摘要初筛测试用例.md
|
||||
docs/03-业务模块/ASL-AI智能文献/05-测试文档/03-测试数据/README.md
|
||||
docs/03-业务模块/ASL-AI智能文献/06-技术债务/技术债务清单.md
|
||||
docs/03-业务模块/ASL-AI智能文献/README.md
|
||||
docs/03-业务模块/DC-数据清洗整理/00-工具C当前状态与开发指南.md
|
||||
docs/03-业务模块/DC-数据清洗整理/00-模块当前状态与开发指南.md
|
||||
docs/03-业务模块/DC-数据清洗整理/01-需求分析/PRD_工具C_科研数据编辑器_V6.md
|
||||
docs/03-业务模块/DC-数据清洗整理/01-需求分析/PRD:Tool A - 医疗数据超级合并器 (The Super Merger).md
|
||||
docs/03-业务模块/DC-数据清洗整理/01-需求分析/PRD:Tool B - 病历结构化机器人 (The AI Structurer).md
|
||||
docs/03-业务模块/DC-数据清洗整理/01-需求分析/PRD:Tool C - 科研数据编辑器 (MVP V1.1).md
|
||||
docs/03-业务模块/DC-数据清洗整理/01-需求分析/PRD:Tool C - 科研数据编辑器.md
|
||||
docs/03-业务模块/DC-数据清洗整理/01-需求分析/PRD:智能数据清洗工作台 (The Data Cleaning Portal).md
|
||||
docs/03-业务模块/DC-数据清洗整理/01-需求分析/总体 PRD:医疗科研智能数据清洗平台.md
|
||||
docs/03-业务模块/DC-数据清洗整理/02-技术设计/API设计文档-DC模块(完整版).md
|
||||
docs/03-业务模块/DC-数据清洗整理/02-技术设计/工具 C:AI 辅助医疗数据清洗场景分级清单.md
|
||||
docs/03-业务模块/DC-数据清洗整理/02-技术设计/总体技术设计文档:医疗科研智能数据清洗平台.md
|
||||
docs/03-业务模块/DC-数据清洗整理/02-技术设计/技术设计文档:工具 A - 医疗数据超级合并器 (The Super Merger).md
|
||||
docs/03-业务模块/DC-数据清洗整理/02-技术设计/技术设计文档:工具 B - 病历结构化机器人 (The AI Structurer).md
|
||||
docs/03-业务模块/DC-数据清洗整理/02-技术设计/技术设计文档:工具 C - 科研数据编辑器 (V7 云端沙箱抗风险版).md
|
||||
docs/03-业务模块/DC-数据清洗整理/02-技术设计/技术设计文档:工具 C - 科研数据编辑器.md
|
||||
docs/03-业务模块/DC-数据清洗整理/02-技术设计/数据库设计文档-DC模块(完整版).md
|
||||
docs/03-业务模块/DC-数据清洗整理/03-UI设计/UIUX 视觉优化建议书.md
|
||||
docs/03-业务模块/DC-数据清洗整理/04-开发计划/DC模块Tool-B开发任务清单.md
|
||||
docs/03-业务模块/DC-数据清洗整理/04-开发计划/DC模块Tool-B开发计划.md
|
||||
docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_AI_Few-shot示例库.md
|
||||
docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_Bug修复总结_2025-12-08.md
|
||||
docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_Day3开发计划.md
|
||||
docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_Day4-5前端开发计划.md
|
||||
docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_MVP开发_TODO清单.md
|
||||
docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_MVP开发计划_V1.0.md
|
||||
docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_NA处理功能开发总结.md
|
||||
docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_Pivot列顺序优化总结.md
|
||||
docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_功能按钮开发计划_V1.0.md
|
||||
docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_方案B实施总结_2025-12-09.md
|
||||
docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_缺失值处理_开发完成说明.md
|
||||
docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_缺失值处理_开发进度_2025-12-10.md
|
||||
docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_缺失值处理功能_更新说明.md
|
||||
docs/03-业务模块/DC-数据清洗整理/04-开发计划/工具C_缺失值处理功能开发计划.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-02_工作总结.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-06_工具C_Day1开发完成总结.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-06_工具C_Day2开发完成总结.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-06_工具C_Day3开发完成总结.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-07_AI对话核心功能增强总结.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-07_Bug修复_DataGrid空数据防御.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-07_Day5_Ant-Design-6.0升级与通用Chat组件开发.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-07_Day5_Ant-Design-X重构完成.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-07_Day5最终总结.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-07_UI优化与Bug修复.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-07_后端API完整对接完成.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-07_完整UI优化与功能增强.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/2025-12-07_工具C_Day4前端基础完成.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/DC模块重建完成总结-Day1.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/Day2完成总结.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/Day3完成总结.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/Phase1-Portal页面开发完成-2025-12-02.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/Phase2-ToolB-Step1-2开发完成-2025-12-03.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/Portal页面UI优化-2025-12-02.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/Tool-B-MVP完成总结-2025-12-03.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/ToolB-UI优化-2025-12-03.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/ToolB-UI优化-Round2-2025-12-03.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/ToolB浏览器测试计划-2025-12-03.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/后端API测试报告-2025-12-02.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/待办事项-下一步工作.md
|
||||
docs/03-业务模块/DC-数据清洗整理/06-开发记录/数据库验证报告-2025-12-02.md
|
||||
docs/03-业务模块/DC-数据清洗整理/07-技术债务/Tool-B技术债务清单.md
|
||||
docs/03-业务模块/DC-数据清洗整理/07-技术债务/Tool-C技术债务清单.md
|
||||
docs/03-业务模块/DC-数据清洗整理/README.md
|
||||
docs/03-业务模块/IIT Manager Agent/00-模块当前状态与开发指南.md
|
||||
docs/03-业务模块/IIT Manager Agent/00-系统设计/IIT Manager Agent V4 完整产品需求文档.md
|
||||
docs/03-业务模块/IIT Manager Agent/00-系统设计/IIT Manager Agent 技术架构白皮书.md
|
||||
docs/03-业务模块/IIT Manager Agent/00-系统设计/IIT Manager Agent 项目实施战略与 MVP 路线图.md
|
||||
docs/03-业务模块/IIT Manager Agent/02-技术设计/IIT Manager Agent 多端交互流程与权限设计 (V1.0).md
|
||||
docs/03-业务模块/IIT Manager Agent/02-技术设计/IIT Manager Agent 多端角色与微信端开发指南.md
|
||||
docs/03-业务模块/IIT Manager Agent/02-技术设计/IIT Manager Agent 完整技术开发方案 (V1.0).md
|
||||
docs/03-业务模块/IIT Manager Agent/02-技术设计/IIT Manager Agent 完整技术开发方案 (V1.1).md
|
||||
docs/03-业务模块/IIT Manager Agent/02-技术设计/IIT Manager Agent 技术路径与架构设计.md
|
||||
docs/03-业务模块/IIT Manager Agent/02-技术设计/IIT Manager Agent 智能问答与混合检索解决方案 (ReAct 业务闭环版).md
|
||||
docs/03-业务模块/IIT Manager Agent/02-技术设计/REDCap 原生录入与 AI Workbench 操作边界划分.md
|
||||
docs/03-业务模块/IIT Manager Agent/02-技术设计/文档 B:EDC 适配器 (REDCap) 技术详细设计 (V1.0).md
|
||||
docs/03-业务模块/IIT Manager Agent/04-开发计划/Day2-开发完成总结.md
|
||||
docs/03-业务模块/IIT Manager Agent/04-开发计划/MVP开发任务清单.md
|
||||
docs/03-业务模块/IIT Manager Agent/04-开发计划/Phase1.5-AI对话能力开发计划.md
|
||||
docs/03-业务模块/IIT Manager Agent/04-开发计划/REDCap对接技术方案与实施指南.md
|
||||
docs/03-业务模块/IIT Manager Agent/04-开发计划/企业微信注册指南.md
|
||||
docs/03-业务模块/IIT Manager Agent/04-开发计划/最小MVP闭环开发计划.md
|
||||
docs/03-业务模块/IIT Manager Agent/06-开发记录/2026-01-04-Dify知识库集成开发记录.md
|
||||
docs/03-业务模块/IIT Manager Agent/06-开发记录/Day2-REDCap实时集成开发完成记录.md
|
||||
docs/03-业务模块/IIT Manager Agent/06-开发记录/Day3-企业微信集成与端到端测试完成记录.md
|
||||
docs/03-业务模块/IIT Manager Agent/06-开发记录/Day3-企业微信集成开发完成记录.md
|
||||
docs/03-业务模块/IIT Manager Agent/06-开发记录/IIT Manager Agent 技术方案审查与补丁.md
|
||||
docs/03-业务模块/IIT Manager Agent/06-开发记录/Phase1.5-AI对话集成REDCap完成记录.md
|
||||
docs/03-业务模块/IIT Manager Agent/06-开发记录/V1.1更新完成报告.md
|
||||
docs/03-业务模块/IIT Manager Agent/07-技术债务/IIT Manager Agent 技术债务清单.md
|
||||
docs/03-业务模块/INST-机构管理端/00-模块当前状态与开发指南.md
|
||||
docs/03-业务模块/INST-机构管理端/README.md
|
||||
docs/03-业务模块/PKB-个人知识库/00-模块当前状态与开发指南.md
|
||||
docs/03-业务模块/PKB-个人知识库/01-需求分析/AI 临床医生与医院知识库 - MVP 阶段产品需求文档 (PRD) V5.0.md
|
||||
docs/03-业务模块/PKB-个人知识库/02-技术设计/01-数据库设计.md
|
||||
docs/03-业务模块/PKB-个人知识库/05-测试文档/与原型图的差距.md
|
||||
docs/03-业务模块/PKB-个人知识库/06-开发记录/2026-01-07-前端迁移与批处理功能完善.md
|
||||
docs/03-业务模块/PKB-个人知识库/06-开发记录/2026-01-07_PKB模块前端V3设计实现.md
|
||||
docs/03-业务模块/PKB-个人知识库/README.md
|
||||
docs/03-业务模块/README.md
|
||||
docs/03-业务模块/RVW-稿件审查系统/00-模块当前状态与开发指南.md
|
||||
docs/03-业务模块/RVW-稿件审查系统/01-需求分析/智能期刊审稿系统 MVP 产品需求文档.md
|
||||
docs/03-业务模块/RVW-稿件审查系统/04-开发计划/RVW模块迁移计划.md
|
||||
docs/03-业务模块/RVW-稿件审查系统/README.md
|
||||
docs/03-业务模块/Redcap/00-模块概览/00-REDCap模块文档导航.md
|
||||
docs/03-业务模块/Redcap/00-模块概览/02-REDCap对接总体方案.md
|
||||
docs/03-业务模块/Redcap/00-模块概览/03-REDCap对接风险评估与技术挑战分析.md
|
||||
docs/03-业务模块/Redcap/00-模块概览/04-生产环境部署决策报告_ECS_vs_SAE.md
|
||||
docs/03-业务模块/Redcap/01-部署与配置/10-REDCap_Docker部署操作手册.md
|
||||
docs/03-业务模块/Redcap/01-部署与配置/13-部署问题排查手册.md
|
||||
docs/03-业务模块/Redcap/03-API对接与开发/33-REDCap二次开发深度指南.md
|
||||
docs/03-业务模块/Redcap/04-参考资料/02-REDCap部署指南与环境要求_旧版.md
|
||||
docs/03-业务模块/Redcap/04-参考资料/03-REDCap本地Docker开发环境部署方案_旧版.md
|
||||
docs/03-业务模块/Redcap/README.md
|
||||
docs/03-业务模块/SSA-智能统计分析/README.md
|
||||
docs/03-业务模块/ST-统计分析工具/README.md
|
||||
docs/04-开发规范/01-数据库设计规范.md
|
||||
docs/04-开发规范/02-API设计规范.md
|
||||
docs/04-开发规范/03-数据库全局视图.md
|
||||
docs/04-开发规范/04-API路由总览.md
|
||||
docs/04-开发规范/05-代码规范.md
|
||||
docs/04-开发规范/06-Git提交规范.md
|
||||
docs/04-开发规范/08-云原生开发规范.md
|
||||
docs/04-开发规范/09-数据库开发规范.md
|
||||
docs/04-开发规范/10-模块认证规范.md
|
||||
docs/04-开发规范/README.md
|
||||
docs/05-部署文档/00-部署架构总览.md
|
||||
docs/05-部署文档/00-阿里云SAE最新真实状态记录.md
|
||||
docs/05-部署文档/01-快速部署SOP-零基础版.md
|
||||
docs/05-部署文档/02-SAE部署完全指南(产品经理版).md
|
||||
docs/05-部署文档/03-Dify-ECS部署完全指南.md
|
||||
docs/05-部署文档/04-Python微服务-SAE容器部署指南.md
|
||||
docs/05-部署文档/05-Node.js后端-SAE容器部署指南.md
|
||||
docs/05-部署文档/06-前端Nginx-SAE容器部署指南.md
|
||||
docs/05-部署文档/07-关键配置补充说明.md
|
||||
docs/05-部署文档/07-前端Nginx-SAE部署操作手册.md
|
||||
docs/05-部署文档/08-PostgreSQL数据库部署操作手册.md
|
||||
docs/05-部署文档/08-部署检查清单.md
|
||||
docs/05-部署文档/09-Python微服务-SAE部署操作手册.md
|
||||
docs/05-部署文档/10-Node.js后端-Docker镜像构建手册.md
|
||||
docs/05-部署文档/11-Node.js后端-SAE部署配置清单.md
|
||||
docs/05-部署文档/12-Node.js后端-SAE部署操作手册.md
|
||||
docs/05-部署文档/13-Node.js后端-镜像修复记录.md
|
||||
docs/05-部署文档/14-Node.js后端-pino-pretty问题修复.md
|
||||
docs/05-部署文档/15-Node.js后端-部署成功总结.md
|
||||
docs/05-部署文档/16-前端Nginx-部署成功总结.md
|
||||
docs/05-部署文档/17-完整部署实战手册-2025版.md
|
||||
docs/05-部署文档/18-部署文档使用指南.md
|
||||
docs/05-部署文档/19-日常更新快速操作手册.md
|
||||
docs/05-部署文档/CTO 代码审查报告:AI临床研究平台部署架构.md
|
||||
docs/05-部署文档/PostgreSQL部署策略-摸底报告.md
|
||||
docs/05-部署文档/README.md
|
||||
docs/05-部署文档/SSL 证书域名SAE配置指南.md
|
||||
docs/05-部署文档/文档修正报告-20251214.md
|
||||
docs/05-部署文档/集成部署补充指南:填补最后的缝隙.md
|
||||
docs/06-测试文档/README.md
|
||||
docs/07-运维文档/01-环境配置指南.md
|
||||
docs/07-运维文档/02-环境变量配置模板.md
|
||||
docs/07-运维文档/03-SAE环境变量配置指南.md
|
||||
docs/07-运维文档/04-Redis改造实施计划.md
|
||||
docs/07-运维文档/05-Redis缓存与队列的区别说明.md
|
||||
docs/07-运维文档/06-长时间任务可靠性分析.md
|
||||
docs/07-运维文档/07-Redis使用需求分析(按模块).md
|
||||
docs/07-运维文档/08-Postgres-Only 全能架构解决方案.md
|
||||
docs/07-运维文档/09-Postgres-Only改造实施计划(完整版).md
|
||||
docs/07-运维文档/10-Postgres-Only改造进度追踪表.md
|
||||
docs/07-运维文档/README.md
|
||||
docs/08-项目管理/01-整体开发计划/README.md
|
||||
docs/08-项目管理/02-里程碑规划/README.md
|
||||
docs/08-项目管理/03-每周计划/2025-11-12-工作总结.md
|
||||
docs/08-项目管理/03-每周计划/2025-11-13-任务19完成总结.md
|
||||
docs/08-项目管理/03-每周计划/2025-11-13-工作总结.md
|
||||
docs/08-项目管理/03-每周计划/2025-11-14-任务19完成总结.md
|
||||
docs/08-项目管理/03-每周计划/2025-11-16-平台基础设施规划完成总结.md
|
||||
docs/08-项目管理/03-每周计划/2025-11-17-平台基础设施实施完成报告.md
|
||||
docs/08-项目管理/03-每周计划/2025-11-17-平台基础设施验证报告.md
|
||||
docs/08-项目管理/03-每周计划/2025-11-18-AI助手工作交接.md
|
||||
docs/08-项目管理/03-每周计划/2025-12-13-Postgres-Only架构改造完成.md
|
||||
docs/08-项目管理/03-每周计划/README.md
|
||||
docs/08-项目管理/03-每周计划/Week2-总结报告.md
|
||||
docs/08-项目管理/04-技术决策/2025-11-18-MSE与ARMS采购决策分析.md
|
||||
docs/08-项目管理/04-技术决策/2025-11-18-PostgreSQL版本选择建议.md
|
||||
docs/08-项目管理/04-技术决策/2025-11-18-阿里云RDS系列选择建议.md
|
||||
docs/08-项目管理/05-技术债务/通用对话服务抽取计划.md
|
||||
docs/08-项目管理/2026-01-11-数据库事故总结.md
|
||||
docs/08-项目管理/PKB前端问题修复报告.md
|
||||
docs/08-项目管理/PKB前端验证指南.md
|
||||
docs/08-项目管理/PKB功能审查报告-阶段0.md
|
||||
docs/08-项目管理/PKB和RVW功能迁移计划.md
|
||||
docs/08-项目管理/PKB精细化优化报告.md
|
||||
docs/08-项目管理/PKB迁移-超级安全执行计划.md
|
||||
docs/08-项目管理/PKB迁移-阶段1完成报告.md
|
||||
docs/08-项目管理/PKB迁移-阶段2完成报告.md
|
||||
docs/08-项目管理/PKB迁移-阶段2进行中.md
|
||||
docs/08-项目管理/PKB迁移-阶段3完成报告.md
|
||||
docs/08-项目管理/PKB迁移-阶段4完成报告.md
|
||||
docs/08-项目管理/README.md
|
||||
docs/08-项目管理/V2.2版本变化说明.md
|
||||
docs/08-项目管理/下一阶段行动计划-V2.0-模块化架构优先.md
|
||||
docs/08-项目管理/下一阶段行动计划-V2.1-务实版.md
|
||||
docs/08-项目管理/下一阶段行动计划-V2.2-前端架构优先版.md
|
||||
docs/08-项目管理/下一阶段行动计划-V2.2-完整版.md
|
||||
docs/09-架构实施/01-Schema隔离架构设计(10个).md
|
||||
docs/09-架构实施/02-数据库连接配置.md
|
||||
docs/09-架构实施/03-云原生部署架构指南.md
|
||||
docs/09-架构实施/04-平台基础设施规划.md
|
||||
docs/09-架构实施/Frontend-v2创建完成报告.md
|
||||
docs/09-架构实施/Prisma配置完成报告.md
|
||||
docs/09-架构实施/README.md
|
||||
docs/09-架构实施/Schema迁移完成报告.md
|
||||
docs/09-架构实施/migration-scripts/README.md
|
||||
docs/09-架构实施/前端模块注册机制实施报告.md
|
||||
docs/09-架构实施/后端代码分层-迁移计划.md
|
||||
docs/09-架构实施/后端代码分层实施报告.md
|
||||
docs/09-架构实施/后端架构增量演进方案.md
|
||||
docs/09-架构实施/快速功能测试报告.md
|
||||
docs/09-架构实施/数据库验证通过.md
|
||||
docs/09-架构实施/模块配置更新报告.md
|
||||
docs/09-架构实施/编码规范-UTF8最佳实践.md
|
||||
docs/README.md
|
||||
docs/_templates/API设计-模板.md
|
||||
docs/_templates/README.md
|
||||
docs/_templates/数据库设计-模板.md
|
||||
docs/_templates/模块README-模板.md
|
||||
docs/文档整理清单.md
|
||||
@@ -74,5 +74,6 @@ models/
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -62,5 +62,6 @@ __version__ = '1.0.0'
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -195,5 +195,6 @@ def get_missing_summary(df: pd.DataFrame) -> dict:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -155,5 +155,6 @@ def apply_filter(
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -319,5 +319,6 @@ def get_unpivot_preview(
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -329,5 +329,6 @@ if __name__ == "__main__":
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -95,5 +95,6 @@ except Exception as e:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -75,5 +75,6 @@ except Exception as e:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -94,5 +94,6 @@ vite.config.*.timestamp-*
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -61,5 +61,6 @@ exec nginx -g 'daemon off;'
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -217,5 +217,6 @@ http {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -564,5 +564,6 @@ export default FulltextDetailDrawer;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -157,5 +157,6 @@ export const useAssets = (activeTab: AssetTabType) => {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -147,5 +147,6 @@ export const useRecentTasks = () => {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -346,5 +346,6 @@ export default DropnaDialog;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -431,5 +431,6 @@ export default MetricTimePanel;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -317,5 +317,6 @@ export default PivotPanel;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -117,5 +117,6 @@ export function useSessionStatus({
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -109,5 +109,6 @@ export interface DataStats {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -105,5 +105,6 @@ export type AssetTabType = 'all' | 'processed' | 'raw';
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -60,5 +60,6 @@ export { default as Placeholder } from './Placeholder';
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1
frontend-v2/src/vite-env.d.ts
vendored
1
frontend-v2/src/vite-env.d.ts
vendored
@@ -40,5 +40,6 @@ interface ImportMeta {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user