Fix build break (tool -> tools).

- Without this we'd get a TS1261 about the name "tool" only differeing from "Tool" (the class) by case.
This commit is contained in:
Taylor Mullen
2025-04-17 17:25:01 -04:00
parent ece8630c33
commit d970882428
13 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import { ToolListUnion, FunctionDeclaration } from '@google/genai';
import { Tool } from './tool.js';
import { Tool } from './tools.js';
class ToolRegistry {
private tools: Map<string, Tool> = new Map();