UNPKG

@gacua/backend

Version:

GACUA Backend

10 lines (9 loc) 385 B
/** * @license * Copyright 2025 MuleRun * SPDX-License-Identifier: Apache-2.0 */ import type { FunctionDeclaration } from '@google/genai'; import type { GroundableTool } from './groundable-tool.js'; export declare function getValidComputerTool(name: string, args: unknown): GroundableTool | string; export declare function getComputerFunctionDeclarations(): FunctionDeclaration[];