diff options
| author | Taylor Mullen <[email protected]> | 2025-04-18 13:37:51 -0400 |
|---|---|---|
| committer | N. Taylor Mullen <[email protected]> | 2025-04-18 14:02:09 -0400 |
| commit | 7cd3b95317c4d9263e514f33589cb359766d463b (patch) | |
| tree | ccca1f6d7e67e91c9a3603dd5251fa2c4c577274 /packages/cli/src/core/gemini-client.ts | |
| parent | 93fd6a9160d4654baf2f10269ce9689c553bb8cf (diff) | |
Fix linting errors in a number of core and tool files (partial)
- As part of this work I also started building out errors.ts which will be a cumulation of error helpers to better handle the challenging `catch (error: unknown)` requirement.
- More changes are to come, this is truly a partial change in order to not disrupt as many people as possible.
Part of https://b.corp.google.com/issues/411384603
Diffstat (limited to 'packages/cli/src/core/gemini-client.ts')
| -rw-r--r-- | packages/cli/src/core/gemini-client.ts | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/packages/cli/src/core/gemini-client.ts b/packages/cli/src/core/gemini-client.ts index 0b79a2ad..21cc7188 100644 --- a/packages/cli/src/core/gemini-client.ts +++ b/packages/cli/src/core/gemini-client.ts @@ -25,9 +25,9 @@ import { GeminiEventType, GeminiStream } from './gemini-stream.js'; type ToolExecutionOutcome = { callId: string; name: string; - args: Record<string, any>; + args: Record<string, never>; result?: ToolResult; - error?: any; + error?: Error; confirmationDetails?: ToolCallConfirmationDetails; }; @@ -126,7 +126,7 @@ ${folderStructure} let pendingToolCalls: Array<{ callId: string; name: string; - args: Record<string, any>; + args: Record<string, never>; }> = []; let yieldedTextInTurn = false; const chunksForDebug = []; @@ -148,7 +148,7 @@ ${folderStructure} call.id ?? `${call.name}-${Date.now()}-${Math.random().toString(16).slice(2)}`; const name = call.name || 'undefined_tool_name'; - const args = (call.args || {}) as Record<string, any>; + const args = (call.args || {}) as Record<string, never>; pendingToolCalls.push({ callId, name, args }); const evtValue: ToolCallEvent = { @@ -281,7 +281,7 @@ ${folderStructure} (executedTool: ToolExecutionOutcome): Part => { const { name, result, error } = executedTool; const output = { output: result?.llmContent }; - let toolOutcomePayload: any; + let toolOutcomePayload: Record<string, unknown>; if (error) { const errorMessage = error?.message || String(error); @@ -445,11 +445,11 @@ Respond *only* in JSON format according to the following schema. Do not include async generateJson( contents: Content[], schema: SchemaUnion, - ): Promise<any> { + ): Promise<Record<string, unknown>> { const model = getModel(); try { const result = await this.ai.models.generateContent({ - model: model, + model, config: { ...this.defaultHyperParameters, systemInstruction: CoreSystemPrompt, |
