13 lines
382 B
TypeScript
13 lines
382 B
TypeScript
import type { CreatedHooks } from "../create-hooks"
|
|
|
|
export function createSystemTransformHandler(args: {
|
|
hooks: CreatedHooks
|
|
}): (input: { sessionID: string }, output: { system: string[] }) => Promise<void> {
|
|
return async (input, output): Promise<void> => {
|
|
await args.hooks.beastModeSystem?.["experimental.chat.system.transform"]?.(
|
|
input,
|
|
output,
|
|
)
|
|
}
|
|
}
|