Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
2a0dabd
fix: Knowledge base component refactor
erichare Aug 26, 2025
78cd280
[autofix.ci] apply automated fixes
autofix-ci[bot] Aug 26, 2025
84e6c05
[autofix.ci] apply automated fixes (attempt 2/3)
autofix-ci[bot] Aug 26, 2025
b7d033b
Merge branch 'main' into fix-kb-adjustments
erichare Aug 26, 2025
9f3fe45
Merge branch 'main' into fix-kb-adjustments
erichare Aug 26, 2025
def90ae
Merge branch 'main' into fix-kb-adjustments
edwinjosechittilappilly Aug 26, 2025
29799fe
Update styleUtils.ts
erichare Aug 26, 2025
a050287
Update ingestion.py
erichare Aug 26, 2025
ba11333
Merge branch 'main' into fix-kb-adjustments
carlosrcoelho Aug 26, 2025
9adc5cc
[autofix.ci] apply automated fixes
autofix-ci[bot] Aug 26, 2025
9b90f04
Fix ingestion of df
erichare Aug 26, 2025
95249d7
[autofix.ci] apply automated fixes
autofix-ci[bot] Aug 26, 2025
338b4ce
Update Knowledge Ingestion.json
erichare Aug 26, 2025
5b9d1a8
Fix one failing test
erichare Aug 26, 2025
dd61055
Merge branch 'main' into fix-kb-adjustments
erichare Aug 27, 2025
88d6a4e
Merge branch 'main' into fix-kb-adjustments
erichare Aug 27, 2025
585fc24
Merge branch 'release-1.6.0' into fix-kb-adjustments
erichare Aug 27, 2025
dfb2c4e
[autofix.ci] apply automated fixes
autofix-ci[bot] Aug 27, 2025
4a05cdc
Merge branch 'release-1.6.0' into fix-kb-adjustments
erichare Aug 27, 2025
b512dbb
[autofix.ci] apply automated fixes
autofix-ci[bot] Aug 27, 2025
9bcb694
Revert composio versions for CI
erichare Aug 27, 2025
ad7e5dd
Revert "Revert composio versions for CI"
erichare Aug 27, 2025
00f5ccc
Merge branch 'release-1.6.0' into fix-kb-adjustments
erichare Aug 27, 2025
6727a36
[autofix.ci] apply automated fixes
autofix-ci[bot] Aug 27, 2025
ea4ede2
Update Vector Store RAG.json
erichare Aug 27, 2025
68faa9a
[autofix.ci] apply automated fixes
autofix-ci[bot] Aug 27, 2025
47c5c68
Update starter-projects.spec.ts
erichare Aug 27, 2025
ec30942
Update starter-projects.spec.ts
erichare Aug 27, 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
Update starter-projects.spec.ts
  • Loading branch information
erichare committed Aug 27, 2025
commit ec309425884a8802e6126d583aa9af133a750a7c
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ test(
const nodesFromServer = astraStarterProject?.data.nodes.length;

expect(
edges === edgesFromServer || edges === edgesFromServer - 1 || edges === edgesFromServer - 2,
edges === edgesFromServer ||
edges === edgesFromServer - 1 ||
edges === edgesFromServer - 2,
).toBeTruthy();
expect(nodes).toBe(nodesFromServer);
},
Expand Down
Loading