mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-25 13:49:34 +00:00
11 lines
406 B
TypeScript
11 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,
|
|
};
|
|
}
|