Files
ai-chat-app-v4/www/index.html
hubian de54d15d10 feat: AI Chat App v3.15.1 初始版本
- 大模型配置支持思考模式和视觉能力属性
- 前端根据LLM能力显示/隐藏深度思考和图片上传功能
- 后台管理系统:用户管理、LLM配置、智能体管理、工具配置
- TTS语音播放、Markdown显示、历史对话管理
- 智能体对话系统

端口: 19021
后台管理: admin / admin123
2026-04-29 12:29:53 +08:00

19 lines
660 B
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="theme-color" content="#667eea">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<title>AI助手</title>
<link rel="stylesheet" href="style.css?v=3.5.1">
<link rel="manifest" href="manifest.json">
</head>
<body>
<div id="app"></div>
<script src="marked.min.js?v=3.5.1"></script>
<script src="app.js?v=3.5.1"></script>
</body>
</html>