Finished the Grok LLM implementation

This commit is contained in:
3byss
2026-03-20 00:46:44 -06:00
parent c3c06ff586
commit 17b8d9ed87
5 changed files with 63 additions and 4 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 | mistral
provider: process.env.LLM_PROVIDER || null, // anthropic | openai | gemini | codex | openrouter | minimax | mistral | grok
apiKey: process.env.LLM_API_KEY || null,
model: process.env.LLM_MODEL || null,
},