We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 783b4a6 + 002026c commit 8ca814dCopy full SHA for 8ca814d
.env.example
@@ -22,6 +22,7 @@ SHARE_INTERVAL=
22
RECALIBRATE_INTERVAL=
23
RECALIBRATE_AI_INTERVAL=
24
REALTIME_MINUTES=
25
+AI_MODEL=
26
AI_MINUTES=
27
ENABLE_BUTTONS=
28
TELEGRAM_TOKEN=
src/calibrate/ai.js
@@ -21,7 +21,7 @@ const aai = async () => {
21
);
const body = {
- model: "gemma3:1b",
+ model: process.env.AI_MODEL || "llama3.2:1b",
messages: [
{
role: "system",
0 commit comments