/** * This module defines the ACI_SEARCH_FUNCTIONS meta function, which can be used by LLMs/Agents to search for * relevant executable functions that can help complete tasks. * * Use this meta function when you want an LLM to discover relevant executable functions based on * the user's intent. */ import { BaseSchema } from './base'; /** * Get the base schema for ACI search functions */ export declare const getAciSearchFunctionsSchema: () => BaseSchema; /** * Create formatted schema utilities for ACI search functions */ export declare const ACISearchFunctions: { getSchema: () => BaseSchema; toJsonSchema: (format?: import("..").FunctionDefinitionFormat) => Record; };