Update main.js

This commit is contained in:
EvilChen
2025-01-15 11:43:57 +08:00
committed by GitHub
parent af9b5ffd44
commit bdb969de64

View File

@@ -302,7 +302,7 @@ class CozeCNAsk extends NoiAsk {
}
}
class ChatGMLAsk extends NoiAsk {
class ChatGLMAsk extends NoiAsk {
static name = 'ChatGLM'; // 智谱清言
static url = 'https://chatglm.cn';
@@ -322,6 +322,16 @@ class DoubaoAsk extends NoiAsk {
}
}
class DeepSeekAsk extends NoiAsk {
static name = 'DeepSeek'; // DeepSeek
static url = 'https://chat.deepseek.com';
static submit() {
const btn = document.querySelector('div.f286936b div.ds-icon');
if (btn) btn.click();
}
}
class TongyiAsk extends NoiAsk {
static name = 'TongYi'; // 通义千问
static url = 'https://tongyi.aliyun.com/qianwen';
@@ -405,10 +415,11 @@ window.NoiAsk = {
YouAsk,
CozeCNAsk,
DoubaoAsk,
ChatGMLAsk,
ChatGLMAsk,
TongyiAsk,
GroqAsk,
SunoAsk,
NotebooklmAsk,
JimengAsk,
DeepSeekAsk,
};