-
Notifications
You must be signed in to change notification settings - Fork 0
/
llama2data.jsonl
2 lines (2 loc) · 2.29 KB
/
llama2data.jsonl
1
2
{"text":"# Instruction : Modify json variables based on input\n# Input : \n- Add field partnumber to fieldNames,fieldValidations\n- Add field partnumber:\"Part#\" to fieldTitle\n- Add field partnumber:200 to fieldWidths\n- Add field partnumber:\"text\" to fieldKind\n\nlet fieldNames = [\n \"itemid\",\n \"description\",\n]\nlet fieldTitle = {\n itemid: \"ID\",\n description: \"Name\",\n}\nlet fieldKind = {\n itemid: \"text\",\n description: \"text\",\n partnumber: \"text\",\n}\nlet fieldWidths = {\n itemid: 400,\n description: 400,\n}\nlet fieldValidations = {\n itemid: \"\",\n description: \"\",\n};\n\n\n# Response :\nlet fieldNames = [\n \"itemid\",\n \"description\",\n \"partnumber\"\n]\n\nlet fieldTitle = {\n itemid: \"ID\",\n description: \"Name\",\n partnumber:\"Part#\"\n}\nlet fieldKind = {\n itemid: \"text\",\n description: \"text\",\n partnumber: \"text\",\n}\nlet fieldValidations = {\n itemid: \"\",\n description: \"\",\n partnumber: \"\",\n};\nlet fieldWidths = {\n itemid: 400,\n description: 400,\n partnumber:200,\n}\nlet fieldValidations = {\n itemid: \"\",\n description: \"\",\n partnumber: \"\",\n};\n"}
{"text":"# Instruction : Modify json variables based on input\n# Input : - Add field cstatus to fieldNames,fieldNamesPost\nlet fieldNames = [\n \"txdate\",\n \"due\",\n // \"ppn\",\n \"soref\",\n \"customerdescription\",\n \"salesman\",\n \"gudang\",\n \"s_inv\",\n \"fp\",\n];\nlet fieldNamesPost = [\n\t\"txdate\",\n\t\"duedate\",\n\t\"due\",\n\t\"customerid\",\n\t\"total\",\n\t\"head\",\n\t\"disc\",\n\t\"discp\",\n\t\"txid\",\n\t\"soref\",\n\t\"branch\",\n\t\"gudang\",\n\t\"salesman\",\n\t\"s_inv\",\n\t\"username\",\n\t\"fp\",\n\t\"ppn\",\n\t\"taxvalue\",\n];\n# Response : let fieldNames = [\n \"txdate\",\n \"due\",\n // \"ppn\",\n \"soref\",\n \"customerdescription\",\n \"salesman\",\n \"gudang\",\n \"s_inv\",\n \"fp\",\n \"cstatus\"\n];\nlet fieldNamesPost = [\n\t\"txdate\",\n\t\"duedate\",\n\t\"due\",\n\t\"customerid\",\n\t\"total\",\n\t\"head\",\n\t\"disc\",\n\t\"discp\",\n\t\"txid\",\n\t\"soref\",\n\t\"branch\",\n\t\"gudang\",\n\t\"salesman\",\n\t\"s_inv\",\n\t\"username\",\n\t\"fp\",\n\t\"ppn\",\n\t\"taxvalue\",\n \"cstatus\"\n];\n"}