Spaces:
Sleeping
Sleeping
| <html lang="zh-CN"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Shensist Theater Matrix 2.0</title> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body> | |
| <div class="matrix-container"> | |
| <div id="chat-box" class="chat-display">【系统】: 维度加载完成,等待主理人指令...</div> | |
| <div class="controls"> | |
| <button class="mode-btn active" onclick="switchMode(this)">🔘 普通演示模式</button> | |
| <button class="mode-btn" onclick="switchMode(this)">🔥 AI 生产工厂</button> | |
| </div> | |
| <div class="ai-producer-console" id="ai-console"> | |
| <input type="text" placeholder="选择模型..." style="width:100%; margin-bottom:10px;"> | |
| <input type="text" placeholder="API 路径..." style="width:100%; margin-bottom:10px;"> | |
| <textarea placeholder="输入场景 Prompt..." style="width:100%;"></textarea> | |
| </div> | |
| <button class="action-btn" id="action-trigger" onclick="runAction()" style="margin-top:20px; padding:15px 30px; background:#ff0000; color:#000; font-weight:bold; border:none; width:100%;">🎬 开启现场演播 (ACTION)</button> | |
| </div> | |
| <script src="script.js"></script> | |
| </body> | |
| </html> | |