File size: 207 Bytes
6426ece |
1 2 3 4 5 6 7 8 |
export function transformInput(input: Record<string, unknown>, templateStr: string) {
// handle cohere special case
if (templateStr.includes('safety_mode')) {
input.safety_mode = '';
}
return input;
}
|