feat: replace Whisper with Deepgram ASR + speaker diarization

This commit is contained in:
OpenClaw Bot
2026-02-17 12:14:25 +08:00
parent ff72dd0c56
commit e85038a1fb
8 changed files with 299 additions and 2 deletions

18
frontend/index.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>InsightFlow MVP</title>
<style>
body { font-family: sans-serif; background: #0a0a0a; color: #e0e0e0; padding: 40px; }
h1 { color: #00d4ff; }
.upload { border: 2px dashed #333; padding: 40px; text-align: center; border-radius: 8px; }
.entity { background: rgba(123,44,191,0.3); padding: 2px 6px; border-radius: 4px; }
</style>
</head>
<body>
<h1>InsightFlow</h1>
<p>Phase 1 MVP - 音频转录与实体提取</p>
<div class="upload">拖拽音频文件上传</div>
</body>
</html>