-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (73 loc) · 2.54 KB
/
Copy pathindex.html
File metadata and controls
80 lines (73 loc) · 2.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>How I use AI — kidcvs</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="site-header">
<div class="container">
<h1>How I use AI</h1>
<p class="subtitle">我如何使用 AI — 工具、工作流与提示(示例页面)</p>
</div>
</header>
<main class="container">
<nav class="toc">
<h3>目录</h3>
<ul>
<li><a href="#overview">概览</a></li>
<li><a href="#tools">工具</a></li>
<li><a href="#workflows">工作流</a></li>
<li><a href="#prompts">常用提示</a></li>
<li><a href="#privacy">隐私 & 流程</a></li>
</ul>
</nav>
<section class="content">
<article id="overview">
<h2>概览</h2>
<p>这是一个说明我如何使用 AI 的页面:列出工具、工作流、以及一些示例提示(prompts)。你可以把每个段落改成你自己的经验或链接。</p>
</article>
<article id="tools">
<h2>工具</h2>
<ul class="card-list">
<li class="card">
<h4>聊天模型</h4>
<p>例如:ChatGPT、Claude、Llama 家族(本地部署)等。</p>
</li>
<li class="card">
<h4>代码辅助</h4>
<p>Copilot、CodeWhisperer 等,用于代码补全与重构。</p>
</li>
<li class="card">
<h4>多模态</h4>
<p>图像生成、图像编辑,以及文档解析工具。</p>
</li>
</ul>
</article>
<article id="workflows">
<h2>工作流</h2>
<ol>
<li>定义目标(明确问题、预期输出)</li>
<li>挑选合适工具(本地/云、模型尺寸)</li>
<li>迭代 prompt 并记录版本</li>
<li>后处理与人类审查</li>
</ol>
</article>
<article id="prompts">
<h2>常用提示</h2>
<pre class="prompt">你是专家。请在 3 点内给出要点,并给出示例。</pre>
</article>
<article id="privacy">
<h2>隐私与安全</h2>
<p>在共享敏感数据前请先审查;如果需要可在本地部署模型或对输入做脱敏处理。</p>
</article>
</section>
</main>
<footer class="site-footer container">
<p>Built with coding support from Claude through Cursor.</p>
<p>© kidcvs · 基于 GitHub Pages</p>
</footer>
</body>
</html>