We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ec60d6 commit f9a7188Copy full SHA for f9a7188
src/core/agents/handlers/createWorkerHandler.ts
@@ -62,7 +62,10 @@ export const createWorkerHandler = ({
62
},
63
];
64
65
- const llmOutput = (await think({ name: config.name, messages: chatCompletionMessages })) as string;
+ const llmOutput = (await think({
66
+ name: config.name,
67
+ messages: chatCompletionMessages,
68
+ })) as string;
69
70
if (!llmOutput) {
71
logger.error(`[${config.name}] Error thinking:`);
0 commit comments