mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 00:36:31 +02:00
17 lines
486 B
TypeScript
17 lines
486 B
TypeScript
/**
|
|
* Tool UI Components
|
|
*
|
|
* This module exports custom UI components for assistant tools.
|
|
* These components are registered with assistant-ui to render
|
|
* rich UI when specific tools are called by the agent.
|
|
*/
|
|
|
|
export { Audio } from "./audio";
|
|
export { GeneratePodcastToolUI } from "./generate-podcast";
|
|
export {
|
|
DeepAgentThinkingToolUI,
|
|
InlineThinkingDisplay,
|
|
type ThinkingStep,
|
|
type DeepAgentThinkingArgs,
|
|
type DeepAgentThinkingResult,
|
|
} from "./deepagent-thinking";
|