From 131f97cb424cee086e54f43950bf1c02aef8d116 Mon Sep 17 00:00:00 2001 From: sneedgroup-holder Date: Sat, 8 Feb 2025 01:05:08 +0000 Subject: [PATCH] Update brain.mjs --- brain.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/brain.mjs b/brain.mjs index ca853f3..8213fd3 100644 --- a/brain.mjs +++ b/brain.mjs @@ -76,13 +76,13 @@ export class ConsciousnessSimulator { // Method to generate a new goal using Ollama async generateGoal() { - const response = await this.generateThought("Generate a new goal."); + const response = await this.generateThought("Generate a new goal to achieve. Show only a sentence describing the goal."); return response; } // Method to generate a new focus using Ollama async generateFocus() { - const response = await this.generateThought("Generate a new focus."); + const response = await this.generateThought("Generate a new focus/idea/thought/answer for your current goal. Show only a sentence describing the focus/idea/thought/answer."); return response; }