diff --git a/andy.json b/andy.json index 5a495a05a..132f8687f 100644 --- a/andy.json +++ b/andy.json @@ -1,6 +1,5 @@ { - "name": "andy", - - "model": "gpt-5.4-mini" - -} \ No newline at end of file + "name": "Pari", + "model": "groq/llama-3.3-70b-versatile", + "embedding": null +} diff --git a/settings.js b/settings.js index 2ea4dee4d..0295ce87f 100644 --- a/settings.js +++ b/settings.js @@ -1,7 +1,7 @@ const settings = { "minecraft_version": "auto", // or specific version like "1.21.6" - "host": "127.0.0.1", // or "localhost", "your.ip.address.here" - "port": 55916, // set to -1 to automatically scan for open ports + "host": "Shifineyy.aternos.me", // or "localhost", "your.ip.address.here" + "port": 46856, // set to -1 to automatically scan for open ports "auth": "offline", // or "microsoft" // the mindserver manages all agents and hosts the UI diff --git a/src/utils/keys.js b/src/utils/keys.js index af77c4d1d..a2d023ae8 100644 --- a/src/utils/keys.js +++ b/src/utils/keys.js @@ -14,7 +14,8 @@ export function getKey(name) { key = process.env[name]; } if (!key) { - throw new Error(`API key "${name}" not found in keys.json or environment variables!`); + console.warn(`API key "${name}" not found in keys.json or environment variables. Some models may not work.`); + return null; } return key; }