Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
22763c3
fix: Update all starter templates for model providers
erichare Dec 11, 2025
e9b770a
Update Basic Prompt Chaining.json
erichare Dec 11, 2025
f138092
Cleanup based on coderabbit review
erichare Dec 11, 2025
57e8be7
Update Twitter Thread Generator.json
erichare Dec 11, 2025
869f653
template updates
erichare Dec 11, 2025
5f6be09
Update package-lock.json
erichare Dec 11, 2025
85ccb3b
Merge branch 'main' into fix-starter-templates-mp
erichare Dec 12, 2025
3dc1d86
Merge branch 'main' into fix-starter-templates-mp
HimavarshaVS Dec 12, 2025
ff22f95
Merge branch 'main' into fix-starter-templates-mp
erichare Dec 12, 2025
e357b82
Merge branch 'main' into fix-starter-templates-mp
erichare Dec 15, 2025
141a5b2
Starter template updates
erichare Dec 16, 2025
6a26413
Merge branch 'main' into fix-starter-templates-mp
erichare Dec 18, 2025
dd16bf8
fix fe tests
Cristhianzl Dec 18, 2025
af84a12
[autofix.ci] apply automated fixes
autofix-ci[bot] Dec 18, 2025
8b43d0b
fix general bug 10
Cristhianzl Dec 18, 2025
71b680b
Merge branch 'fix-starter-templates-mp' of github.com:langflow-ai/lan…
Cristhianzl Dec 18, 2025
1adb086
test(lock-flow.spec.ts): update edge deletion tests to use Backspace …
Cristhianzl Dec 18, 2025
3234927
Update Portfolio Website Code Generator.json
erichare Dec 18, 2025
928990d
Fix two more broken templates
erichare Dec 18, 2025
01c626c
Template updates
erichare Dec 18, 2025
99d8ba4
Merge branch 'main' into fix-starter-templates-mp
erichare Dec 18, 2025
84a4e19
Merge branch 'main' into fix-starter-templates-mp
erichare Dec 18, 2025
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
Prev Previous commit
Merge branch 'main' into fix-starter-templates-mp
  • Loading branch information
erichare committed Dec 18, 2025
commit 84a4e195287e0de1dbc39f65c0cdbc7598711a95
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,9 @@ test(
.getByTestId("div-chat-message")
.allTextContents();

// Get the second response
const secondResponseText = textContents2[textContents2.length - 1];

// When the Chat Output node is frozen, it should return the cached output
// from the first run, so the second response should be identical
// to the first response even though we changed the prompt text
expect(secondResponseText).toBe(firstResponseText);
// The frozen node should return the same cached output
textContents2.forEach((text) => {
expect(text).toBe(concatAllText);
});
},
);
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.