ForcePilot/web/src/components/ToolCallingResult/index.js

13 lines
686 B
JavaScript
Raw Normal View History

// 工具调用结果组件导出
export { default as BaseToolCall } from './BaseToolCall.vue'
export { default as ToolCallRenderer } from './ToolCallRenderer.vue'
// 专用工具组件导出
export { default as WebSearchTool } from './tools/WebSearchTool.vue'
export { default as KnowledgeBaseTool } from './tools/KnowledgeBaseTool.vue'
export { default as KnowledgeGraphTool } from './tools/KnowledgeGraphTool.vue'
export { default as CalculatorTool } from './tools/CalculatorTool.vue'
export { default as TodoListTool } from './tools/TodoListTool.vue'
export { default as ImageTool } from './tools/ImageTool.vue'
export { default as WriteFileTool } from './tools/WriteFileTool.vue'