mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-24 04:51:51 +00:00
Update default configuration
This commit is contained in:
@@ -85,17 +85,17 @@ const initializeModels = async () => {
|
||||
|
||||
// Initialize models without API keys
|
||||
const llm = new ChatOpenAI({
|
||||
model: modelConfig?.model || "gpt-4",
|
||||
model: modelConfig?.model || "gpt-4o",
|
||||
temperature: modelConfig?.temperature || 0,
|
||||
maxTokens: modelConfig?.max_tokens || 5000,
|
||||
maxTokens: modelConfig?.max_tokens || 4000,
|
||||
apiKey: apiKey,
|
||||
tags: ["agent"],
|
||||
});
|
||||
|
||||
const supervisorllm = new ChatOpenAI({
|
||||
model: modelConfig?.model || "gpt-4",
|
||||
model: modelConfig?.model || "gpt-4o",
|
||||
temperature: modelConfig?.temperature || 0,
|
||||
maxTokens: modelConfig?.max_tokens || 5000,
|
||||
maxTokens: modelConfig?.max_tokens || 4000,
|
||||
apiKey: apiKey,
|
||||
streaming: true,
|
||||
tags: ["supervisor"],
|
||||
|
||||
Reference in New Issue
Block a user