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

Method getBreadcrumbs

packages/components/src/MetricsLogger.ts:37–46  ·  view source on GitHub ↗
(run: Run)

Source from the content-addressed store, hash-verified

35 }
36
37 getBreadcrumbs(run: Run) {
38 const parents = this.getParents(run).reverse()
39 const string = [...parents, run]
40 .map((parent) => {
41 const name = `${parent.execution_order}:${parent.run_type}:${parent.name}`
42 return name
43 })
44 .join(' > ')
45 return string
46 }
47
48 // logging methods
49

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