-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidepanel.html
More file actions
43 lines (39 loc) · 1.54 KB
/
sidepanel.html
File metadata and controls
43 lines (39 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OpenPM Side Panel</title>
<link rel="stylesheet" href="sidepanel.css" />
</head>
<body>
<main class="layout">
<header class="topbar">
<div>
<h1>OpenPM</h1>
<p id="modelInfo" class="meta"></p>
</div>
<button id="openSettingsBtn" class="ghost">设置</button>
</header>
<section class="quick-tools">
<select id="conversationSelect" title="历史对话"></select>
<button id="newChatBtn">新建对话</button>
<button id="insertPageBtn">读取当前页面</button>
<button id="insertSelectionBtn">读取选中文本</button>
<button id="clearChatBtn">清空对话</button>
</section>
<section id="chatList" class="chat"></section>
<section class="composer">
<textarea id="messageInput" rows="5" placeholder="输入你的需求或继续追问,例如:请补充数据库设计并细化 API 字段"></textarea>
<div class="composer-actions">
<button id="sendBtn" class="primary">发送</button>
<button id="stopBtn" class="warn" disabled>停止回复</button>
<button id="copyLastBtn">复制最后一条</button>
<button id="downloadLastBtn">下载 prd.md</button>
</div>
<p id="status" class="status"></p>
</section>
</main>
<script src="sidepanel.js" type="module"></script>
</body>
</html>