mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 17:10:49 +00:00
10 lines
337 B
TypeScript
10 lines
337 B
TypeScript
import { buildProviderReplayFamilyHooks } from "openclaw/plugin-sdk/provider-model-shared";
|
|
import { createGoogleThinkingStreamWrapper } from "./thinking-api.js";
|
|
|
|
export const GOOGLE_GEMINI_PROVIDER_HOOKS = {
|
|
...buildProviderReplayFamilyHooks({
|
|
family: "google-gemini",
|
|
}),
|
|
wrapStreamFn: createGoogleThinkingStreamWrapper,
|
|
};
|