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:
parent
ba6f63fcbd
commit
860677b104
2 changed files with 5 additions and 6 deletions
|
|
@ -9,7 +9,7 @@
|
||||||
<span class="btn-text">Refresh</span>
|
<span class="btn-text">Refresh</span>
|
||||||
</button>
|
</button>
|
||||||
<button class="tool-btn" @click="$emit('toggle-maximize')" title="最大化/还原">
|
<button class="tool-btn" @click="$emit('toggle-maximize')" title="最大化/还原">
|
||||||
<span class="icon-maximize">×</span>
|
<span class="icon-maximize">⛶</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p class="api-note">POST /api/graph/ontology/generate</p>
|
<p class="api-note">POST /api/graph/ontology/generate</p>
|
||||||
<p class="description">
|
<p class="description">
|
||||||
上传文档后,LLM分析文档内容,自动生成适合舆论模拟的本体结构(实体类型 + 关系类型)。
|
LLM分析文档内容与模拟需求,梳理出现实种子,自动生成合适的本体结构
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<!-- Loading / Progress -->
|
<!-- Loading / Progress -->
|
||||||
|
|
@ -110,7 +110,7 @@
|
||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<div class="step-info">
|
<div class="step-info">
|
||||||
<span class="step-num">02</span>
|
<span class="step-num">02</span>
|
||||||
<span class="step-title">图谱构建</span>
|
<span class="step-title">GraphRAG构建</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="step-status">
|
<div class="step-status">
|
||||||
<span v-if="currentPhase > 1" class="badge success">已完成</span>
|
<span v-if="currentPhase > 1" class="badge success">已完成</span>
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p class="api-note">POST /api/graph/build</p>
|
<p class="api-note">POST /api/graph/build</p>
|
||||||
<p class="description">
|
<p class="description">
|
||||||
基于生成的本体,将文档分块后调用 Zep API 构建知识图谱,提取实体和关系。
|
基于生成的本体,将文档自动分块后调用 Zep 构建知识图谱,提取实体和关系,并形成时序记忆与社区摘要
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<!-- Stats Cards -->
|
<!-- Stats Cards -->
|
||||||
|
|
@ -156,7 +156,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<p class="description">图谱构建已完成,请进入下一步进行环境参数配置。</p>
|
<p class="description">图谱构建已完成,请进入下一步进行模拟环境搭建</p>
|
||||||
<button
|
<button
|
||||||
class="action-btn"
|
class="action-btn"
|
||||||
:disabled="currentPhase < 2"
|
:disabled="currentPhase < 2"
|
||||||
|
|
@ -290,7 +290,6 @@ watch(() => props.systemLogs.length, () => {
|
||||||
.step-title {
|
.step-title {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
text-transform: uppercase;
|
|
||||||
letter-spacing: 0.5px;
|
letter-spacing: 0.5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue