import type { LLMProvider, ToolRegistry, ToolContext, WorkflowLLMCaller, WorkflowToolRegistry } from '@cicctencent/agent-core'; /** * 创建工作流 LLM 调用器适配器 * 包装 LLMProvider.chatStream() 实现 WorkflowLLMCaller 接口 */ export declare function createWorkflowLLMCaller(provider: LLMProvider, options?: { temperature?: number; maxTokens?: number; }): WorkflowLLMCaller; /** * 创建工作流工具注册表适配器 * 包装现有 ToolRegistry 实现 WorkflowToolRegistry 接口 */ export declare function createWorkflowToolRegistry(toolRegistry: ToolRegistry, shellExecutor?: ToolContext['shell'], fsExecutor?: ToolContext['fs'], envInfo?: ToolContext['env']): WorkflowToolRegistry; //# sourceMappingURL=workflow-adapters.d.ts.map