274
274
opacity : 0 ;
275
275
position : absolute;
276
276
background-color : # 333 ;
277
- color : # fff ;
277
+ color : # fff ;
278
278
padding : 5px 10px ;
279
279
border-radius : 3px ;
280
- transition : opacity 0.3s ;
280
+ transition : opacity 0.3s ;
281
281
}
282
282
.verify-btn : hover ::after {
283
283
visibility : visible;
@@ -468,24 +468,16 @@ <h3>(适配 oneapi/newapi 等中转格式)</h3>
468
468
<br>
469
469
<div>仓库地址: <a href="https://github.com/QAbot-zh/query-key" target="_blank" style="color: #1e88e5">QAbot-zh/query-key</a></div><div>点点star 可以自行部署</div>
470
470
<br>
471
+ <p><strong>启用新域名: </strong> <a href="https://check.crond.dev" target="_blank" style="color: #1e88e5">https://check.crond.dev</a></p>
472
+ <br>
471
473
<p><strong>如何使用 :</strong></p>
472
474
<ul>
473
- <div>📝 在表单中输入你的API URL和APIKey</div>
474
- <div>🔍 选择名称或输入您想要测试的模型</div>
475
- <div>🖱️ 测试全在本地进行</div>
476
- <div>🎉 等待结果并查看详细报告</div>
477
475
<div>🕵️ 使用“官转验证”功能确认API的真实性</div>
478
476
<div>🕵️♀️ 使用“温度验证”功能确认API的真实性</div>
479
477
<div>📊 使用“函数验证”功能检测API是否支持FC</div>
480
478
<div>🔒 <strong> beta 功能:支持本地缓存API信息,数据仅本地保留,默认关闭</strong> </div>
481
479
</ul>
482
480
<br>
483
- <p><strong>版本历史:</strong></p>
484
- <div><a href="https://linux.do/t/topic/199694" target="_blank" style="color: #1e88e5">v1.4版本介绍</a></div>
485
- <div><a href="https://linux.do/t/topic/191420" target="_blank" style="color: #1e88e5">v1.3版本介绍</a></div>
486
- <div><a href="https://linux.do/t/topic/190955" target="_blank" style="color: #1e88e5">v1.2版本介绍</a></div>
487
- <div><a href="https://linux.do/t/topic/196537" target="_blank" style="color: #1e88e5">beta功能</a></div>
488
- <br>
489
481
<p><strong>Tips:</strong></p>
490
482
<div>🌱GPT系列,才有官转验证,系统判断仅供参考,原理请看 <a href="https://linux.do/t/topic/191420" target="_blank" style="color: #1e88e5">v1.3版本介绍</a></div>
491
483
<div>🌡️ 温度验证:低温度参数下,大模型回复的稳定性。测试结果仅供参考,原理请看 <a href="https://linux.do/t/topic/195972" target="_blank" style="color: #1e88e5">温度验证</a></div>
@@ -845,7 +837,7 @@ <h3>(适配 oneapi/newapi 等中转格式)</h3>
845
837
function displayResults ( results ) {
846
838
const resultsDiv = document . getElementById ( 'results' ) ;
847
839
let content = '<h2>测试结果</h2>' +
848
- '<h3>(结果仅供参考,防君子不防小人)</h3>' +
840
+ '<h3>(结果仅供参考,防君子不防小人)</h3>' +
849
841
'<div class="copy-buttons">' +
850
842
'<div className="submit-container">' +
851
843
'<button class="check-quota copy-btn" onclick="copyConsistentModels()">复制一致模型</button>' +
@@ -878,7 +870,7 @@ <h3>(适配 oneapi/newapi 等中转格式)</h3>
878
870
<button class="verify-btn blue" data-tooltip="低温度参数下预测序列下一个值,将发起4次请求" onclick="verifyTemperature('${ r . model } ')">
879
871
温度验证
880
872
</button>
881
- ${ / ^ ( g p t - | c h a t g p t - | o 1 - ) / . test ( r . model ) ? `
873
+ ${ / ^ ( g p t - | c h a t g p t - | o 1 - ) / . test ( r . model ) ? `
882
874
<button class="verify-btn ${ officialButtonClass } " data-tooltip="相同种子参数下校验回复相似性和系统指纹,将发起4次请求" onclick="verifyOfficial('${ r . model } ')">
883
875
官转验证
884
876
</button>
@@ -898,7 +890,7 @@ <h3>(适配 oneapi/newapi 等中转格式)</h3>
898
890
<button class="verify-btn blue" data-tooltip="低温度参数下预测序列下一个值,将发起4次请求" onclick="verifyTemperature('${ r . model } ')">
899
891
温度验证
900
892
</button>
901
- ${ / ^ ( g p t - | c h a t g p t - | o 1 - ) / . test ( r . model ) ? `
893
+ ${ / ^ ( g p t - | c h a t g p t - | o 1 - ) / . test ( r . model ) ? `
902
894
<button class="verify-btn ${ officialButtonClass } " data-tooltip="相同种子参数下校验回复相似性和系统指纹,将发起4次请求" onclick="verifyOfficial('${ r . model } ')">
903
895
官转验证
904
896
</button>
@@ -960,7 +952,7 @@ <h3>(适配 oneapi/newapi 等中转格式)</h3>
960
952
961
953
for ( const item of arr ) {
962
954
frequency [ item ] = ( frequency [ item ] || 0 ) + 1 ;
963
-
955
+
964
956
if ( frequency [ item ] > maxCount ) {
965
957
maxCount = frequency [ item ] ;
966
958
mostFrequentElement = item ;
@@ -1029,7 +1021,7 @@ <h3>(适配 oneapi/newapi 等中转格式)</h3>
1029
1021
1030
1022
frequencyCheckResult = findMostFrequent ( responses ) ;
1031
1023
const diffentCount = frequencyCheckResult . count ;
1032
-
1024
+
1033
1025
if ( diffentCount === responses . length ) {
1034
1026
message += "所有响应相同,可能是官方API" ;
1035
1027
} else {
0 commit comments