/** * humancy.ask_question tool * * Ask human a freeform question and wait for their response. * Supports both direct (IPC) and cloud (HTTP) modes. */ import { type AgencyTool, type AgencyCoreAPI } from '@generacy-ai/agency'; import { ConnectionModeDetector } from '../connection/index.js'; import type { HumancyHttpClient } from '../http/client.js'; /** * Create the ask_question tool */ export declare function createAskQuestionTool(coreAPI: AgencyCoreAPI, detector: ConnectionModeDetector, httpClient?: HumancyHttpClient): AgencyTool; //# sourceMappingURL=ask-question.d.ts.map