small bugfixes

This commit is contained in:
Kyle Corbitt
2023-07-07 12:22:27 -07:00
parent 70a1448d73
commit 46344d8fc4
10 changed files with 391 additions and 276 deletions

View File

@@ -12,7 +12,7 @@ export const evaluateOutput = (
if (!message) return false;
const stringifiedMessage = JSON.stringify(message);
const stringifiedMessage = message.content ?? JSON.stringify(message.function_call);
const matchRegex = fillTemplate(evaluation.matchString, scenario.variableValues as VariableMap);