[mirotalksfu] - fix deepseek in the chat, update dep
هذا الالتزام موجود في:
@@ -316,6 +316,7 @@ SHOW_CHAT_EMOJI=true # Show chat emoji button (true
|
|||||||
SHOW_CHAT_MARKDOWN=true # Show chat markdown button (true|false)
|
SHOW_CHAT_MARKDOWN=true # Show chat markdown button (true|false)
|
||||||
SHOW_CHAT_SPEECH=true # Show chat speech button (true|false)
|
SHOW_CHAT_SPEECH=true # Show chat speech button (true|false)
|
||||||
ENABLE_CHAT_GPT=true # Enable ChatGPT in chat (true|false)
|
ENABLE_CHAT_GPT=true # Enable ChatGPT in chat (true|false)
|
||||||
|
ENABLE_DEEP_SEEK=true # Enable DeepSeek in chat (true|false)
|
||||||
|
|
||||||
# Poll Controls
|
# Poll Controls
|
||||||
SHOW_POLL_PIN=true # Show poll pin button (true|false)
|
SHOW_POLL_PIN=true # Show poll pin button (true|false)
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ dev dependencies: {
|
|||||||
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
|
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
|
||||||
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
|
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
|
||||||
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
|
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
|
||||||
* @version 1.8.50
|
* @version 1.8.51
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -1137,6 +1137,7 @@ module.exports = {
|
|||||||
chatMarkdownButton: process.env.SHOW_CHAT_MARKDOWN !== 'false',
|
chatMarkdownButton: process.env.SHOW_CHAT_MARKDOWN !== 'false',
|
||||||
chatSpeechStartButton: process.env.SHOW_CHAT_SPEECH !== 'false',
|
chatSpeechStartButton: process.env.SHOW_CHAT_SPEECH !== 'false',
|
||||||
chatGPT: process.env.ENABLE_CHAT_GPT !== 'false',
|
chatGPT: process.env.ENABLE_CHAT_GPT !== 'false',
|
||||||
|
deepSeek: process.env.ENABLE_DEEP_SEEK !== 'false',
|
||||||
},
|
},
|
||||||
|
|
||||||
// Poll interface controls
|
// Poll interface controls
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mirotalksfu",
|
"name": "mirotalksfu",
|
||||||
"version": "1.8.50",
|
"version": "1.8.51",
|
||||||
"description": "WebRTC SFU browser-based video calls",
|
"description": "WebRTC SFU browser-based video calls",
|
||||||
"main": "Server.js",
|
"main": "Server.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@aws-sdk/client-s3": "^3.817.0",
|
"@aws-sdk/client-s3": "^3.817.0",
|
||||||
"@aws-sdk/lib-storage": "^3.817.0",
|
"@aws-sdk/lib-storage": "^3.817.0",
|
||||||
"@mattermost/client": "10.7.0",
|
"@mattermost/client": "10.8.0",
|
||||||
"@ngrok/ngrok": "1.5.1",
|
"@ngrok/ngrok": "1.5.1",
|
||||||
"@sentry/node": "^9.22.0",
|
"@sentry/node": "^9.22.0",
|
||||||
"async-mutex": "^0.5.0",
|
"async-mutex": "^0.5.0",
|
||||||
@@ -92,7 +92,7 @@
|
|||||||
"uuid": "11.1.0"
|
"uuid": "11.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.27.1",
|
"@babel/core": "^7.27.3",
|
||||||
"@babel/preset-env": "^7.27.2",
|
"@babel/preset-env": "^7.27.2",
|
||||||
"babel-loader": "^10.0.0",
|
"babel-loader": "^10.0.0",
|
||||||
"mocha": "^11.5.0",
|
"mocha": "^11.5.0",
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ if (location.href.substr(0, 5) !== 'https') location.href = 'https' + location.h
|
|||||||
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
|
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
|
||||||
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
|
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
|
||||||
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
|
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
|
||||||
* @version 1.8.50
|
* @version 1.8.51
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
|
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
|
||||||
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
|
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
|
||||||
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
|
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
|
||||||
* @version 1.8.50
|
* @version 1.8.51
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
المرجع في مشكلة جديدة
حظر مستخدم