🚀 Auto-deploy: BrainWind atualizado em 17/07/2026 00:29:26

This commit is contained in:
2026-07-17 00:29:26 +00:00
parent 69ae41d75b
commit d85cb2151b
5 changed files with 3 additions and 2 deletions
Binary file not shown.
Binary file not shown.
+3 -2
View File
@@ -124,7 +124,7 @@ function AuditReportDocument({ report }: { report: AuditReport }) {
} }
function getDeepReasoning(s: any, modelName: string): string { function getDeepReasoning(s: any, modelName: string): string {
const isOpus = modelName.includes("Opus"); const isOpus = modelName.includes("Opus") || modelName.includes("DeepSeek");
switch(s.module) { switch(s.module) {
case 'galpao': case 'galpao':
return isOpus return isOpus
@@ -158,7 +158,8 @@ async function run() {
const modelsToRun = [ const modelsToRun = [
{ provider: 'Antigravity LLM', model: 'Gemini 3.1 Pro', safeName: 'Gemini-3.1-Pro' }, { provider: 'Antigravity LLM', model: 'Gemini 3.1 Pro', safeName: 'Gemini-3.1-Pro' },
{ provider: 'Claude AI', model: 'Claude Opus 4.6 (Thinking)', safeName: 'Claude-Opus-4.6' } { provider: 'Claude AI', model: 'Claude Opus 4.6 (Thinking)', safeName: 'Claude-Opus-4.6' },
{ provider: 'DeepSeek', model: 'DeepSeek R1', safeName: 'DeepSeek-R1' }
]; ];
for (const modelInfo of modelsToRun) { for (const modelInfo of modelsToRun) {