[PR #532] [MERGED] Feat/chat support voice input #22539

Closed
opened 2026-02-21 20:19:11 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify/pull/532
Author: @zxhlyh
Created: 7/7/2023
Status: Merged
Merged: 7/7/2023
Merged by: @zxhlyh

Base: mainHead: feat/chat-support-voice-input


📝 Commits (10+)

📊 Changes

70 files changed (+1419 additions, -25 deletions)

View changed files

📝 .gitignore (+2 -0)
📝 api/controllers/console/__init__.py (+2 -2)
📝 api/controllers/console/app/app.py (+3 -0)
api/controllers/console/app/audio.py (+69 -0)
📝 api/controllers/console/app/error.py (+24 -0)
📝 api/controllers/console/app/model_config.py (+1 -0)
api/controllers/console/explore/audio.py (+66 -0)
📝 api/controllers/console/explore/parameter.py (+2 -0)
📝 api/controllers/service_api/__init__.py (+1 -1)
📝 api/controllers/service_api/app/app.py (+2 -0)
api/controllers/service_api/app/audio.py (+61 -0)
📝 api/controllers/service_api/app/error.py (+24 -0)
📝 api/controllers/web/__init__.py (+1 -1)
📝 api/controllers/web/app.py (+2 -0)
api/controllers/web/audio.py (+63 -0)
📝 api/controllers/web/error.py (+24 -0)
api/core/llm/whisper.py (+25 -0)
api/migrations/versions/a5b56fb053ef_app_config_add_speech_to_text.py (+32 -0)
📝 api/models/model.py (+10 -0)
📝 api/services/app_model_config_service.py (+22 -0)

...and 50 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langgenius/dify/pull/532 **Author:** [@zxhlyh](https://github.com/zxhlyh) **Created:** 7/7/2023 **Status:** ✅ Merged **Merged:** 7/7/2023 **Merged by:** [@zxhlyh](https://github.com/zxhlyh) **Base:** `main` ← **Head:** `feat/chat-support-voice-input` --- ### 📝 Commits (10+) - [`826c1a5`](https://github.com/langgenius/dify/commit/826c1a59ca7a0307e74bc6a0f35340e75c3a60ba) for testing on mobile phone - [`cfaf6ee`](https://github.com/langgenius/dify/commit/cfaf6ee66f390fb8f7861da80b137636d75c6001) fix ui - [`bd15cec`](https://github.com/langgenius/dify/commit/bd15cec79426d1766803f3439ec58b36686aec1b) fix ui - [`fe0cb6f`](https://github.com/langgenius/dify/commit/fe0cb6f8beb5db2fdc7a1c479f05400a76b8fe4f) fix ui - [`3d91d03`](https://github.com/langgenius/dify/commit/3d91d0326b752e09f1b8153b0c8950cd5d3d6da0) fix ui - [`fa55e1c`](https://github.com/langgenius/dify/commit/fa55e1c11d89716d53efb4c76494068387140a9d) Merge branch 'main' into feat/chat-support-voice-input - [`dbecab7`](https://github.com/langgenius/dify/commit/dbecab70c48eb5243a02eb0d2b653208df6119da) add audio-to-text api - [`66fa553`](https://github.com/langgenius/dify/commit/66fa5537b8afa0acc4d4de3ba858424bc5cb5bee) fix cycle import - [`0b928a0`](https://github.com/langgenius/dify/commit/0b928a0ad5dcd29fac27bee1acab083128658acf) convert audio file to bytes - [`3f22fdd`](https://github.com/langgenius/dify/commit/3f22fdd05898d65f55f8d743911f9ecb12592824) Merge branch 'main' into feat/chat-support-voice-input ### 📊 Changes **70 files changed** (+1419 additions, -25 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -0) 📝 `api/controllers/console/__init__.py` (+2 -2) 📝 `api/controllers/console/app/app.py` (+3 -0) ➕ `api/controllers/console/app/audio.py` (+69 -0) 📝 `api/controllers/console/app/error.py` (+24 -0) 📝 `api/controllers/console/app/model_config.py` (+1 -0) ➕ `api/controllers/console/explore/audio.py` (+66 -0) 📝 `api/controllers/console/explore/parameter.py` (+2 -0) 📝 `api/controllers/service_api/__init__.py` (+1 -1) 📝 `api/controllers/service_api/app/app.py` (+2 -0) ➕ `api/controllers/service_api/app/audio.py` (+61 -0) 📝 `api/controllers/service_api/app/error.py` (+24 -0) 📝 `api/controllers/web/__init__.py` (+1 -1) 📝 `api/controllers/web/app.py` (+2 -0) ➕ `api/controllers/web/audio.py` (+63 -0) 📝 `api/controllers/web/error.py` (+24 -0) ➕ `api/core/llm/whisper.py` (+25 -0) ➕ `api/migrations/versions/a5b56fb053ef_app_config_add_speech_to_text.py` (+32 -0) 📝 `api/models/model.py` (+10 -0) 📝 `api/services/app_model_config_service.py` (+22 -0) _...and 50 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-21 20:19:11 -05:00
yindo closed this issue 2026-02-21 20:19:11 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#22539