ManimCat / src /studio-agent /plot /register-plot-tools.ts
littlebrian's picture
Sync from enhance: d795216 feat: implement patch response parser for search and replace functionality
9bd4242
Raw
History Blame Contribute Delete
262 Bytes
import type { StudioToolRegistry } from '../tools/registry'
import { createPlotStudioRenderTool } from './tools/plot-render-tool'
export function registerPlotStudioTools(registry: StudioToolRegistry): void {
registry.register(createPlotStudioRenderTool())
}