mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 20:10:42 +00:00
10 lines
364 B
TypeScript
10 lines
364 B
TypeScript
import type { WebSearchProviderPlugin } from "openclaw/plugin-sdk/provider-web-search-contract";
|
|
import { createDuckDuckGoWebSearchProviderBase } from "./src/ddg-search-provider.shared.js";
|
|
|
|
export function createDuckDuckGoWebSearchProvider(): WebSearchProviderPlugin {
|
|
return {
|
|
...createDuckDuckGoWebSearchProviderBase(),
|
|
createTool: () => null,
|
|
};
|
|
}
|