MCPcopy Create free account
hub / github.com/FlowiseAI/Flowise / getBreadcrumbs

Method getBreadcrumbs

packages/components/src/handler.ts:242–251  ·  view source on GitHub ↗
(run: Run)

Source from the content-addressed store, hash-verified

240 }
241
242 getBreadcrumbs(run: Run) {
243 const parents = this.getParents(run).reverse()
244 const string = [...parents, run]
245 .map((parent) => {
246 const name = `${parent.execution_order}:${parent.run_type}:${parent.name}`
247 return name
248 })
249 .join(' > ')
250 return string
251 }
252
253 onChainStart(run: Run) {
254 const crumbs = this.getBreadcrumbs(run)

Callers 10

onChainStartMethod · 0.95
onChainEndMethod · 0.95
onChainErrorMethod · 0.95
onLLMStartMethod · 0.95
onLLMEndMethod · 0.95
onLLMErrorMethod · 0.95
onToolStartMethod · 0.95
onToolEndMethod · 0.95
onToolErrorMethod · 0.95
onAgentActionMethod · 0.95

Calls 1

getParentsMethod · 0.95

Tested by

no test coverage detected