Skip to content

Commit

Permalink
quickfix
Browse files Browse the repository at this point in the history
  • Loading branch information
saimeunt committed Dec 23, 2024
1 parent 9214d27 commit 4aeff76
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion lib/actions/workflow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export async function workflow(

let action = { object: { next: 'proceed' } };
// If the user does not skip the task, run the task manager
if (!skip) action = (await taskManager(messages, model)) ?? action;
// if (!skip) action = (await taskManager(messages, model)) ?? action;

if (action.object.next === 'inquire') {
// Generate inquiry
Expand Down
1 change: 0 additions & 1 deletion lib/agents/researcher.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ export async function researcher(
return { text: fullResponse, toolResults }; */
// const result = await askBrian('What is the capital of France?');
const prompt = getPrompt(messages);
console.log(prompt);
const { text, toolResults } = await brianTransact(prompt);
fullResponse += text;
streamableText.done(fullResponse);
Expand Down

0 comments on commit 4aeff76

Please sign in to comment.