Skip to content

Commit f9a7188

Browse files
committed
wip
1 parent 8ec60d6 commit f9a7188

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/core/agents/handlers/createWorkerHandler.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,10 @@ export const createWorkerHandler = ({
6262
},
6363
];
6464

65-
const llmOutput = (await think({ name: config.name, messages: chatCompletionMessages })) as string;
65+
const llmOutput = (await think({
66+
name: config.name,
67+
messages: chatCompletionMessages,
68+
})) as string;
6669

6770
if (!llmOutput) {
6871
logger.error(`[${config.name}] Error thinking:`);

0 commit comments

Comments
 (0)