Add Mistral AI as LLM provider

This commit is contained in:
nirae
2026-03-16 21:32:47 +01:00
committed by calesthio
parent 3fed206e59
commit 4af53ab25a
6 changed files with 345 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ export default {
refreshIntervalMinutes: parseInt(process.env.REFRESH_INTERVAL_MINUTES) || 15,
llm: {
provider: process.env.LLM_PROVIDER || null, // anthropic | openai | gemini | codex | openrouter | minimax
provider: process.env.LLM_PROVIDER || null, // anthropic | openai | gemini | codex | openrouter | minimax | mistral
apiKey: process.env.LLM_API_KEY || null,
model: process.env.LLM_MODEL || null,
},