Skip to content

Commit 462cff6

Browse files
committed
more lint cleanup
1 parent 462602d commit 462cff6

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

packages/agent/src/core/toolAgent.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,8 +300,7 @@ export const toolAgent = async (
300300
system: systemPrompt,
301301
tools: toolSet,
302302
};
303-
const { text, reasoning, reasoningDetails, toolCalls, toolResults } =
304-
await generateText(generateTextProps);
303+
const { text, toolCalls } = await generateText(generateTextProps);
305304

306305
const localToolCalls: ToolUseContent[] = toolCalls.map((call) => ({
307306
type: 'tool_use',

packages/cli/src/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import { hideBin } from 'yargs/helpers';
88
import { command as defaultCommand } from './commands/$default.js';
99
import { command as testSentryCommand } from './commands/test-sentry.js';
1010
import { command as toolsCommand } from './commands/tools.js';
11-
12-
// Initialize Sentry as early as possible
1311
import { sharedOptions } from './options.js';
1412
import { initSentry, captureException } from './sentry/index.js';
1513
initSentry();

0 commit comments

Comments
 (0)