[mirotalksfu] - fix deepseek in the chat, update dep

هذا الالتزام موجود في:
Miroslav Pejic
2025-05-28 12:27:32 +02:00
الأصل a2c8c15777
التزام 0014f6ad43
6 ملفات معدلة مع 8 إضافات و6 حذوفات

عرض الملف

@@ -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_SPEECH=true # Show chat speech button (true|false)
ENABLE_CHAT_GPT=true # Enable ChatGPT in chat (true|false)
ENABLE_DEEP_SEEK=true # Enable DeepSeek in chat (true|false)
# Poll Controls
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 CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @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',
chatSpeechStartButton: process.env.SHOW_CHAT_SPEECH !== 'false',
chatGPT: process.env.ENABLE_CHAT_GPT !== 'false',
deepSeek: process.env.ENABLE_DEEP_SEEK !== 'false',
},
// Poll interface controls

عرض الملف

@@ -1,6 +1,6 @@
{
"name": "mirotalksfu",
"version": "1.8.50",
"version": "1.8.51",
"description": "WebRTC SFU browser-based video calls",
"main": "Server.js",
"scripts": {
@@ -59,7 +59,7 @@
"dependencies": {
"@aws-sdk/client-s3": "^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",
"@sentry/node": "^9.22.0",
"async-mutex": "^0.5.0",
@@ -92,7 +92,7 @@
"uuid": "11.1.0"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/core": "^7.27.3",
"@babel/preset-env": "^7.27.2",
"babel-loader": "^10.0.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 CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @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 CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.8.50
* @version 1.8.51
*
*/