41 lines
1.4 KiB
HTML
Executable File
41 lines
1.4 KiB
HTML
Executable File
<!doctype html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>AI古诗生成器</title>
|
||
<link rel="stylesheet" href="/aimodelapp/shared/compact-styles.css">
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<div class="header">
|
||
<h1 class="title">AI古诗生成器</h1>
|
||
<p class="subtitle">让人工智能为您创作优美的中国古诗</p>
|
||
</div>
|
||
|
||
<!-- GitHub令牌已内置,无需用户输入 -->
|
||
|
||
<div class="form-group">
|
||
<label class="form-label" for="theme">作诗主题:</label>
|
||
<textarea
|
||
id="theme"
|
||
class="form-input textarea"
|
||
placeholder="请输入您想要的古诗主题,例如:春天的江南水乡、秋日的思乡之情、雪夜的孤独等..."
|
||
>春天的江南水乡</textarea>
|
||
</div>
|
||
|
||
<button id="generateBtn" class="btn">生成古诗</button>
|
||
|
||
<div class="result-section">
|
||
<h3 class="result-title">生成的古诗</h3>
|
||
<div id="loading" class="loading">正在创作中,请稍候...</div>
|
||
<div id="poemOutput" class="poem-output">点击"生成古诗"按钮,AI将为您创作优美的古诗</div>
|
||
</div>
|
||
</div>
|
||
|
||
<script src="/aimodelapp/shared/ai-prompts.js"></script>
|
||
<script src="env.js"></script>
|
||
<script src="/aimodelapp/shared/ai-chat.js"></script>
|
||
<script src="script.js"></script>
|
||
</body>
|
||
</html> |