diff --git a/cypress/composables/workflow.ts b/cypress/composables/workflow.ts index 5d5be1902c444..29b871f560a40 100644 --- a/cypress/composables/workflow.ts +++ b/cypress/composables/workflow.ts @@ -174,7 +174,7 @@ export function addVectorStoreToolToParent(nodeName: string, parentNodeName: str connectNodeToParent(nodeName, 'ai_tool', parentNodeName, false); getParameterInputByName('mode') .find('input') - .should('have.value', 'Retrieve documents for AI Agent as Tool'); + .should('have.value', 'Retrieve Documents (As Tool for AI Agent)'); clickGetBackToCanvas(); getConnectionBySourceAndTarget(nodeName, parentNodeName).should('exist'); } diff --git a/cypress/e2e/4-node-creator.cy.ts b/cypress/e2e/4-node-creator.cy.ts index e841605863044..5e32d5568c106 100644 --- a/cypress/e2e/4-node-creator.cy.ts +++ b/cypress/e2e/4-node-creator.cy.ts @@ -517,7 +517,7 @@ describe('Node Creator', () => { const actions = [ 'Get ranked documents from vector store', 'Add documents to vector store', - 'Retrieve documents for AI processing', + 'Retrieve documents for Chain/Tool as Vector Store', ]; nodeCreatorFeature.actions.openNodeCreator();