Deploy Inicial do SteelCheck com Docker Build Automatizado

This commit is contained in:
2026-06-22 22:39:36 +00:00
parent cc3effed2f
commit 8ae7d27525
4 changed files with 9 additions and 7 deletions
+3 -3
View File
@@ -1,5 +1,6 @@
import { GoogleGenAI, Type } from "@google/genai";
import type { ReportData, AIProvider } from '../types/providers';
import type { AIProvider } from '../types/providers';
import type { ReportData } from '../types';
interface AnalyzeOptions {
provider: AIProvider;
@@ -512,8 +513,7 @@ export const analyzeWithMinimax = async (file: File, apiKey: string, model: stri
]
}
],
temperature: 0.1,
response_format: { type: 'json_object' }
temperature: 0.1
})
});