clean logs

This commit is contained in:
MaxRobinsonTheGreat 2025-04-22 12:19:32 -05:00
parent 89cf66445a
commit 0b20d94f7d
2 changed files with 0 additions and 3 deletions

View file

@ -55,7 +55,6 @@ export class Agent {
if (load_mem) {
save_data = this.history.load();
}
console.log(save_data);
let taskStart = null;
if (save_data) {
taskStart = save_data.taskStart;

View file

@ -337,8 +337,6 @@ export class Prompter {
try {
generation = await this.chat_model.sendRequest(messages, prompt);
let task_id = this.agent.task.task_id
console.log(task_id)
if (typeof generation !== 'string') {
console.error('Error: Generated response is not a string', generation);
throw new Error('Generated response is not a string');