Fixes massive token overflow in browser_wait_for (284K tokens) and other interactive tools by applying existing snapshot configuration system. Updated tools with session-configurable snapshots: - browser_wait_for (was generating 284,335 tokens\!) - browser_handle_dialog - browser_evaluate - browser_file_upload - browser_tab_select, browser_tab_new, browser_tab_close All tools now: ✅ Respect browser_configure_snapshots settings ✅ Include updated descriptions mentioning session configurability ✅ Apply size limits, truncation, and differential modes automatically ✅ Can be controlled dynamically during sessions This completes the comprehensive snapshot overflow solution covering all interactive tools that generate accessibility snapshots. Added SNAPSHOT_OVERFLOW_SOLUTION.md with complete usage guide and quick fixes for token-constrained workflows. Co-Authored-By: Claude <noreply@anthropic.com>
54 lines
1.7 KiB
TypeScript
54 lines
1.7 KiB
TypeScript
/**
|
|
* Copyright (c) Microsoft Corporation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { z } from 'zod';
|
|
import { defineTabTool } from './tool.js';
|
|
|
|
const uploadFile = defineTabTool({
|
|
capability: 'core',
|
|
|
|
schema: {
|
|
name: 'browser_file_upload',
|
|
title: 'Upload files',
|
|
description: 'Upload one or multiple files. Returns page snapshot after upload (configurable via browser_configure_snapshots).',
|
|
inputSchema: z.object({
|
|
paths: z.array(z.string()).describe('The absolute paths to the files to upload. Can be a single file or multiple files.'),
|
|
}),
|
|
type: 'destructive',
|
|
},
|
|
|
|
handle: async (tab, params, response) => {
|
|
response.setIncludeSnapshot();
|
|
|
|
const modalState = tab.modalStates().find(state => state.type === 'fileChooser');
|
|
if (!modalState)
|
|
throw new Error('No file chooser visible');
|
|
|
|
response.addCode(`// Select files for upload`);
|
|
response.addCode(`await fileChooser.setFiles(${JSON.stringify(params.paths)})`);
|
|
|
|
tab.clearModalState(modalState);
|
|
await tab.waitForCompletion(async () => {
|
|
await modalState.fileChooser.setFiles(params.paths);
|
|
});
|
|
},
|
|
clearsModalState: 'fileChooser',
|
|
});
|
|
|
|
export default [
|
|
uploadFile,
|
|
];
|