feat(web-search): add bundled Exa plugin (#52617)

This commit is contained in:
Vincent Koc
2026-03-22 20:57:33 -07:00
committed by GitHub
parent 5213382195
commit 1042b59471
16 changed files with 629 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ const BUNDLED_WEB_SEARCH_PROVIDERS = [
{ pluginId: "moonshot", id: "kimi", order: 40 },
{ pluginId: "perplexity", id: "perplexity", order: 50 },
{ pluginId: "firecrawl", id: "firecrawl", order: 60 },
{ pluginId: "exa", id: "exa", order: 65 },
{ pluginId: "tavily", id: "tavily", order: 70 },
] as const;
@@ -89,6 +90,7 @@ describe("resolvePluginWebSearchProviders", () => {
"moonshot:kimi",
"perplexity:perplexity",
"firecrawl:firecrawl",
"exa:exa",
"tavily:tavily",
]);
expect(loadOpenClawPluginsMock).toHaveBeenCalledTimes(1);