mirror of
https://github.com/ianarawjo/ChainForge.git
synced 2025-03-14 16:26:45 +00:00
* Beginning to convert Python backend to Typescript * Change all fetch() calls to fetch_from_backend switcher * wip converting query.py to query.ts * wip started utils.js conversion. Tested that OpenAI API call works * more progress on converting utils.py to Typescript * jest tests for query, utils, template.ts. Confirmed PromptPipeline works. * wip converting queryLLM in flask_app to TS * Tested queryLLM and StorageCache compressed saving/loading * wip execute() in backend.ts * Added execute() and tested w concrete func. Need to test eval() * Added craco for optional webpack config. Config'd for TypeScript with Node.js packages browserify'd * Execute JS code on iframe sandbox * Tested and working JS Evaluator execution. * wip swapping backends * Tested TypeScript backendgit status! :) woot * Added fetchEnvironAPIKeys to Flask server to fetch os.environ keys when running locally * Route Anthropic calls through Flask when running locally * Added info button to Eval nodes. Rebuilt react * Edits to info modal on Eval node * Remove/error out on Python eval nodes when not running locally. * Check browser compat and display error if not supported * Changed all example flows to use JS. Bug fix in query.ts * Refactored to LLMProvider to streamline model additions * Added HuggingFace models API * Added back Dalai call support, routing through Flask * Remove flask app calls and socketio server that are no longer used * Added Comment Nodes. Rebuilt react. * Fix PaLM temp=0 build, update package vers and rebuild react
1 line
52 KiB
Plaintext
1 line
52 KiB
Plaintext
{"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 string '\u0007\b\f\n\r\t\u000b'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '[\\a][\\b][\\f][\\n][\\r][\\t][\\v]' match the string '\u0007\b\f\n\r\t\u000b'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\u' match the string ''? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '\\x00ffffffffffffff' match the string '\u00ff'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '\\x00f' match the string '\u000f'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '\\x00fe' match the string '\u00fe'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '^\\w+=(\\\\[\\000-\\277]|[^\\n\\\\])*' match the string 'SRC=eval.c g.c blah blah blah \\\\\n\tapes.c'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a.b' match the string 'acb'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a.b' match the string 'a\nb'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'a.*b' match the string 'acc\nccb'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'a.{4,5}b' match the string 'acc\nccb'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'a.b' match the string 'a\rb'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?s)a.b' match the string 'a\nb'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?s)a.*b' match the string 'acc\nccb'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?s)a.{4,5}b' match the string 'acc\nccb'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?s)a.b' match the string 'a\rb'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern ')' match the string ''? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '' match the string ''? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'abc' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'abc' match the string 'xbc'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'abc' match the string 'axc'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'abc' match the string 'abx'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'abc' match the string 'xabcy'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'abc' match the string 'ababc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'ab*c' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'ab*bc' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'ab*bc' match the string 'abbc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'ab*bc' match the string 'abbbbc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'ab+bc' match the string 'abbc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'ab+bc' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'ab+bc' match the string 'abq'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'ab+bc' match the string 'abbbbc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'ab?bc' match the string 'abbc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'ab?bc' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'ab?bc' match the string 'abbbbc'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'ab?c' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '^abc$' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '^abc$' match the string 'abcc'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '^abc' match the string 'abcc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '^abc$' match the string 'aabc'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'abc$' match the string 'aabc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '^' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '$' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a.c' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a.c' match the string 'axc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a.*c' match the string 'axyzc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a.*c' match the string 'axyzd'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'a[bc]d' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'a[bc]d' match the string 'abd'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a[b-d]e' match the string 'abd'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'a[b-d]e' match the string 'ace'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a[b-d]' match the string 'aac'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a[-b]' match the string 'a-'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a[\\-b]' match the string 'a-'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a[]b' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'a[' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'a\\' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'abc)' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(abc' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'a]' match the string 'a]'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a[]]b' match the string 'a]b'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a[\\]]b' match the string 'a]b'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a[^bc]d' match the string 'aed'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a[^bc]d' match the string 'abd'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'a[^-b]c' match the string 'adc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a[^-b]c' match the string 'a-c'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'a[^]b]c' match the string 'a]c'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'a[^]b]c' match the string 'adc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\ba\\b' match the string 'a-'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\ba\\b' match the string '-a'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\ba\\b' match the string '-a-'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\by\\b' match the string 'xy'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '\\by\\b' match the string 'yz'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '\\by\\b' match the string 'xyz'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'x\\b' match the string 'xyz'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'x\\B' match the string 'xyz'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\Bz' match the string 'xyz'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'z\\B' match the string 'xyz'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '\\Bx' match the string 'xyz'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '\\Ba\\B' match the string 'a-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '\\Ba\\B' match the string '-a'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '\\Ba\\B' match the string '-a-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '\\By\\B' match the string 'xy'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '\\By\\B' match the string 'yz'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '\\By\\b' match the string 'xy'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\by\\B' match the string 'yz'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\By\\B' match the string 'xyz'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'ab|cd' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'ab|cd' match the string 'abcd'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '()ef' match the string 'def'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '$b' match the string 'b'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'a\\(b' match the string 'a(b'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a\\(*b' match the string 'ab'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a\\(*b' match the string 'a((b'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a\\\\b' match the string 'a\\b'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '((a))' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a)b(c)' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a+b+c' match the string 'aabbabc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a+|b)*' match the string 'ab'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a+|b)+' match the string 'ab'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a+|b)?' match the string 'ab'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern ')(' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '[^ab]*' match the string 'cde'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'abc' match the string ''? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'a*' match the string ''? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a|b|c|d|e' match the string 'e'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a|b|c|d|e)f' match the string 'ef'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'abcd*efg' match the string 'abcdefg'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'ab*' match the string 'xabyabbbz'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'ab*' match the string 'xayabbbz'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(ab|cd)e' match the string 'abcde'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '[abhgefdc]ij' match the string 'hij'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '^(ab|cd)e' match the string 'abcde'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(abc|)ef' match the string 'abcdef'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a|b)c*d' match the string 'abcd'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(ab|ab*)bc' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a([bc]*)c*' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a([bc]*)(c*d)' match the string 'abcd'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a([bc]+)(c*d)' match the string 'abcd'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a([bc]*)(c+d)' match the string 'abcd'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a[bcd]*dcdcde' match the string 'adcdcde'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a[bcd]+dcdcde' match the string 'adcdcde'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(ab|a)b*c' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '((a)(b)c)(d)' match the string 'abcd'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '[a-zA-Z_][a-zA-Z0-9_]*' match the string 'alpha'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '^a(bc+|b[eh])g|.h$' match the string 'abh'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(bc+d$|ef*g.|h?i(j|k))' match the string 'effgz'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(bc+d$|ef*g.|h?i(j|k))' match the string 'ij'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(bc+d$|ef*g.|h?i(j|k))' match the string 'effg'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(bc+d$|ef*g.|h?i(j|k))' match the string 'bcdd'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(bc+d$|ef*g.|h?i(j|k))' match the string 'reffgz'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(((((((((a)))))))))' match the string 'a'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'multiple words of text' match the string 'uh-uh'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'multiple words' match the string 'multiple words, yeah'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(.*)c(.*)' match the string 'abcde'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\((.*), (.*)\\)' match the string '(a, b)'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '[k]' match the string 'ab'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'a[-]?c' match the string 'ac'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(abc)\\1' match the string 'abcabc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '([a-c]*)\\1' match the string 'abcabc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '^(.+)?B' match the string 'AB'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a+).\\1$' match the string 'aaaaa'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '^(a+).\\1$' match the string 'aaaa'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(abc)\\1' match the string 'abcabc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '([a-c]+)\\1' match the string 'abcabc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a)\\1' match the string 'aa'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a+)\\1' match the string 'aa'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a+)+\\1' match the string 'aa'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a).+\\1' match the string 'aba'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a)ba*\\1' match the string 'aba'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(aa|a)a\\1$' match the string 'aaa'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a|aa)a\\1$' match the string 'aaa'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a+)a\\1$' match the string 'aaa'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '([abc]*)\\1' match the string 'abcabc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a)(b)c|ab' match the string 'ab'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a)+x' match the string 'aaax'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '([ac])+x' match the string 'aacx'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '([^/]*/)*sub1/' match the string 'd:msgs/tdir/sub1/trial/away.cpp'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '([^.]*)\\.([^:]*):[T ]+(.*)' match the string 'track1.title:TBlah blah blah'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '([^N]*N)+' match the string 'abNNxyzN'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '([^N]*N)+' match the string 'abNNxyz'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '([abc]*)x' match the string 'abcx'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '([abc]*)x' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '([xyz]*)x' match the string 'abcx'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a)+b|aac' match the string 'aac'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?P<i d>aaa)a' match the string 'aaaa'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?P<id>aaa)a' match the string 'aaaa'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?P<id>aa)(?P=id)' match the string 'aaaa'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?P<id>aa)(?P=xd)' match the string 'aaaa'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '\\1' match the string 'a'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'ab{0,}bc' match the string 'abbbbc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'ab{1,}bc' match the string 'abq'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'ab{1,}bc' match the string 'abbbbc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'ab{1,3}bc' match the string 'abbbbc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'ab{3,4}bc' match the string 'abbbbc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'ab{4,5}bc' match the string 'abbbbc'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'ab{0,1}bc' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'ab{0,1}c' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '^' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '$' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a[b-]' match the string 'a-'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a[b-a]' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '*a' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(*)b' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'a{1,}b{1,}c' match the string 'aabbabc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a**' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'a.+?c' match the string 'abcabc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a+|b){0,}' match the string 'ab'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a+|b){1,}' match the string 'ab'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(a+|b){0,1}' match the string 'ab'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '([abc])*d' match the string 'abbbcd'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '([abc])*bcd' match the string 'abcd'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '^(ab|cd)e' match the string 'abcde'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '((((((((((a))))))))))' match the string 'a'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '((((((((((a))))))))))\\10' match the string 'aa'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '((((((((((a))))))))))\\41' match the string ''? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)((((((((((a))))))))))\\41' match the string ''? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)abc' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)abc' match the string 'XBC'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)abc' match the string 'AXC'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)abc' match the string 'ABX'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)abc' match the string 'XABCY'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)abc' match the string 'ABABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab*c' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab*bc' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab*bc' match the string 'ABBC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab*?bc' match the string 'ABBBBC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab{0,}?bc' match the string 'ABBBBC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab+?bc' match the string 'ABBC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab+bc' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)ab+bc' match the string 'ABQ'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)ab{1,}bc' match the string 'ABQ'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)ab+bc' match the string 'ABBBBC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab{1,}?bc' match the string 'ABBBBC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab{1,3}?bc' match the string 'ABBBBC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab{3,4}?bc' match the string 'ABBBBC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab{4,5}?bc' match the string 'ABBBBC'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)ab??bc' match the string 'ABBC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab??bc' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab{0,1}?bc' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab??bc' match the string 'ABBBBC'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)ab??c' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab{0,1}?c' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)^abc$' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)^abc$' match the string 'ABCC'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)^abc' match the string 'ABCC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)^abc$' match the string 'AABC'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)abc$' match the string 'AABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)^' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)$' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a.c' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a.c' match the string 'AXC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a.*?c' match the string 'AXYZC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a.*c' match the string 'AXYZD'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)a[bc]d' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)a[bc]d' match the string 'ABD'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a[b-d]e' match the string 'ABD'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)a[b-d]e' match the string 'ACE'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a[b-d]' match the string 'AAC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a[-b]' match the string 'A-'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a[b-]' match the string 'A-'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a[b-a]' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)a[]b' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)a[' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)a]' match the string 'A]'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a[]]b' match the string 'A]B'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a[^bc]d' match the string 'AED'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a[^bc]d' match the string 'ABD'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)a[^-b]c' match the string 'ADC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a[^-b]c' match the string 'A-C'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)a[^]b]c' match the string 'A]C'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)a[^]b]c' match the string 'ADC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab|cd' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab|cd' match the string 'ABCD'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)()ef' match the string 'DEF'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)*a' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)(*)b' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)$b' match the string 'B'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)a\\' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)a\\(b' match the string 'A(B'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a\\(*b' match the string 'AB'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a\\(*b' match the string 'A((B'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a\\\\b' match the string 'A\\B'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)abc)' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)(abc' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)((a))' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(a)b(c)' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a+b+c' match the string 'AABBABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a{1,}b{1,}c' match the string 'AABBABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a**' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)a.+?c' match the string 'ABCABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a.*?c' match the string 'ABCABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a.{0,5}?c' match the string 'ABCABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(a+|b)*' match the string 'AB'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(a+|b){0,}' match the string 'AB'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(a+|b)+' match the string 'AB'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(a+|b){1,}' match the string 'AB'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(a+|b)?' match the string 'AB'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(a+|b){0,1}' match the string 'AB'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(a+|b){0,1}?' match the string 'AB'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i))(' match the string '-'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)[^ab]*' match the string 'CDE'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)abc' match the string ''? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)a*' match the string ''? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)([abc])*d' match the string 'ABBBCD'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)([abc])*bcd' match the string 'ABCD'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a|b|c|d|e' match the string 'E'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(a|b|c|d|e)f' match the string 'EF'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)abcd*efg' match the string 'ABCDEFG'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab*' match the string 'XABYABBBZ'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)ab*' match the string 'XAYABBBZ'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(ab|cd)e' match the string 'ABCDE'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)[abhgefdc]ij' match the string 'HIJ'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)^(ab|cd)e' match the string 'ABCDE'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)(abc|)ef' match the string 'ABCDEF'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(a|b)c*d' match the string 'ABCD'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(ab|ab*)bc' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a([bc]*)c*' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a([bc]*)(c*d)' match the string 'ABCD'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a([bc]+)(c*d)' match the string 'ABCD'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a([bc]*)(c+d)' match the string 'ABCD'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a[bcd]*dcdcde' match the string 'ADCDCDE'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)a[bcd]+dcdcde' match the string 'ADCDCDE'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)(ab|a)b*c' match the string 'ABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)((a)(b)c)(d)' match the string 'ABCD'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)[a-zA-Z_][a-zA-Z0-9_]*' match the string 'ALPHA'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)^a(bc+|b[eh])g|.h$' match the string 'ABH'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(bc+d$|ef*g.|h?i(j|k))' match the string 'EFFGZ'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(bc+d$|ef*g.|h?i(j|k))' match the string 'IJ'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(bc+d$|ef*g.|h?i(j|k))' match the string 'EFFG'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)(bc+d$|ef*g.|h?i(j|k))' match the string 'BCDD'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)(bc+d$|ef*g.|h?i(j|k))' match the string 'REFFGZ'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)((((((((((a))))))))))' match the string 'A'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)((((((((((a))))))))))\\10' match the string 'AA'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(((((((((a)))))))))' match the string 'A'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(?:(?:(?:(?:(?:(?:(?:(?:(?:(a))))))))))' match the string 'A'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(?:(?:(?:(?:(?:(?:(?:(?:(?:(a|b|c))))))))))' match the string 'C'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)multiple words of text' match the string 'UH-UH'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)multiple words' match the string 'MULTIPLE WORDS, YEAH'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(.*)c(.*)' match the string 'ABCDE'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)\\((.*), (.*)\\)' match the string '(A, B)'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)[k]' match the string 'AB'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?i)a[-]?c' match the string 'AC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)(abc)\\1' match the string 'ABCABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)([a-c]*)\\1' match the string 'ABCABC'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a(?!b).' match the string 'abad'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a(?=d).' match the string 'abad'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a(?=c|d).' match the string 'abad'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a(?:b|c|d)(.)' match the string 'ace'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a(?:b|c|d)*(.)' match the string 'ace'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a(?:b|c|d)+?(.)' match the string 'ace'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a(?:b|(c|e){1,2}?|d)+?(.)' match the string 'ace'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?<!-):(.*?)(?<!-):' match the string 'a:bc-:de:f'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?<!\\\\):(.*?)(?<!\\\\):' match the string 'a:bc\\:de:f'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?<!\\?)'(.*?)(?<!\\?)'' match the string 'a'bc?'de'f'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'w(?# comment' match the string 'w'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'w(?# comment 1)xy(?# comment 2)z' match the string 'wxyz'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)w' match the string 'W'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?x)w# comment 1\n x y\n # comment 2\n z' match the string 'wxyz'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '^abc' match the string 'jkl\nabc\nxyz'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '(?m)^abc' match the string 'jkl\nabc\nxyz'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?m)abc$' match the string 'jkl\nxyzabc\n123'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\w+' match the string '--ab_cd0123--'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '[\\w]+' match the string '--ab_cd0123--'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\D+' match the string '1234abc5678'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '[\\D]+' match the string '1234abc5678'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '[\\da-fA-F]+' match the string '123abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '([\\s]*)([\\S]*)([\\s]*)' match the string ' testing!1972'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(\\s*)(\\S*)(\\s*)' match the string ' testing!1972'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\xff' match the string '\u00ff'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\x00ff' match the string '\u00ff'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '\\t\\n\\v\\r\\f\\a' match the string '\t\n\u000b\r\f\u0007'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\t\n\u000b\r\f\u0007' match the string '\t\n\u000b\r\f\u0007'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\t\\n\\v\\r\\f\\a' match the string '\t\n\u000b\r\f\u0007'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '[\\t][\\n][\\v][\\r][\\f][\\b]' match the string '\t\n\u000b\r\f\b'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(([a-z]+):)?([a-z]+)$' match the string 'smil'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '((.)\\1+)' match the string ''? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '.*d' match the string 'abc\nabd'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(' match the string ''? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '[\\41]' match the string '!'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(x?)?' match the string 'x'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?x) foo ' match the string 'foo'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?<!abc)(d.f)' match the string 'abcdefdof'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '[\\w-]+' match the string 'laser_beam'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '.*?\\S *:' match the string 'xx:'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a[ ]*?\\ (\\d+).*' match the string 'a 10'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern 'a[ ]*?\\ (\\d+).*' match the string 'a 10'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?ms).*?x\\s*\\Z(.*)' match the string 'xx\nx\n'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)M+' match the string 'MMM'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)m+' match the string 'MMM'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)[M]+' match the string 'MMM'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?i)[m]+' match the string 'MMM'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '^*' match the string ''? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '\"(?:\\\\\"|[^\"])*?\"' match the string '\"\\\"\"'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '^.*?$' match the string 'one\ntwo\nthree\n'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern 'a[^>]*?b' match the string 'a>b'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '^a*?$' match the string 'foo'? Either answer with 'Yes.' or 'No.'", "ideal": "No."}, {"prompt": "will regex pattern '^((a)c)?(ab)$' match the string 'ab'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '^([ab]*?)(?=(b)?)c' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '^([ab]*?)(?!(b))c' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '^([ab]*?)(?<!(a))c' match the string 'abc'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '\\b.\\b' match the string 'a'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?u)\\b.\\b' match the string '\u00c4'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}, {"prompt": "will regex pattern '(?u)\\w' match the string '\u00c4'? Either answer with 'Yes.' or 'No.'", "ideal": "Yes."}], "columns": [{"key": "prompt", "header": "Prompt"}, {"key": "ideal", "header": "Ideal"}]}, "position": {"x": -16, "y": 160}, "selected": false, "positionAbsolute": {"x": -16, "y": 160}, "dragging": false}], "edges": [{"source": "prompt-regex-match", "sourceHandle": "prompt", "target": "eval-regex-match", "targetHandle": "responseBatch", "interactionWidth": 100, "markerEnd": {"type": "arrow", "width": "22px", "height": "22px"}, "id": "reactflow__edge-prompt-1686756357355prompt-eval-1686756357355responseBatch"}, {"source": "prompt-regex-match", "sourceHandle": "prompt", "target": "inspect-regex-match", "targetHandle": "input", "interactionWidth": 100, "markerEnd": {"type": "arrow", "width": "22px", "height": "22px"}, "id": "reactflow__edge-prompt-1686756357355prompt-inspect-1686756357355input"}, {"source": "eval-regex-match", "sourceHandle": "output", "target": "vis-regex-match", "targetHandle": "input", "interactionWidth": 100, "markerEnd": {"type": "arrow", "width": "22px", "height": "22px"}, "id": "reactflow__edge-eval-1686756357355output-vis-1686756357355input"}, {"source": "table-regex-match", "sourceHandle": "Prompt", "target": "prompt-regex-match", "targetHandle": "prompt", "interactionWidth": 100, "markerEnd": {"type": "arrow", "width": "22px", "height": "22px"}, "id": "reactflow__edge-table-1686756385002Prompt-prompt-1686756357355prompt"}], "viewport": {"x": 144, "y": 37, "zoom": 1}}, "cache": {"eval-1686756357355.json": {}, "inspect-1686756357355.json": {}, "prompt-1686756357355.json": {}, "table-1686756385002.json": {}, "vis-1686756357355.json": {}}} |