Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ const handleCopyToEdge = (text) => {
<main class="main">
<header class="main-header">
<div class="main-title">
<h2><span>🎓</span>论文智能体写作助手(单页)</h2>
<small>Based on Intel OPEA Architecture</small>
<h2><span>🎓</span>科研论文智能体</h2>
<!-- <small>Based on Intel OPEA Architecture</small> -->
</div>
<button class="btn" type="button" @click="goCloud">
☁️ 进入云端页面
☁️ 访问云端RAG系统
</button>
</header>

Expand Down
10 changes: 5 additions & 5 deletions src/components/EdgeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,35 +115,35 @@ const copyResult = async () => {
<div class="card">
<h3>🔒 本地隐私写作空间</h3>
<p class="caption">
⚠️ 此处数据仅在本地 Intel Core Ultra NPU 上处理,断网可用。 [cite: 30]
此处数据仅在本地 Intel Core Ultra NPU 上处理,断网可用。
</p>

<div class="grid-2" style="margin-top:10px;">
<!-- 左:编辑器 + 本地文件 -->
<div>
<label style="font-size:13px;">上传本地文件 (TXT/PDF)</label>

<input
class="file-input"
type="file"
accept=".txt,application/pdf"
@change="onFileChange"
/>
<label style="font-size:13px;">支持文件格式(TXT/PDF)</label>
<div class="caption" style="white-space: pre-wrap;" v-if="fileStatus">
{{ fileStatus }}
</div>

<textarea
v-model="edgeText"
class="textarea"
placeholder="请将云端生成的内容粘贴至此,或直接开始写作..."
placeholder="请将论文内容粘贴至此..."
></textarea>
</div>

<!-- 右:智能工具箱 -->
<div class="toolbox">
<div>
<div style="font-weight:600; margin-bottom:4px;">🛠️ 智能工具箱</div>
<small>Powered by OpenVINO</small>
<!-- <small>Powered by OpenVINO</small> -->
</div>

<button
Expand Down
8 changes: 4 additions & 4 deletions src/components/Sidebar.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<template>
<aside class="sidebar">
<div>
<h1><span>🎓</span> 论文智能体</h1>
<small>基于 Intel OPEA 架构的云边协同写作助手</small>
<h1><span>🎓</span> 科研论文智能体</h1>
<small>基于 Intel云边协同软硬一体化架构</small>
</div>

<div class="sidebar-section">
Expand All @@ -22,9 +22,9 @@
<h2>💻 边端环境 (Edge)</h2>
<div class="sb-badge info">
🔵 设备: Intel AI PC
</div>
</div><br />
<small>芯片: Intel Core Ultra 7</small><br />
<small>模型: Deepseek R1 14b (INT4)</small>
<small>模型: Deepseek R1 14b </small>

<div class="sb-progress-wrapper">
<div class="sb-progress-label">
Expand Down