You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.5 KiB
HTML
36 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>AI Chat</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="${styleUri}" />
|
|
</head>
|
|
<body>
|
|
<div class="chat-container">
|
|
<div id="chat-box"></div>
|
|
|
|
<!-- 添加上下文区域 -->
|
|
<!-- <div class="context-area">
|
|
<button id="add-context-btn">+ 添加上下文</button>
|
|
<div class="context-options">
|
|
<span>智能问答</span>
|
|
<select id="mode-select">
|
|
<option value="auto">Auto</option>
|
|
<option value="manual">Manual</option>
|
|
</select>
|
|
<label for="tool-checkbox"><input type="checkbox" id="tool-checkbox"> 工具</label>
|
|
</div>
|
|
<div class="keybinds">Shift+Enter 换行/Enter 发送 →</div>
|
|
</div> -->
|
|
|
|
<!-- 聊天输入表单 -->
|
|
<form id="chat-form">
|
|
<input type="text" id="user-input" placeholder="输入你的问题..." required />
|
|
<button type="submit">发送</button>
|
|
</form>
|
|
<div id="loading" class="hidden">AI 正在思考...</div>
|
|
</div>
|
|
<script src="${scriptUri}"></script>
|
|
</body>
|
|
</html> |