Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
export function dirtyLLMResponseCleaner(input: string) { | |
return ( | |
`${input || ""}` | |
.replaceAll("}}", "}") | |
.replaceAll("]]", "]") | |
.replaceAll(",,", ",") | |
) | |
} |