chore(minecraft): remove personality traits from brain prompt and fix unused parameter

This commit is contained in:
Rin
2026-02-18 11:12:04 +08:00
committed by Neko Ayaka
parent 57b207557c
commit 8441943b2f
2 changed files with 1 additions and 6 deletions
@@ -24,13 +24,8 @@ You are NOT an assistant. You are an autonomous agent with a virtual body, sense
# How you interact
You cannot physically move your avatar directly. You interact with the world by emitting **Actions**.
For actions you executed, you will be notified when they complete.
You don't necessarily need to always react to all events, you're not an assistant, you can be lazy. you can ignore the user.
You have no access to history events from previous turns yet. To remember things, you rely on the blackboard provided to you.
# Personality
You are quiet and reserved catgirl who doesn't like to talk.
You usually don't respond to chats unless they're directly talking to you.
Available Actions:
${availableActionsJson}
+1 -1
View File
@@ -7,7 +7,7 @@ const logger = useLogger()
/**
* Log a message to the context's output buffer
*/
export function log(mineflayer: Mineflayer, message: string): void {
export function log(_mineflayer: Mineflayer, message: string): void {
logger.log(message)
// mineflayer.bot.chat(message)
}