Skip to content

Commit

Permalink
Update sample input to jsonlines format
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Ohlsen <[email protected]>
  • Loading branch information
ohltyler committed Feb 21, 2025
1 parent a02040e commit a08822e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 31 deletions.

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

0 comments on commit a08822e

Please sign in to comment.