mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-10 00:11:19 +00:00
10 lines
406 B
TypeScript
10 lines
406 B
TypeScript
// Firecrawl API module exposes the plugin public contract.
|
|
import type { WebSearchProviderPlugin } from "openclaw/plugin-sdk/provider-web-search-contract";
|
|
import { buildFirecrawlWebSearchProviderBase } from "./web-search-shared.js";
|
|
|
|
export function createFirecrawlWebSearchProvider(): WebSearchProviderPlugin {
|
|
return {
|
|
...buildFirecrawlWebSearchProviderBase(),
|
|
createTool: () => null,
|
|
};
|
|
}
|