mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
feat(n8n Evaluation Node): Add pre-defined metrics to the "Set Metrics" operation (#17127)
This commit is contained in:
@@ -11,7 +11,11 @@ export const useCanvasStore = defineStore('canvas', () => {
|
||||
const newNodeInsertPosition = ref<XYPosition | null>(null);
|
||||
const nodes = computed<INodeUi[]>(() => workflowStore.allNodes);
|
||||
const aiNodes = computed<INodeUi[]>(() =>
|
||||
nodes.value.filter((node) => node.type.includes('langchain')),
|
||||
nodes.value.filter(
|
||||
(node) =>
|
||||
node.type.includes('langchain') ||
|
||||
(node.type === 'n8n-nodes-base.evaluation' && node.parameters?.operation === 'setMetrics'),
|
||||
),
|
||||
);
|
||||
const hasRangeSelection = ref(false);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user