{"flow": {"nodes": [{"width": 312, "height": 311, "id": "prompt-regex-match", "type": "prompt", "data": {"prompt": "{prompt}", "n": 1, "llms": [{"key": "aa3c0f03-22bd-416e-af4d-4bf5c4278c99", "settings": {"system_msg": "You are a helpful assistant.", "temperature": 1, "functions": [], "function_call": "", "top_p": 1, "stop": [], "presence_penalty": 0, "frequency_penalty": 0}, "name": "GPT3.5", "emoji": "\ud83d\ude42", "model": "gpt-3.5-turbo", "base_model": "gpt-3.5-turbo", "temp": 1, "formData": {"shortname": "GPT3.5", "model": "gpt-3.5-turbo", "system_msg": "You are a helpful assistant.", "temperature": 1, "functions": "", "function_call": "", "top_p": 1, "stop": "", "presence_penalty": 0, "frequency_penalty": 0}}]}, "position": {"x": 448, "y": 224}, "selected": false, "positionAbsolute": {"x": 448, "y": 224}, "dragging": false}, {"width": 333, "height": 182, "id": "eval-regex-match", "type": "evaluator", "data": {"code": "function evaluate(response) {\n\tlet ideal = response.meta['Ideal'];\n\treturn response.text.startsWith(ideal);\n}", "language": "javascript"}, "position": {"x": 820, "y": 150}, "positionAbsolute": {"x": 820, "y": 150}}, {"width": 228, "height": 196, "id": "vis-regex-match", "type": "vis", "data": {"input": "eval-regex-match"}, "position": {"x": 1200, "y": 250}, "positionAbsolute": {"x": 1200, "y": 250}}, {"width": 302, "height": 260, "id": "inspect-regex-match", "type": "inspect", "data": {"input": "prompt-regex-match"}, "position": {"x": 820, "y": 400}, "positionAbsolute": {"x": 820, "y": 400}}, {"width": 423, "height": 417, "id": "table-regex-match", "type": "table", "data": {"rows": [{"prompt": "will regex pattern '(?P<foo_123' match the string ''? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?P<1>a)' match the string ''? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?P<!>a)' match the string ''? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?P<foo!>a)' match the string ''? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?P<foo_123>a)(?P=foo_123' match the string 'aa'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?P<foo_123>a)(?P=1)' match the string 'aa'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?P<foo_123>a)(?P=!)' match the string 'aa'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?P<foo_123>a)(?P=foo_124' match the string 'aa'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?P<foo_123>a)' match the string 'a'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?P<foo_123>a)(?P=foo_123)' match the string 'aa'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\1' match the string 'a'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '[\\1]' match the string '\u0001'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\09' match the string '\u00009'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\141' match the string 'a'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a)(b)(c)(d)(e)(f)(g)(h)(i)(j)(k)(l)\\119' match the string 'abcdefghijklk9'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\0' match the string '\u0000'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '[\\0a]' match the string '\u0000'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '[a\\0]' match the string '\u0000'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '[^a\\0]' match the string '\u0000'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '\\a[\\b]\\f\\n\\r\\t\\v' match the