Update GraphPanel.vue and WorkbenchPanel.vue for improved UI and clarity

- Changed maximize button icon for better visual representation.
- Revised descriptions in WorkbenchPanel.vue to enhance clarity and context regarding ontology generation and graph building processes.
- Updated step titles and descriptions to reflect more accurate terminology and user guidance.
This commit is contained in:
666ghj 2025-12-11 14:05:44 +08:00
parent ba6f63fcbd
commit 860677b104
2 changed files with 5 additions and 6 deletions

View file

@ -9,7 +9,7 @@
<span class="btn-text">Refresh</span>
</button>
<button class="tool-btn" @click="$emit('toggle-maximize')" title="最大化/还原">
<span class="icon-maximize">×</span>
<span class="icon-maximize"></span>
</button>
</div>
</div>

View file

@ -18,7 +18,7 @@
<div class="card-content">
<p class="api-note">POST /api/graph/ontology/generate</p>
<p class="description">
上传文档后LLM分析文档内容自动生成适合舆论模拟的本体结构实体类型 + 关系类型
LLM分析文档内容与模拟需求梳理出现实种子自动生成合适的本体结构
</p>
<!-- Loading / Progress -->
@ -110,7 +110,7 @@
<div class="card-header">
<div class="step-info">
<span class="step-num">02</span>
<span class="step-title">图谱构建</span>
<span class="step-title">GraphRAG构建</span>
</div>
<div class="step-status">
<span v-if="currentPhase > 1" class="badge success">已完成</span>
@ -122,7 +122,7 @@
<div class="card-content">
<p class="api-note">POST /api/graph/build</p>
<p class="description">
基于生成的本体将文档分块后调用 Zep API 构建知识图谱提取实体和关系
基于生成的本体将文档自动分块后调用 Zep 构建知识图谱提取实体和关系并形成时序记忆与社区摘要
</p>
<!-- Stats Cards -->
@ -156,7 +156,7 @@
</div>
<div class="card-content">
<p class="description">图谱构建已完成请进入下一步进行环境参数配置</p>
<p class="description">图谱构建已完成请进入下一步进行模拟环境搭建</p>
<button
class="action-btn"
:disabled="currentPhase < 2"
@ -290,7 +290,6 @@ watch(() => props.systemLogs.length, () => {
.step-title {
font-weight: 600;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 0.5px;
}