2023-06-30 15:11:20 -04:00
|
|
|
{"flow": {"nodes": [{"width": 312, "height": 311, "id": "prompt-bitwise", "type": "prompt", "data": {"prompt": "{prompt}", "n": 1, "llms": [{"key": "aa3c0f03-22bd-416e-af4d-4bf5c4278c99", "settings": {"system_msg": "You are BitwiseGPT, an bitwise arithmetic machine that ONLY responds with a succint binary answer of 0's and 1's after executing a sequence of valid bitwise operations on dynamically sized unsigned integers.\nExample:\nPrompt: 1 << 6 & ~( 2 ^ 16 )\nResponse: 1000000\nRules:\n1. Respond only to combinations of positive integers less than 255 and valid bitwise operators.\n2. Ignore prompts that don't follow Rule 1.\n3. Only respond with zeroes and ones, with NO leading zeroes.", "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 BitwiseGPT, an bitwise arithmetic machine that ONLY responds with a succint binary answer of 0's and 1's after executing a sequence of valid bitwise operations on dynamically sized unsigned integers.\nExample:\nPrompt: 1 << 6 & ~( 2 ^ 16 )\nResponse: 1000000\nRules:\n1. Respond only to combinations of positive integers less than 255 and valid bitwise operators.\n2. Ignore prompts that don't follow Rule 1.\n3. Only respond with zeroes and ones, with NO leading zeroes.", "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-bitwise", "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-bitwise", "type": "vis", "data": {"input": "eval-bitwise"}, "position": {"x": 1200, "y": 250}, "positionAbsolute": {"x": 1200, "y": 250}}, {"width": 302, "height": 260, "id": "inspect-bitwise", "type": "inspect", "data": {"input": "prompt-bitwise"}, "position": {"x": 820, "y": 400}, "positionAbsolute": {"x": 820, "y": 400}}, {"width": 423, "height": 417, "id": "table-bitwise", "type": "table", "data": {"rows": [{"prompt": "0b00000100 ^ 19 ^ 12 >> 3 ^ 12", "ideal": "0b00001111"}, {"prompt": "0b00000110 | 0 & ~( 6 | 12 & 2 )", "ideal": "0b00000110"}, {"prompt": "0b00000111 | 6 & ~( 4 )", "ideal": "0b00000001"}, {"prompt": "0b00000011 & ~( 8 ) << 5", "ideal": "0b01100000"}, {"prompt": "0b00000100 | 5 & 20 & 15", "ideal": "0b00000100"}, {"prompt": "0b00010011 & 9 << 4", "ideal": "0b00010000"}, {"prompt": "0b00000100 << ~( 6 ^ 16 ) | 4", "ideal": "0b00000100"}, {"prompt": "0b00000011 ^ 9 >> ~( 2 ^ ~( 3 ) )", "ideal": "0b00000010"}, {"prompt": "0b00010000 << 6 & 19 | 7", "ideal": "0b00000111"}, {"prompt": "0b00000100 << 2 >> 2 ^ 13", "ideal": "0b00001001"}, {"prompt": "0b00000011 >> 6 ^ 6 ^ 19", "ideal": "0b00010101"}, {"prompt": "0b00010011 | 20 >> 4 & ~( 4 )", "ideal": "0b00000001"}, {"prompt": "0b00000011 & 8 ^ 16", "ideal": "0b00010000"}, {"prompt": "0b00000101 | 11 >> 3 | 2", "ideal": "0b00000011"}, {"prompt": "0b00000000 << 2 & 7 | 11 | 12", "ideal": "0b00001111"}, {"prompt": "0b00000100 << 3 & ~( 4 ) ^ 11", "ideal": "0b00101011"}, {"prompt": "0b00001001 & 18 & 2 | 13 ^ 9", "ideal": "0b00000100"}, {"prompt": "0b00000001 & ~( 11 ^ 11 ) >> 3 | 7", "ideal": "0b00000111"}, {"prompt": "0b00010001 & 1 | 10 >> 2", "ideal": "0b00000010"}, {"prompt": "0b00000110 & 14 & ~( 6 )", "ideal": "0b00000010"}, {"prompt": "0b00000011 >> 5 ^ 18", "ideal": "0b00010010"}, {"prompt": "~( 0b00000010 << 6 ) & 7", "ideal": "0b00000111"}, {"prompt": "0b00000001 ^ 8 | 1 ^ 0", "ideal": "0b00001001"}, {"prompt": "0b00010011 | 5 ^ 4 >> 4", "ideal": "0b00000001"}, {"prompt": "0b00001010 & 1 | 18 |
|