mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 05:20:43 +00:00
Move Brave test helper exposure out of the provider artifact and keep schema/config metadata free of runtime shared imports.
14 lines
313 B
TypeScript
14 lines
313 B
TypeScript
import {
|
|
mapBraveLlmContextResults,
|
|
normalizeBraveCountry,
|
|
normalizeBraveLanguageParams,
|
|
resolveBraveMode,
|
|
} from "./src/brave-web-search-provider.shared.js";
|
|
|
|
export const __testing = {
|
|
normalizeBraveCountry,
|
|
normalizeBraveLanguageParams,
|
|
resolveBraveMode,
|
|
mapBraveLlmContextResults,
|
|
} as const;
|