test: added integration tests for inter-feature interactions like RAG + Agents, function calling/MCP servers, etc.

This commit is contained in:
2026-05-01 14:06:41 -06:00
parent 349b3748bd
commit c53e0546d4
13 changed files with 504 additions and 166 deletions
+5 -1
View File
@@ -1280,7 +1280,11 @@ mod tests {
];
for ext in known {
let seps = get_separators(ext);
assert_ne!(seps, DEFAULT_SEPARATORS.to_vec(), "Extension '{ext}' should have language-specific separators");
assert_ne!(
seps,
DEFAULT_SEPARATORS.to_vec(),
"Extension '{ext}' should have language-specific separators"
);
}
}
-1
View File
@@ -171,7 +171,6 @@ impl RecursiveCharacterTextSplitter {
}
}
// Now that we have the separator, split the text
let splits = split_on_separator(text, &separator, keep_separator);
// Now go merging things, recursively splitting longer texts.