mishig's picture
mishig HF Staff
First build
6426ece
raw
history blame contribute delete
207 Bytes
export function transformInput(input: Record<string, unknown>, templateStr: string) {
// handle cohere special case
if (templateStr.includes('safety_mode')) {
input.safety_mode = '';
}
return input;
}