mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
20 lines
517 B
TypeScript
20 lines
517 B
TypeScript
/**
|
|
* Brave Search test API barrel. Tests import normalized helpers through this
|
|
* path instead of deep runtime modules.
|
|
*/
|
|
import {
|
|
mapBraveLlmContextResults,
|
|
normalizeBraveCountry,
|
|
normalizeBraveLanguageParams,
|
|
resolveBraveMode,
|
|
} from "./src/brave-web-search-provider.shared.js";
|
|
|
|
/** Test-only Brave normalization helpers. */
|
|
export const testing = {
|
|
normalizeBraveCountry,
|
|
normalizeBraveLanguageParams,
|
|
resolveBraveMode,
|
|
mapBraveLlmContextResults,
|
|
} as const;
|
|
export { testing as __testing };
|