fix(basic.gblib): update ChatServices.ts #420

Closed
eltociear wants to merge 2540 commits from patch-1 into main
Showing only changes of commit c646b2d27b - Show all commits

View file

@ -628,7 +628,7 @@ export class KeywordsExpressions {
keywords[i++] = [
/^\s*(set output)(\s*)(.*)/gim,
($0, $1, $2, $3) => {
return `await dk.setOutput ({pid: pid, value: "${$3}}")`;
return `await dk.setOutput ({pid: pid, value: "${$3}"})`;
}
];