Kode-cli/snake_demo/index.html
CrazyBoyM 02c7c31a31 feat: Add GPT-5 Responses API support and model adapter system
- Implement model adapter factory for unified API handling
- Add response state manager for conversation continuity
- Support GPT-5 Responses API with continuation tokens
- Add model capabilities type system
- Include deployment guide and test infrastructure
- Enhance error handling and debugging for model interactions
2025-08-22 13:22:48 +08:00

26 lines
900 B
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>贪吃蛇游戏</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="game-container">
<h1>贪吃蛇游戏</h1>
<div class="game-info">
<div class="score">得分: <span id="score">0</span></div>
<div class="high-score">最高分: <span id="high-score">0</span></div>
</div>
<canvas id="gameCanvas" width="400" height="400"></canvas>
<div class="controls">
<p>使用方向键控制蛇的移动</p>
<button id="startBtn">开始游戏</button>
<button id="pauseBtn">暂停</button>
<button id="resetBtn">重新开始</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>