feat: 新增语音转文字(ASR)功能
- 后端:新增 /api/audio/transcribe 接口,调用 Ollama whisper 进行语音识别 - 前端:新增 AudioTranscribePage.vue 页面,支持 MP3/WAV/M4A/OGG/FLAC 等格式 - 注册路由、工具卡片、智能助手欢迎语更新 Co-Authored-By: Claude Code <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
# Go 构建产物
|
||||
backend-go/bin/
|
||||
|
||||
# 运行时数据(数据库 + 素材文件)
|
||||
backend-go/data/
|
||||
|
||||
# 前端
|
||||
frontend/node_modules/
|
||||
frontend/dist/
|
||||
|
||||
# 本地知识服务
|
||||
knowledge_service/data/
|
||||
knowledge_service/__pycache__/
|
||||
|
||||
# 环境变量
|
||||
.env
|
||||
backend-go/.env
|
||||
|
||||
# AI 敏感凭证(API Key 等,不入 Git)
|
||||
backend-go/deploy/ai_secrets.json
|
||||
backend-go/config/ai_secrets.json
|
||||
|
||||
# 本地编译产物
|
||||
backend-go/server
|
||||
|
||||
# 调试日志
|
||||
debuglog/
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
Reference in New Issue
Block a user