Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions andy.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"name": "andy",

"model": "gpt-5.4-mini"

}
"name": "Pari",
"model": "groq/llama-3.3-70b-versatile",
"embedding": null
}
4 changes: 2 additions & 2 deletions settings.js
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion src/utils/keys.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down