@gacua/backend
Version:
GACUA Backend
26 lines (25 loc) • 775 B
TypeScript
/**
* @license
* Copyright 2025 MuleRun
* SPDX-License-Identifier: Apache-2.0
*/
import { type GroundedToolCall, BaseGroundableTool } from './groundable-tool.js';
export interface ComputerWaitArgs {
time: number;
}
export declare class ComputerWait extends BaseGroundableTool<ComputerWaitArgs> {
readonly functionDeclaration: {
name: string;
parametersJsonSchema: {
properties: {
time: {
description: string;
type: string;
};
};
required: string[];
type: string;
};
};
ground(args: ComputerWaitArgs, _screenshot: unknown, _croppedScreenshotParts: unknown, _detectElement: unknown): Promise<GroundedToolCall>;
}