Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport 2.x] [Flow Framework] Update sample input to JSON lines format #1748

Merged
merged 1 commit into from
Feb 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{"item_text":"purpul high heels","item_price":150}
{"item_text":"pair of jordans","item_price":250}
{"item_text":"baseball cleats","item_price":85}
{"item_text":"red pants","item_price":95}
{"item_text":"blue skirt","item_price":55}
{"item_text":"orange tank top","item_price":30}
{"item_text":"maroon shorts","item_price":35}
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ describe('Creating Workflows Using Various Methods', () => {
.should('be.visible')
.click();
cy.get(`[data-text="Upload a file"]`).should('be.visible').click();
const filePath = `cypress/fixtures/${FF_FIXTURE_BASE_PATH}semantic_search/source_data.json`;
const filePath = `cypress/fixtures/${FF_FIXTURE_BASE_PATH}semantic_search/source_data.jsonl`;
cy.get('input[type=file]').selectFile(filePath);
cy.getElementByDataTestId('updateSourceDataButton')
.should('be.visible')
Expand Down
Loading