mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-08-11 09:45:33 +02:00
More fixes to agent.js, removed jill.json from settings.js
This commit is contained in:
parent
52b4e09981
commit
8644d48fb3
2 changed files with 1 additions and 2 deletions
|
@ -14,7 +14,6 @@ export default
|
||||||
"base_profile": "./profiles/defaults/survival.json", // also see creative.json, god_mode.json
|
"base_profile": "./profiles/defaults/survival.json", // also see creative.json, god_mode.json
|
||||||
"profiles": ((process.env.PROFILES) && JSON.parse(process.env.PROFILES)) || [
|
"profiles": ((process.env.PROFILES) && JSON.parse(process.env.PROFILES)) || [
|
||||||
"./andy.json",
|
"./andy.json",
|
||||||
"./jill.json"
|
|
||||||
// "./profiles/gpt.json",
|
// "./profiles/gpt.json",
|
||||||
// "./profiles/claude.json",
|
// "./profiles/claude.json",
|
||||||
// "./profiles/gemini.json",
|
// "./profiles/gemini.json",
|
||||||
|
|
|
@ -124,7 +124,7 @@ export class Agent {
|
||||||
console.log(this.name, 'received message from', username, ':', message);
|
console.log(this.name, 'received message from', username, ':', message);
|
||||||
|
|
||||||
if (convoManager.isOtherAgent(username)) {
|
if (convoManager.isOtherAgent(username)) {
|
||||||
console.warn('recieved whisper from other bot??')
|
console.warn('received whisper from other bot??')
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
let translation = await handleEnglishTranslation(message);
|
let translation = await handleEnglishTranslation(message);
|
||||||
|
|
Loading…
Add table
Reference in a new issue