refactor(setup): generalize tool/agent node logic and update starter templates (#8618)

* update several templates

* updated templates

* change custom component maker

* Update Twitter Thread Generator.json

* updates from main

* llm reset issue

* Update setup.py

* Update Custom Component Maker.json

* [autofix.ci] apply automated fixes

* [autofix.ci] apply automated fixes (attempt 2/3)

* udpate templates

* [autofix.ci] apply automated fixes

* Update setup.py

* Update Custom Component Maker.json

* [autofix.ci] apply automated fixes

* Update Custom Component Maker.json

* text fixes

---------

Co-authored-by: Yuqi Tang <yuqi.tang@datastax.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Mike Fortman <michael.fortman@datastax.com>
Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@langflow.org>
This commit is contained in:
Edwin Jose 2025-06-20 13:51:35 -05:00 committed by GitHub
commit 4832093e99
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 2548 additions and 3047 deletions

View file

@ -35,6 +35,9 @@ withEventDeliveryModes(
skipSelectGptModel: true,
});
await page.getByTestId("dropdown_str_provider").click();
await page.getByTestId("Anthropic-1-option").click();
await page
.getByTestId("popover-anchor-input-api_key")
.last()

View file

@ -39,10 +39,14 @@ withEventDeliveryModes(
await page.waitForTimeout(500);
await page.getByTestId("select-files-modal-button").click();
await page.waitForSelector('[data-testid="button_run_chat output"]', {
await page.waitForSelector('[data-testid="title-Chat Output"]', {
timeout: 3000,
});
await page.getByTestId("title-Chat Output").last().click();
await page.getByTestId("icon-MoreHorizontal").click();
await page.getByText("Expand").click();
await page.getByTestId("button_run_chat output").last().click();
await page.waitForSelector("text=built successfully", { timeout: 30000 });

View file

@ -34,6 +34,10 @@ withEventDeliveryModes(
await initialGPTsetup(page);
await page.getByTestId("title-Chat Output").click();
await page.getByTestId("icon-MoreHorizontal").click();
await page.getByText("Expand").click();
await page.getByTestId("button_run_chat output").click();
await page.waitForSelector("text=built successfully", { timeout: 30000 });