Update brain.mjs

This commit is contained in:
Arma-Damna-Dillo 2025-02-08 01:05:08 +00:00
parent adaa81c348
commit 131f97cb42

View file

@ -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;
}