From 19c2777246ecf2f594a85becde1cf0963e3d1617 Mon Sep 17 00:00:00 2001 From: Simon <10131203+gaomeng1900@users.noreply.github.com> Date: Tue, 21 Oct 2025 18:47:16 +0800 Subject: [PATCH] chore: clean up --- src/PageAgent.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/PageAgent.ts b/src/PageAgent.ts index 822afb4..8b8fc83 100644 --- a/src/PageAgent.ts +++ b/src/PageAgent.ts @@ -11,10 +11,10 @@ import * as dom from './dom' import { FlatDomTree, InteractiveElementDomNode } from './dom/dom_tree/type' import { getPageInfo } from './dom/getPageInfo' import { I18n } from './i18n' -import { type InvokeResult, LLM, type Message, type Tool } from './llms' +import { LLM, type Tool } from './llms' import { patchReact } from './patches/react' import SYSTEM_PROMPT from './prompts/system_prompt.md?raw' -import { type PageAgentTool, tools } from './tools' +import { tools } from './tools' import { Panel, getToolCompletedText, getToolExecutingText } from './ui/Panel' import { SimulatorMask } from './ui/SimulatorMask' import { trimLines, uid, waitUntil } from './utils'