mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 17:31:06 +00:00
30 lines
580 B
TypeScript
30 lines
580 B
TypeScript
import { describeProviderContracts } from "openclaw/plugin-sdk/provider-test-contracts";
|
|
import { describeWebSearchProviderContracts } from "openclaw/plugin-sdk/provider-test-contracts";
|
|
|
|
for (const providerId of [
|
|
"anthropic",
|
|
"fal",
|
|
"google",
|
|
"minimax",
|
|
"moonshot",
|
|
"openai",
|
|
"openrouter",
|
|
"xai",
|
|
] as const) {
|
|
describeProviderContracts(providerId);
|
|
}
|
|
|
|
for (const providerId of [
|
|
"brave",
|
|
"duckduckgo",
|
|
"exa",
|
|
"firecrawl",
|
|
"google",
|
|
"moonshot",
|
|
"perplexity",
|
|
"tavily",
|
|
"xai",
|
|
] as const) {
|
|
describeWebSearchProviderContracts(providerId);
|
|
}
|