From a2490efa80da23ed2f201a69aac2a683763cd84e Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Sat, 20 May 2023 02:37:57 +0100 Subject: [PATCH] Add content dirs for prompt engineering --- public/jsons/roadmaps/prompt-engineering.json | 4811 +++++++++++------ .../100-basic-llm/100-what-are-llms.md | 1 + .../content/100-basic-llm/101-llm-types.md | 1 + .../100-basic-llm/102-how-llms-built.md | 1 + .../100-basic-llm/103-llm-vocabulary.md | 1 + .../content/100-basic-llm/index.md | 1 + .../100-basic-prompting.md | 1 + .../101-need-for-prompting.md | 1 + .../101-prompting-introduction/index.md | 1 + .../102-prompts/101-parts-of-a-prompt.md | 1 + .../good-prompts/100-use-delimiters.md | 1 + .../good-prompts/101-structured-data.md | 1 + .../good-prompts/102-style-information.md | 1 + .../good-prompts/103-give-conditions.md | 1 + .../good-prompts/104-give-examples.md | 1 + .../good-prompts/105-include-steps.md | 1 + .../good-prompts/106-workout-solution.md | 1 + .../good-prompts/107-iterate-refine.md | 1 + .../content/102-prompts/good-prompts/index.md | 1 + .../content/102-prompts/index.md | 1 + .../100-role-prompting.md | 1 + .../101-few-shot-prompting.md | 1 + .../102-chain-of-thought.md | 1 + .../103-zeroshot-chain-of-thought.md | 1 + .../prompting-techniques/104-least-to-most.md | 1 + .../prompting-techniques/105-dual-prompt.md | 1 + .../106-combining-techniques.md | 1 + .../102-prompts/prompting-techniques/index.md | 1 + .../103-real-world/100-structured-data.md | 1 + .../content/103-real-world/101-inferring.md | 1 + .../103-real-world/102-writing-emails.md | 1 + .../103-real-world/103-coding-assistance.md | 1 + .../content/103-real-world/104-study-buddy.md | 1 + .../103-real-world/105-designing-chatbots.md | 1 + .../content/103-real-world/index.md | 1 + .../104-llm-pitfalls/100-citing-sources.md | 1 + .../content/104-llm-pitfalls/101-bias.md | 1 + .../104-llm-pitfalls/102-hallucinations.md | 1 + .../content/104-llm-pitfalls/103-math.md | 1 + .../104-llm-pitfalls/104-prompt-hacking.md | 1 + .../content/104-llm-pitfalls/index.md | 1 + .../content/105-reliability/100-debiasing.md | 1 + .../content/105-reliability/101-ensembling.md | 1 + .../105-reliability/102-self-evaluation.md | 1 + .../105-reliability/103-calibrating-llms.md | 1 + .../content/105-reliability/104-math.md | 1 + .../content/105-reliability/index.md | 1 + .../106-llm-settings/100-temperature.md | 1 + .../content/106-llm-settings/101-top-p.md | 1 + .../102-other-hyper-params.md | 1 + .../content/106-llm-settings/index.md | 1 + .../100-prompt-injection.md | 1 + .../107-prompt-hacking/101-prompt-leaking.md | 1 + .../107-prompt-hacking/102-jailbreaking.md | 1 + .../103-defensive-measures.md | 1 + .../104-offensive-measures.md | 1 + .../content/107-prompt-hacking/index.md | 1 + .../100-style-modifiers.md | 1 + .../101-quality-boosters.md | 1 + .../108-image-prompting/102-weighted-terms.md | 1 + .../103-deformed-generations.md | 1 + .../content/108-image-prompting/index.md | 1 + .../{content.md => content/index.md} | 0 63 files changed, 3099 insertions(+), 1773 deletions(-) create mode 100644 src/data/roadmaps/prompt-engineering/content/100-basic-llm/100-what-are-llms.md create mode 100644 src/data/roadmaps/prompt-engineering/content/100-basic-llm/101-llm-types.md create mode 100644 src/data/roadmaps/prompt-engineering/content/100-basic-llm/102-how-llms-built.md create mode 100644 src/data/roadmaps/prompt-engineering/content/100-basic-llm/103-llm-vocabulary.md create mode 100644 src/data/roadmaps/prompt-engineering/content/100-basic-llm/index.md create mode 100644 src/data/roadmaps/prompt-engineering/content/101-prompting-introduction/100-basic-prompting.md create mode 100644 src/data/roadmaps/prompt-engineering/content/101-prompting-introduction/101-need-for-prompting.md create mode 100644 src/data/roadmaps/prompt-engineering/content/101-prompting-introduction/index.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/101-parts-of-a-prompt.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/100-use-delimiters.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/101-structured-data.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/102-style-information.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/103-give-conditions.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/104-give-examples.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/105-include-steps.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/106-workout-solution.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/107-iterate-refine.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/index.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/index.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/100-role-prompting.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/101-few-shot-prompting.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/102-chain-of-thought.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/103-zeroshot-chain-of-thought.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/104-least-to-most.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/105-dual-prompt.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/106-combining-techniques.md create mode 100644 src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/index.md create mode 100644 src/data/roadmaps/prompt-engineering/content/103-real-world/100-structured-data.md create mode 100644 src/data/roadmaps/prompt-engineering/content/103-real-world/101-inferring.md create mode 100644 src/data/roadmaps/prompt-engineering/content/103-real-world/102-writing-emails.md create mode 100644 src/data/roadmaps/prompt-engineering/content/103-real-world/103-coding-assistance.md create mode 100644 src/data/roadmaps/prompt-engineering/content/103-real-world/104-study-buddy.md create mode 100644 src/data/roadmaps/prompt-engineering/content/103-real-world/105-designing-chatbots.md create mode 100644 src/data/roadmaps/prompt-engineering/content/103-real-world/index.md create mode 100644 src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/100-citing-sources.md create mode 100644 src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/101-bias.md create mode 100644 src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/102-hallucinations.md create mode 100644 src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/103-math.md create mode 100644 src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/104-prompt-hacking.md create mode 100644 src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/index.md create mode 100644 src/data/roadmaps/prompt-engineering/content/105-reliability/100-debiasing.md create mode 100644 src/data/roadmaps/prompt-engineering/content/105-reliability/101-ensembling.md create mode 100644 src/data/roadmaps/prompt-engineering/content/105-reliability/102-self-evaluation.md create mode 100644 src/data/roadmaps/prompt-engineering/content/105-reliability/103-calibrating-llms.md create mode 100644 src/data/roadmaps/prompt-engineering/content/105-reliability/104-math.md create mode 100644 src/data/roadmaps/prompt-engineering/content/105-reliability/index.md create mode 100644 src/data/roadmaps/prompt-engineering/content/106-llm-settings/100-temperature.md create mode 100644 src/data/roadmaps/prompt-engineering/content/106-llm-settings/101-top-p.md create mode 100644 src/data/roadmaps/prompt-engineering/content/106-llm-settings/102-other-hyper-params.md create mode 100644 src/data/roadmaps/prompt-engineering/content/106-llm-settings/index.md create mode 100644 src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/100-prompt-injection.md create mode 100644 src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/101-prompt-leaking.md create mode 100644 src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/102-jailbreaking.md create mode 100644 src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/103-defensive-measures.md create mode 100644 src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/104-offensive-measures.md create mode 100644 src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/index.md create mode 100644 src/data/roadmaps/prompt-engineering/content/108-image-prompting/100-style-modifiers.md create mode 100644 src/data/roadmaps/prompt-engineering/content/108-image-prompting/101-quality-boosters.md create mode 100644 src/data/roadmaps/prompt-engineering/content/108-image-prompting/102-weighted-terms.md create mode 100644 src/data/roadmaps/prompt-engineering/content/108-image-prompting/103-deformed-generations.md create mode 100644 src/data/roadmaps/prompt-engineering/content/108-image-prompting/index.md rename src/data/roadmaps/prompt-engineering/{content.md => content/index.md} (100%) diff --git a/public/jsons/roadmaps/prompt-engineering.json b/public/jsons/roadmaps/prompt-engineering.json index 1b6b8dffa..2fb9e514d 100644 --- a/public/jsons/roadmaps/prompt-engineering.json +++ b/public/jsons/roadmaps/prompt-engineering.json @@ -5,7 +5,7 @@ { "ID": "3029", "typeID": "Label", - "zOrder": "27", + "zOrder": "21", "measuredW": "289", "measuredH": "40", "x": "711", @@ -18,7 +18,7 @@ { "ID": "3030", "typeID": "Arrow", - "zOrder": "28", + "zOrder": "22", "w": "1", "h": "103", "measuredW": "150", @@ -48,7 +48,7 @@ { "ID": "3031", "typeID": "Canvas", - "zOrder": "29", + "zOrder": "23", "w": "361", "h": "150", "measuredW": "100", @@ -59,7 +59,7 @@ { "ID": "3032", "typeID": "Label", - "zOrder": "30", + "zOrder": "24", "measuredW": "333", "measuredH": "26", "x": "1174", @@ -72,7 +72,7 @@ { "ID": "3033", "typeID": "Label", - "zOrder": "31", + "zOrder": "25", "measuredW": "287", "measuredH": "26", "x": "1174", @@ -85,7 +85,7 @@ { "ID": "3034", "typeID": "__group__", - "zOrder": "32", + "zOrder": "26", "measuredW": "329", "measuredH": "51", "w": "329", @@ -134,7 +134,7 @@ { "ID": "3035", "typeID": "Arrow", - "zOrder": "33", + "zOrder": "27", "w": "1", "h": "103", "measuredW": "150", @@ -163,7 +163,7 @@ { "ID": "3036", "typeID": "Canvas", - "zOrder": "34", + "zOrder": "28", "w": "370", "h": "165", "measuredW": "100", @@ -174,7 +174,7 @@ { "ID": "3037", "typeID": "__group__", - "zOrder": "35", + "zOrder": "29", "measuredW": "247", "measuredH": "25", "w": "247", @@ -256,7 +256,7 @@ { "ID": "3038", "typeID": "__group__", - "zOrder": "36", + "zOrder": "30", "measuredW": "212", "measuredH": "25", "w": "212", @@ -338,7 +338,7 @@ { "ID": "3041", "typeID": "Label", - "zOrder": "37", + "zOrder": "31", "measuredW": "291", "measuredH": "32", "x": "194", @@ -348,118 +348,10 @@ "size": "24" } }, - { - "ID": "3045", - "typeID": "TextArea", - "zOrder": "38", - "w": "299", - "h": "49", - "measuredW": "200", - "measuredH": "140", - "x": "706", - "y": "503", - "properties": { - "color": "16776960" - } - }, - { - "ID": "3046", - "typeID": "Label", - "zOrder": "39", - "measuredW": "160", - "measuredH": "25", - "x": "776", - "y": "515", - "properties": { - "size": "17", - "text": "Basic LLM Concepts" - } - }, - { - "ID": "3047", - "typeID": "TextArea", - "zOrder": "40", - "w": "295", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "1161", - "y": "452", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3048", - "typeID": "Label", - "zOrder": "41", - "measuredW": "126", - "measuredH": "25", - "x": "1246", - "y": "462", - "properties": { - "size": "17", - "text": "What are LLMs?" - } - }, - { - "ID": "3049", - "typeID": "TextArea", - "zOrder": "42", - "w": "295", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "1161", - "y": "502", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3050", - "typeID": "Label", - "zOrder": "43", - "measuredW": "112", - "measuredH": "25", - "x": "1253", - "y": "512", - "properties": { - "size": "17", - "text": "Types of LLMs" - } - }, - { - "ID": "3051", - "typeID": "TextArea", - "zOrder": "44", - "w": "295", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "1161", - "y": "551", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3052", - "typeID": "Label", - "zOrder": "45", - "measuredW": "159", - "measuredH": "25", - "x": "1229", - "y": "561", - "properties": { - "size": "17", - "text": "How are LLMs Built?" - } - }, { "ID": "3053", "typeID": "Arrow", - "zOrder": "26", + "zOrder": "20", "w": "205", "h": "1", "measuredW": "150", @@ -489,7 +381,7 @@ { "ID": "3054", "typeID": "Arrow", - "zOrder": "25", + "zOrder": "19", "w": "170", "h": "45", "measuredW": "150", @@ -519,7 +411,7 @@ { "ID": "3055", "typeID": "Arrow", - "zOrder": "24", + "zOrder": "18", "w": "167", "h": "42", "measuredW": "150", @@ -546,37 +438,10 @@ } } }, - { - "ID": "3056", - "typeID": "TextArea", - "zOrder": "46", - "w": "299", - "h": "49", - "measuredW": "200", - "measuredH": "140", - "x": "706", - "y": "557", - "properties": { - "color": "16776960" - } - }, - { - "ID": "3057", - "typeID": "Label", - "zOrder": "47", - "measuredW": "195", - "measuredH": "25", - "x": "758", - "y": "569", - "properties": { - "size": "17", - "text": "Introduction to Prompting" - } - }, { "ID": "3058", "typeID": "Arrow", - "zOrder": "23", + "zOrder": "17", "w": "227", "h": "3", "measuredW": "150", @@ -603,64 +468,10 @@ } } }, - { - "ID": "3059", - "typeID": "TextArea", - "zOrder": "48", - "w": "319", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "251", - "y": "560", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3060", - "typeID": "Label", - "zOrder": "49", - "measuredW": "226", - "measuredH": "25", - "x": "308", - "y": "570", - "properties": { - "size": "17", - "text": "Need for Prompt Engineering" - } - }, - { - "ID": "3061", - "typeID": "TextArea", - "zOrder": "50", - "w": "319", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "251", - "y": "510", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3062", - "typeID": "Label", - "zOrder": "51", - "measuredW": "126", - "measuredH": "25", - "x": "358", - "y": "520", - "properties": { - "size": "17", - "text": "Basic Prompting" - } - }, { "ID": "3063", "typeID": "Arrow", - "zOrder": "22", + "zOrder": "16", "w": "158", "h": "44", "measuredW": "150", @@ -687,64 +498,10 @@ } } }, - { - "ID": "3065", - "typeID": "TextArea", - "zOrder": "52", - "w": "245", - "h": "49", - "measuredW": "200", - "measuredH": "140", - "x": "171", - "y": "803", - "properties": { - "color": "16776960" - } - }, - { - "ID": "3066", - "typeID": "Label", - "zOrder": "53", - "measuredW": "64", - "measuredH": "25", - "x": "262", - "y": "815", - "properties": { - "size": "17", - "text": "Prompts" - } - }, - { - "ID": "3067", - "typeID": "TextArea", - "zOrder": "87", - "w": "306", - "h": "53", - "measuredW": "200", - "measuredH": "140", - "x": "1189", - "y": "1214", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3068", - "typeID": "Label", - "zOrder": "88", - "measuredW": "133", - "measuredH": "25", - "x": "1275", - "y": "1228", - "properties": { - "size": "17", - "text": "Parts of a Prompt" - } - }, { "ID": "3223", "typeID": "TextArea", - "zOrder": "21", + "zOrder": "15", "w": "715", "h": "466", "measuredW": "200", @@ -755,461 +512,346 @@ { "ID": "3224", "typeID": "Label", - "zOrder": "70", + "zOrder": "48", "measuredW": "239", "measuredH": "32", - "x": "536", - "y": "829", + "x": "539", + "y": "840", "properties": { "text": "Writing Good Prompts", "size": "24" } }, { - "ID": "3225", - "typeID": "TextArea", - "zOrder": "54", - "w": "30", - "h": "30", - "measuredW": "200", - "measuredH": "140", - "x": "537", - "y": "878" - }, - { - "ID": "3226", - "typeID": "Label", - "zOrder": "55", - "measuredW": "492", - "measuredH": "28", - "x": "582", - "y": "881", + "ID": "3241", + "typeID": "Arrow", + "zOrder": "14", + "w": "324", + "h": "1", + "measuredW": "150", + "measuredH": "100", + "x": "516", + "y": "838", "properties": { - "text": "Use Delimiters to distinguish the data from the prompt.", - "size": "20" + "curvature": "0", + "leftArrow": "false", + "rightArrow": "false", + "color": "10027263", + "stroke": "dotted", + "p0": { + "x": 324, + "y": 0.33333333333337123 + }, + "p1": { + "x": 0.49974886631515103, + "y": -0.0005498027614157119 + }, + "p2": { + "x": -0.33333333333337123, + "y": 0.33333333333337123 + } } }, { - "ID": "3227", + "ID": "3272", "typeID": "TextArea", - "zOrder": "56", - "w": "30", - "h": "30", + "zOrder": "49", + "w": "306", + "h": "424", "measuredW": "200", "measuredH": "140", - "x": "537", - "y": "919" + "x": "1189", + "y": "801" }, { - "ID": "3228", + "ID": "3273", "typeID": "Label", "zOrder": "57", - "measuredW": "471", - "measuredH": "28", - "x": "583", - "y": "921", - "properties": { - "text": "Ask for Structured Output e.g. JSON, XML, HTML etc.", - "size": "20" - } - }, - { - "ID": "3229", - "typeID": "TextArea", - "zOrder": "58", - "w": "30", - "h": "30", - "measuredW": "200", - "measuredH": "140", - "x": "537", - "y": "961" - }, - { - "ID": "3230", - "typeID": "Label", - "zOrder": "59", - "measuredW": "477", - "measuredH": "28", - "x": "583", - "y": "963", + "measuredW": "182", + "measuredH": "26", + "x": "1251", + "y": "818", "properties": { - "text": "Include style information to modify the tone of output.", - "size": "20" + "size": "18", + "text": "Prompting Techniques" } }, { - "ID": "3231", - "typeID": "TextArea", - "zOrder": "60", - "w": "30", - "h": "30", - "measuredW": "200", - "measuredH": "140", - "x": "537", - "y": "1003" - }, - { - "ID": "3232", - "typeID": "Label", - "zOrder": "61", - "measuredW": "502", - "measuredH": "28", - "x": "583", - "y": "1005", + "ID": "3274", + "typeID": "Arrow", + "zOrder": "13", + "w": "1", + "h": "103", + "measuredW": "150", + "measuredH": "100", + "x": "855", + "y": "595", "properties": { - "text": "Give conditions to the model and ask if they are verified.", - "size": "20" + "curvature": "0", + "leftArrow": "false", + "rightArrow": "false", + "color": "10027263", + "p0": { + "x": 0, + "y": -0.2895200003503646 + }, + "p1": { + "x": 0.49999999999999967, + "y": 0 + }, + "p2": { + "x": 0, + "y": 102.7942452326543 + } } }, { - "ID": "3233", - "typeID": "TextArea", - "zOrder": "62", - "w": "30", - "h": "30", - "measuredW": "200", - "measuredH": "140", - "x": "537", - "y": "1045" - }, - { - "ID": "3234", - "typeID": "Label", - "zOrder": "63", - "measuredW": "500", - "measuredH": "28", - "x": "583", - "y": "1047", + "ID": "3275", + "typeID": "Arrow", + "zOrder": "59", + "w": "549", + "h": "1", + "measuredW": "150", + "measuredH": "100", + "x": "306", + "y": "698", "properties": { - "text": "Give successful examples of completing tasks then ask.", - "size": "20" + "curvature": "0", + "leftArrow": "false", + "rightArrow": "false", + "color": "10027263", + "p0": { + "x": 549.0409007620017, + "y": -0.20575476734575204 + }, + "p1": { + "x": 0.4999999999999996, + "y": 0 + }, + "p2": { + "x": 0.39319576773937115, + "y": -0.20575476734575204 + } } }, { - "ID": "3235", - "typeID": "TextArea", - "zOrder": "64", - "w": "30", - "h": "30", - "measuredW": "200", - "measuredH": "140", - "x": "537", - "y": "1087" - }, - { - "ID": "3236", - "typeID": "Label", - "zOrder": "65", - "measuredW": "399", - "measuredH": "28", - "x": "583", - "y": "1089", + "ID": "3276", + "typeID": "Arrow", + "zOrder": "12", + "w": "1", + "h": "655", + "measuredW": "150", + "measuredH": "100", + "x": "306", + "y": "699", "properties": { - "text": "Specify the steps required to perform a task.", - "size": "20" + "curvature": "0", + "leftArrow": "false", + "rightArrow": "false", + "color": "10027263", + "p0": { + "x": 0, + "y": -0.2895200003503646 + }, + "p1": { + "x": 0.4999999999999996, + "y": 0 + }, + "p2": { + "x": 0, + "y": 654.8846543950108 + } } }, { - "ID": "3237", - "typeID": "TextArea", - "zOrder": "66", - "w": "30", - "h": "30", - "measuredW": "200", - "measuredH": "140", - "x": "537", - "y": "1129" - }, - { - "ID": "3238", - "typeID": "Label", - "zOrder": "67", - "measuredW": "589", - "measuredH": "28", - "x": "583", - "y": "1131", + "ID": "3277", + "typeID": "Arrow", + "zOrder": "11", + "w": "148", + "h": "1", + "measuredW": "150", + "measuredH": "100", + "x": "399", + "y": "827", "properties": { - "text": "Instruct model to work out its own solution before giving answers. ", - "size": "20" + "curvature": "0", + "leftArrow": "false", + "rightArrow": "false", + "color": "10027263", + "stroke": "dotted", + "p0": { + "x": 0, + "y": 0 + }, + "p1": { + "x": 0.49962160010312034, + "y": -0.0008638298060972025 + }, + "p2": { + "x": 148.24514398610984, + "y": 0 + } } }, { - "ID": "3239", - "typeID": "TextArea", - "zOrder": "68", - "w": "30", - "h": "30", - "measuredW": "200", - "measuredH": "140", - "x": "537", - "y": "1171" - }, - { - "ID": "3240", - "typeID": "Label", - "zOrder": "69", - "measuredW": "290", - "measuredH": "28", - "x": "583", - "y": "1173", + "ID": "3292", + "typeID": "Arrow", + "zOrder": "10", + "w": "1", + "h": "107", + "measuredW": "150", + "measuredH": "100", + "x": "305", + "y": "1357", "properties": { - "text": "Iterate and Refine your prompts.", - "size": "20" + "curvature": "0", + "leftArrow": "false", + "rightArrow": "false", + "color": "10027263", + "stroke": "dotted", + "p0": { + "x": 0, + "y": -0.00475478501221005 + }, + "p1": { + "x": 0.4996216001031205, + "y": -0.0008638298060972024 + }, + "p2": { + "x": 0, + "y": 107.05377796756977 + } } }, { - "ID": "3241", + "ID": "3294", "typeID": "Arrow", - "zOrder": "20", - "w": "324", + "zOrder": "9", + "w": "1168", "h": "1", "measuredW": "150", "measuredH": "100", - "x": "516", - "y": "838", + "x": "306", + "y": "1356", "properties": { "curvature": "0", "leftArrow": "false", "rightArrow": "false", "color": "10027263", - "stroke": "dotted", "p0": { - "x": 324, - "y": 0.33333333333337123 + "x": 1168.2424242424242, + "y": -0.20575476734575204 }, "p1": { - "x": 0.49974886631515103, - "y": -0.0005498027614157119 + "x": 0.49999999999999944, + "y": 0 }, "p2": { - "x": -0.33333333333337123, - "y": 0.33333333333337123 + "x": 0.39319576773937115, + "y": -0.20575476734575204 } } }, { - "ID": "3243", - "typeID": "TextArea", - "zOrder": "72", - "w": "269", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "1207", - "y": "853", + "ID": "3309", + "typeID": "Arrow", + "zOrder": "8", + "w": "1", + "h": "102", + "measuredW": "150", + "measuredH": "100", + "x": "630", + "y": "1357", "properties": { - "color": "16770457" + "curvature": "0", + "leftArrow": "false", + "rightArrow": "false", + "color": "10027263", + "stroke": "dotted", + "p0": { + "x": 0, + "y": -0.00475478501221005 + }, + "p1": { + "x": 0.49962160010312046, + "y": -0.0008638298060972025 + }, + "p2": { + "x": 0, + "y": 102.09090909090901 + } } }, { - "ID": "3244", - "typeID": "Label", + "ID": "3310", + "typeID": "Arrow", "zOrder": "73", - "measuredW": "119", - "measuredH": "25", - "x": "1282", - "y": "863", - "properties": { - "size": "17", - "text": "Role Prompting" - } - }, - { - "ID": "3245", - "typeID": "TextArea", - "zOrder": "74", - "w": "269", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "1207", - "y": "903", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3246", - "typeID": "Label", - "zOrder": "75", - "measuredW": "153", - "measuredH": "25", - "x": "1265", - "y": "913", - "properties": { - "size": "17", - "text": "Few Shot Prompting" - } - }, - { - "ID": "3247", - "typeID": "TextArea", - "zOrder": "76", - "w": "269", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "1207", - "y": "954", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3248", - "typeID": "Label", - "zOrder": "77", - "measuredW": "214", - "measuredH": "25", - "x": "1235", - "y": "964", - "properties": { - "size": "17", - "text": "Chain of Thought Prompting" - } - }, - { - "ID": "3249", - "typeID": "TextArea", - "zOrder": "78", - "w": "269", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "1207", - "y": "1003", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3250", - "typeID": "Label", - "zOrder": "79", - "measuredW": "211", - "measuredH": "25", - "x": "1236", - "y": "1013", + "w": "1", + "h": "102", + "measuredW": "150", + "measuredH": "100", + "x": "941", + "y": "1357", "properties": { - "size": "17", - "text": "Zero Shot Chain of Thought" + "curvature": "0", + "leftArrow": "false", + "rightArrow": "false", + "color": "10027263", + "stroke": "dotted", + "p0": { + "x": 0, + "y": -0.00475478501221005 + }, + "p1": { + "x": 0.49962160010312046, + "y": -0.0008638298060972025 + }, + "p2": { + "x": 0, + "y": 102.09090909090901 + } } }, { - "ID": "3251", - "typeID": "TextArea", + "ID": "3323", + "typeID": "Arrow", "zOrder": "80", - "w": "269", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "1207", - "y": "1053", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3252", - "typeID": "Label", - "zOrder": "81", - "measuredW": "188", - "measuredH": "25", - "x": "1248", - "y": "1063", - "properties": { - "size": "17", - "text": "Least to Most Prompting" - } - }, - { - "ID": "3253", - "typeID": "TextArea", - "zOrder": "82", - "w": "269", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "1207", - "y": "1103", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3254", - "typeID": "Label", - "zOrder": "83", - "measuredW": "174", - "measuredH": "25", - "x": "1255", - "y": "1113", - "properties": { - "size": "17", - "text": "Dual Prompt Approach" - } - }, - { - "ID": "3255", - "typeID": "TextArea", - "zOrder": "84", - "w": "269", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "1207", - "y": "1153", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3256", - "typeID": "Label", - "zOrder": "85", - "measuredW": "175", - "measuredH": "25", - "x": "1254", - "y": "1163", - "properties": { - "size": "17", - "text": "Combining Techniques" - } - }, - { - "ID": "3272", - "typeID": "TextArea", - "zOrder": "71", - "w": "306", - "h": "424", - "measuredW": "200", - "measuredH": "140", - "x": "1189", - "y": "801" - }, - { - "ID": "3273", - "typeID": "Label", - "zOrder": "86", - "measuredW": "182", - "measuredH": "26", - "x": "1251", - "y": "817", + "w": "1", + "h": "102", + "measuredW": "150", + "measuredH": "100", + "x": "1278", + "y": "1357", "properties": { - "size": "18", - "text": "Prompting Techniques" + "curvature": "0", + "leftArrow": "false", + "rightArrow": "false", + "color": "10027263", + "stroke": "dotted", + "p0": { + "x": 0, + "y": -0.00475478501221005 + }, + "p1": { + "x": 0.49962160010312046, + "y": -0.0008638298060972025 + }, + "p2": { + "x": 0, + "y": 102.09090909090901 + } } }, { - "ID": "3274", + "ID": "3336", "typeID": "Arrow", - "zOrder": "19", + "zOrder": "85", "w": "1", - "h": "103", + "h": "459", "measuredW": "150", "measuredH": "100", - "x": "855", - "y": "595", + "x": "1475", + "y": "1356", "properties": { "curvature": "0", "leftArrow": "false", @@ -1220,83 +862,84 @@ "y": -0.2895200003503646 }, "p1": { - "x": 0.49999999999999967, + "x": 0.4999999999999996, "y": 0 }, "p2": { "x": 0, - "y": 102.7942452326543 + "y": 459.151515151515 } } }, { - "ID": "3275", + "ID": "3337", "typeID": "Arrow", - "zOrder": "89", - "w": "549", + "zOrder": "86", + "w": "528", "h": "1", "measuredW": "150", "measuredH": "100", - "x": "306", - "y": "698", + "x": "944", + "y": "1816", "properties": { "curvature": "0", "leftArrow": "false", "rightArrow": "false", "color": "10027263", "p0": { - "x": 549.0409007620017, + "x": 528.2424242424242, "y": -0.20575476734575204 }, "p1": { - "x": 0.4999999999999996, + "x": 0.49999999999999944, "y": 0 }, "p2": { - "x": 0.39319576773937115, + "x": -0.06060606060611917, "y": -0.20575476734575204 } } }, { - "ID": "3276", + "ID": "3352", "typeID": "Arrow", - "zOrder": "18", + "zOrder": "7", "w": "1", - "h": "655", + "h": "102", "measuredW": "150", "measuredH": "100", - "x": "306", - "y": "699", + "x": "1275", + "y": "1817", "properties": { "curvature": "0", "leftArrow": "false", "rightArrow": "false", "color": "10027263", + "stroke": "dotted", "p0": { "x": 0, - "y": -0.2895200003503646 + "y": -0.00475478501221005 }, "p1": { - "x": 0.4999999999999996, - "y": 0 + "x": 0.49962160010312046, + "y": -0.0008638298060972025 }, "p2": { "x": 0, - "y": 654.8846543950108 + "y": 102.09090909090901 } } }, { - "ID": "3277", + "ID": "3368", "typeID": "Arrow", - "zOrder": "17", - "w": "148", - "h": "1", + "zOrder": "2", + "w": "1", + "h": "102", "measuredW": "150", "measuredH": "100", - "x": "399", - "y": "827", + "x": "866", + "y": "1817", "properties": { "curvature": "0", "leftArrow": "false", @@ -1305,444 +948,223 @@ "stroke": "dotted", "p0": { "x": 0, - "y": 0 + "y": -0.00475478501221005 }, "p1": { - "x": 0.49962160010312034, + "x": 0.49962160010312046, "y": -0.0008638298060972025 }, "p2": { - "x": 148.24514398610984, - "y": 0 + "x": 0, + "y": 102.09090909090901 } } }, { - "ID": "3278", - "typeID": "TextArea", - "zOrder": "90", - "w": "268", - "h": "49", - "measuredW": "200", - "measuredH": "140", - "x": "171", - "y": "1332", - "properties": { - "color": "16776960" - } - }, - { - "ID": "3279", - "typeID": "Label", - "zOrder": "91", - "measuredW": "218", - "measuredH": "25", - "x": "196", - "y": "1344", - "properties": { - "size": "17", - "text": "Real World Usage Examples" - } - }, - { - "ID": "3280", - "typeID": "TextArea", - "zOrder": "92", - "w": "269", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "170", - "y": "1430", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3281", - "typeID": "Label", - "zOrder": "93", - "measuredW": "122", - "measuredH": "25", - "x": "244", - "y": "1440", + "ID": "3379", + "typeID": "Arrow", + "zOrder": "1", + "w": "179", + "h": "82", + "measuredW": "150", + "measuredH": "100", + "x": "988", + "y": "545", "properties": { - "size": "17", - "text": "Structured Data" + "curvature": "0", + "leftArrow": "false", + "rightArrow": "false", + "color": "10027263", + "stroke": "dotted", + "p0": { + "x": -0.12121212121212466, + "y": 0.4545454545453822 + }, + "p1": { + "x": 0.6134355370479128, + "y": 0.10823051718363962 + }, + "p2": { + "x": 178.66666666666652, + "y": 82.27272727272725 + } } }, { - "ID": "3282", - "typeID": "TextArea", - "zOrder": "94", - "w": "269", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "170", - "y": "1480", + "ID": "3380", + "typeID": "Arrow", + "zOrder": "0", + "w": "450", + "h": "1", + "measuredW": "150", + "measuredH": "100", + "x": "429", + "y": "1816", "properties": { - "color": "16770457" + "curvature": "0", + "leftArrow": "false", + "rightArrow": "false", + "color": "10027263", + "p0": { + "x": 449.78787878787875, + "y": -0.20575476734575204 + }, + "p1": { + "x": 0.4999999999999993, + "y": 0 + }, + "p2": { + "x": -0.21212121212124657, + "y": -0.20575476734575204 + } } }, { - "ID": "3283", - "typeID": "Label", + "ID": "3381", + "typeID": "Arrow", "zOrder": "95", - "measuredW": "66", - "measuredH": "25", - "x": "272", - "y": "1490", + "w": "1", + "h": "416", + "measuredW": "150", + "measuredH": "100", + "x": "429", + "y": "1817", "properties": { - "size": "17", - "text": "Inferring" + "curvature": "0", + "leftArrow": "false", + "rightArrow": "false", + "color": "10027263", + "p0": { + "x": -0.06060606060611917, + "y": 415.8067663122506 + }, + "p1": { + "x": 0.4999999999999996, + "y": 0 + }, + "p2": { + "x": -0.06060606060611917, + "y": -0.20575476734575204 + } } }, { - "ID": "3284", - "typeID": "TextArea", + "ID": "3382", + "typeID": "Arrow", "zOrder": "96", - "w": "269", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "170", - "y": "1530", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3285", - "typeID": "Label", - "zOrder": "97", - "measuredW": "110", - "measuredH": "25", - "x": "250", - "y": "1540", - "properties": { - "size": "17", - "text": "Writing Emails" - } - }, - { - "ID": "3286", - "typeID": "TextArea", - "zOrder": "98", - "w": "269", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "170", - "y": "1579", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3287", - "typeID": "Label", - "zOrder": "99", - "measuredW": "142", - "measuredH": "25", - "x": "234", - "y": "1589", - "properties": { - "size": "17", - "text": "Coding Assistance" - } - }, - { - "ID": "3288", - "typeID": "TextArea", - "zOrder": "100", - "w": "269", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "170", - "y": "1629", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3289", - "typeID": "Label", - "zOrder": "101", - "measuredW": "94", - "measuredH": "25", - "x": "258", - "y": "1639", - "properties": { - "size": "17", - "text": "Study Buddy" - } - }, - { - "ID": "3290", - "typeID": "TextArea", - "zOrder": "102", - "w": "269", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "170", - "y": "1679", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3291", - "typeID": "Label", - "zOrder": "103", - "measuredW": "151", - "measuredH": "25", - "x": "229", - "y": "1689", + "w": "450", + "h": "1", + "measuredW": "150", + "measuredH": "100", + "x": "429", + "y": "2234", "properties": { - "size": "17", - "text": "Designing Chatbots" + "curvature": "0", + "leftArrow": "false", + "rightArrow": "false", + "color": "10027263", + "p0": { + "x": 449.78787878787875, + "y": -0.20575476734575204 + }, + "p1": { + "x": 0.4999999999999993, + "y": 0 + }, + "p2": { + "x": -0.21212121212124657, + "y": -0.20575476734575204 + } } }, { - "ID": "3292", + "ID": "3383", "typeID": "Arrow", - "zOrder": "16", + "zOrder": "97", "w": "1", - "h": "107", + "h": "106", "measuredW": "150", "measuredH": "100", - "x": "305", - "y": "1357", + "x": "880", + "y": "2234", "properties": { "curvature": "0", "leftArrow": "false", "rightArrow": "false", "color": "10027263", - "stroke": "dotted", "p0": { - "x": 0, - "y": -0.00475478501221005 + "x": -0.06060606060611917, + "y": 106.04002465087751 }, "p1": { - "x": 0.4996216001031205, - "y": -0.0008638298060972024 + "x": 0.49999999999999956, + "y": 0 }, "p2": { - "x": 0, - "y": 107.05377796756977 + "x": -0.06060606060611917, + "y": -0.20575476734575204 } } }, { - "ID": "3294", + "ID": "3384", "typeID": "Arrow", - "zOrder": "15", - "w": "1168", - "h": "1", + "zOrder": "98", + "w": "1", + "h": "80", "measuredW": "150", "measuredH": "100", - "x": "306", - "y": "1356", + "x": "879", + "y": "2406", "properties": { "curvature": "0", "leftArrow": "false", "rightArrow": "false", "color": "10027263", + "stroke": "dotted", "p0": { - "x": 1168.2424242424242, - "y": -0.20575476734575204 + "x": 0, + "y": -0.00475478501221005 }, "p1": { - "x": 0.49999999999999944, - "y": 0 + "x": 0.49962160010312046, + "y": -0.0008638298060972025 }, "p2": { - "x": 0.39319576773937115, - "y": -0.20575476734575204 + "x": 0, + "y": 79.98159776540933 } } }, { - "ID": "3295", - "typeID": "TextArea", - "zOrder": "104", - "w": "194", - "h": "49", - "measuredW": "200", - "measuredH": "140", - "x": "534", - "y": "1332", - "properties": { - "color": "16776960" - } - }, - { - "ID": "3296", - "typeID": "Label", - "zOrder": "105", - "measuredW": "117", - "measuredH": "25", - "x": "572", - "y": "1344", - "properties": { - "size": "17", - "text": "Pitfalls of LLMs" - } - }, - { - "ID": "3297", - "typeID": "TextArea", - "zOrder": "106", - "w": "194", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "534", - "y": "1430", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3298", - "typeID": "Label", - "zOrder": "107", - "measuredW": "112", - "measuredH": "25", - "x": "575", - "y": "1440", - "properties": { - "size": "17", - "text": "Citing Sources" - } - }, - { - "ID": "3299", - "typeID": "TextArea", - "zOrder": "108", - "w": "194", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "534", - "y": "1480", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3300", - "typeID": "Label", - "zOrder": "109", - "measuredW": "34", - "measuredH": "25", - "x": "614", - "y": "1490", - "properties": { - "size": "17", - "text": "Bias" - } - }, - { - "ID": "3301", - "typeID": "TextArea", - "zOrder": "110", - "w": "194", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "534", - "y": "1530", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3302", - "typeID": "Label", - "zOrder": "111", - "measuredW": "109", - "measuredH": "25", - "x": "576", - "y": "1540", - "properties": { - "size": "17", - "text": "Hallucinations" - } - }, - { - "ID": "3303", - "typeID": "TextArea", - "zOrder": "112", - "w": "194", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "534", - "y": "1579", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3304", - "typeID": "Label", - "zOrder": "113", - "measuredW": "39", - "measuredH": "25", - "x": "611", - "y": "1589", - "properties": { - "size": "17", - "text": "Math" - } - }, - { - "ID": "3305", - "typeID": "TextArea", - "zOrder": "114", - "w": "194", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "534", - "y": "1629", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3306", + "ID": "3385", "typeID": "Label", - "zOrder": "115", - "measuredW": "123", - "measuredH": "25", - "x": "569", - "y": "1639", + "zOrder": "99", + "measuredW": "187", + "measuredH": "36", + "x": "786", + "y": "2356", "properties": { - "size": "17", - "text": "Prompt Hacking" + "size": "28", + "text": "Keep Learning" } }, { - "ID": "3309", + "ID": "3386", "typeID": "Arrow", - "zOrder": "14", - "w": "1", - "h": "102", + "zOrder": "100", + "w": "129", + "h": "1", "measuredW": "150", "measuredH": "100", - "x": "630", - "y": "1357", + "x": "815", + "y": "2543", "properties": { "curvature": "0", "leftArrow": "false", "rightArrow": "false", - "color": "10027263", "stroke": "dotted", + "color": "16777215", "p0": { "x": 0, "y": -0.00475478501221005 @@ -1752,27 +1174,27 @@ "y": -0.0008638298060972025 }, "p2": { - "x": 0, - "y": 102.09090909090901 + "x": 129.208295421564, + "y": -0.00475478501221005 } } }, { - "ID": "3310", + "ID": "3387", "typeID": "Arrow", - "zOrder": "116", - "w": "1", - "h": "102", + "zOrder": "101", + "w": "129", + "h": "1", "measuredW": "150", "measuredH": "100", - "x": "941", - "y": "1357", + "x": "129", + "y": "663", "properties": { "curvature": "0", "leftArrow": "false", "rightArrow": "false", - "color": "10027263", "stroke": "dotted", + "color": "16777215", "p0": { "x": 0, "y": -0.00475478501221005 @@ -1782,1050 +1204,2893 @@ "y": -0.0008638298060972025 }, "p2": { - "x": 0, - "y": 102.09090909090901 + "x": 129.208295421564, + "y": -0.00475478501221005 } } }, { - "ID": "3311", - "typeID": "TextArea", - "zOrder": "117", - "w": "256", + "ID": "3389", + "typeID": "__group__", + "zOrder": "32", + "measuredW": "299", + "measuredH": "49", + "w": "299", "h": "49", - "measuredW": "200", - "measuredH": "140", - "x": "814", - "y": "1332", + "x": "706", + "y": "503", "properties": { - "color": "16776960" + "controlName": "100-basic-llm" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "299", + "h": "49", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16776960" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "160", + "measuredH": "25", + "x": "70", + "y": "12", + "properties": { + "size": "17", + "text": "Basic LLM Concepts" + } + } + ] + } } }, { - "ID": "3312", - "typeID": "Label", - "zOrder": "118", - "measuredW": "155", - "measuredH": "25", - "x": "864", - "y": "1344", + "ID": "3390", + "typeID": "__group__", + "zOrder": "36", + "measuredW": "299", + "measuredH": "49", + "w": "299", + "h": "49", + "x": "706", + "y": "557", "properties": { - "size": "17", - "text": "Improving Reliability" + "controlName": "101-prompting-introduction" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "299", + "h": "49", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16776960" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "195", + "measuredH": "25", + "x": "52", + "y": "12", + "properties": { + "size": "17", + "text": "Introduction to Prompting" + } + } + ] + } } }, { - "ID": "3313", - "typeID": "TextArea", - "zOrder": "119", - "w": "256", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "814", - "y": "1430", + "ID": "3391", + "typeID": "__group__", + "zOrder": "39", + "measuredW": "245", + "measuredH": "49", + "w": "245", + "h": "49", + "x": "171", + "y": "803", "properties": { - "color": "16770457" + "controlName": "102-prompts" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "245", + "h": "49", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16776960" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "64", + "measuredH": "25", + "x": "91", + "y": "12", + "properties": { + "size": "17", + "text": "Prompts" + } + } + ] + } } }, { - "ID": "3314", - "typeID": "Label", - "zOrder": "120", - "measuredW": "137", - "measuredH": "25", - "x": "873", - "y": "1440", + "ID": "3392", + "typeID": "__group__", + "zOrder": "60", + "measuredW": "268", + "measuredH": "49", + "w": "268", + "h": "49", + "x": "171", + "y": "1332", "properties": { - "size": "17", - "text": "Prompt Debiasing" - } - }, - { - "ID": "3315", - "typeID": "TextArea", - "zOrder": "121", - "w": "256", - "h": "45", - "measuredW": "200", - "measuredH": "140", + "controlName": "103-real-world" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "268", + "h": "49", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16776960" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "218", + "measuredH": "25", + "x": "25", + "y": "12", + "properties": { + "size": "17", + "text": "Real World Usage Examples" + } + } + ] + } + } + }, + { + "ID": "3393", + "typeID": "__group__", + "zOrder": "67", + "measuredW": "194", + "measuredH": "49", + "w": "194", + "h": "49", + "x": "534", + "y": "1332", + "properties": { + "controlName": "104-llm-pitfalls" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "194", + "h": "49", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16776960" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "117", + "measuredH": "25", + "x": "38", + "y": "12", + "properties": { + "size": "17", + "text": "Pitfalls of LLMs" + } + } + ] + } + } + }, + { + "ID": "3394", + "typeID": "__group__", + "zOrder": "74", + "measuredW": "256", + "measuredH": "49", + "w": "256", + "h": "49", "x": "814", - "y": "1480", + "y": "1332", "properties": { - "color": "16770457" + "controlName": "105-reliability" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "49", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16776960" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "155", + "measuredH": "25", + "x": "50", + "y": "12", + "properties": { + "size": "17", + "text": "Improving Reliability" + } + } + ] + } } }, { - "ID": "3316", - "typeID": "Label", - "zOrder": "122", - "measuredW": "150", - "measuredH": "25", - "x": "867", - "y": "1490", + "ID": "3395", + "typeID": "__group__", + "zOrder": "81", + "measuredW": "256", + "measuredH": "49", + "w": "256", + "h": "49", + "x": "1151", + "y": "1332", + "properties": { + "controlName": "106-llm-settings" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "49", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16776960" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "102", + "measuredH": "25", + "x": "77", + "y": "12", + "properties": { + "size": "17", + "text": "LLM Settings" + } + } + ] + } + } + }, + { + "ID": "3396", + "typeID": "__group__", + "zOrder": "87", + "measuredW": "256", + "measuredH": "49", + "w": "256", + "h": "49", + "x": "1151", + "y": "1792", + "properties": { + "controlName": "107-prompt-hacking" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "49", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16776960" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "123", + "measuredH": "25", + "x": "77", + "y": "12", + "properties": { + "size": "17", + "text": "Prompt Hacking" + } + } + ] + } + } + }, + { + "ID": "3397", + "typeID": "__group__", + "zOrder": "94", + "measuredW": "256", + "measuredH": "49", + "w": "256", + "h": "49", + "x": "744", + "y": "1792", + "properties": { + "controlName": "108-image-prompting" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "49", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16776960" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "132", + "measuredH": "25", + "x": "62", + "y": "12", + "properties": { + "size": "17", + "text": "Image Prompting" + } + } + ] + } + } + }, + { + "ID": "3398", + "typeID": "__group__", + "zOrder": "33", + "measuredW": "295", + "measuredH": "45", + "w": "295", + "h": "45", + "x": "1161", + "y": "452", + "properties": { + "controlName": "100-basic-llm:what-are-llms" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "295", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "126", + "measuredH": "25", + "x": "85", + "y": "10", + "properties": { + "size": "17", + "text": "What are LLMs?" + } + } + ] + } + } + }, + { + "ID": "3399", + "typeID": "__group__", + "zOrder": "34", + "measuredW": "295", + "measuredH": "45", + "w": "295", + "h": "45", + "x": "1161", + "y": "502", + "properties": { + "controlName": "101-basic-llm:llm-types" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "295", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "112", + "measuredH": "25", + "x": "92", + "y": "10", + "properties": { + "size": "17", + "text": "Types of LLMs" + } + } + ] + } + } + }, + { + "ID": "3400", + "typeID": "__group__", + "zOrder": "35", + "measuredW": "295", + "measuredH": "45", + "w": "295", + "h": "45", + "x": "1161", + "y": "551", + "properties": { + "controlName": "102-basic-llm:how-llms-built" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "295", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "159", + "measuredH": "25", + "x": "68", + "y": "10", + "properties": { + "size": "17", + "text": "How are LLMs Built?" + } + } + ] + } + } + }, + { + "ID": "3401", + "typeID": "__group__", + "zOrder": "93", + "measuredW": "295", + "measuredH": "45", + "w": "295", + "h": "45", + "x": "1161", + "y": "602", + "properties": { + "controlName": "103-basic-llm:llm-vocabulary" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "295", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "84", + "measuredH": "25", + "x": "106", + "y": "10", + "properties": { + "size": "17", + "text": "Vocabulary" + } + } + ] + } + } + }, + { + "ID": "3402", + "typeID": "__group__", + "zOrder": "38", + "measuredW": "319", + "measuredH": "45", + "w": "319", + "h": "45", + "x": "251", + "y": "510", + "properties": { + "controlName": "100-prompting-introduction:basic-prompting" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "319", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "126", + "measuredH": "25", + "x": "107", + "y": "10", + "properties": { + "size": "17", + "text": "Basic Prompting" + } + } + ] + } + } + }, + { + "ID": "3403", + "typeID": "__group__", + "zOrder": "37", + "measuredW": "319", + "measuredH": "45", + "w": "319", + "h": "45", + "x": "251", + "y": "560", + "properties": { + "controlName": "101-prompting-introduction:need-for-prompting" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "319", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "226", + "measuredH": "25", + "x": "57", + "y": "10", + "properties": { + "size": "17", + "text": "Need for Prompt Engineering" + } + } + ] + } + } + }, + { + "ID": "3421", + "typeID": "__group__", + "zOrder": "50", + "measuredW": "269", + "measuredH": "45", + "w": "269", + "h": "45", + "x": "1207", + "y": "854", + "properties": { + "controlName": "100-prompts:prompting-techniques:role-prompting" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "269", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "119", + "measuredH": "25", + "x": "75", + "y": "10", + "properties": { + "size": "17", + "text": "Role Prompting" + } + } + ] + } + } + }, + { + "ID": "3422", + "typeID": "__group__", + "zOrder": "51", + "measuredW": "269", + "measuredH": "45", + "w": "269", + "h": "45", + "x": "1207", + "y": "904", + "properties": { + "controlName": "101-prompts:prompting-techniques:few-shot-prompting" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "269", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "153", + "measuredH": "25", + "x": "58", + "y": "10", + "properties": { + "size": "17", + "text": "Few Shot Prompting" + } + } + ] + } + } + }, + { + "ID": "3423", + "typeID": "__group__", + "zOrder": "52", + "measuredW": "269", + "measuredH": "45", + "w": "269", + "h": "45", + "x": "1207", + "y": "954", + "properties": { + "controlName": "102-prompts:prompting-techniques:chain-of-thought" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "269", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "214", + "measuredH": "25", + "x": "28", + "y": "10", + "properties": { + "size": "17", + "text": "Chain of Thought Prompting" + } + } + ] + } + } + }, + { + "ID": "3424", + "typeID": "__group__", + "zOrder": "53", + "measuredW": "269", + "measuredH": "45", + "w": "269", + "h": "45", + "x": "1207", + "y": "1004", + "properties": { + "controlName": "103-prompts:prompting-techniques:zeroshot-chain-of-thought" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "269", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "211", + "measuredH": "25", + "x": "29", + "y": "10", + "properties": { + "size": "17", + "text": "Zero Shot Chain of Thought" + } + } + ] + } + } + }, + { + "ID": "3425", + "typeID": "__group__", + "zOrder": "54", + "measuredW": "269", + "measuredH": "45", + "w": "269", + "h": "45", + "x": "1207", + "y": "1054", + "properties": { + "controlName": "104-prompts:prompting-techniques:least-to-most" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "269", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "188", + "measuredH": "25", + "x": "41", + "y": "10", + "properties": { + "size": "17", + "text": "Least to Most Prompting" + } + } + ] + } + } + }, + { + "ID": "3426", + "typeID": "__group__", + "zOrder": "55", + "measuredW": "269", + "measuredH": "45", + "w": "269", + "h": "45", + "x": "1207", + "y": "1104", + "properties": { + "controlName": "105-prompts:prompting-techniques:dual-prompt" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "269", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "174", + "measuredH": "25", + "x": "48", + "y": "10", + "properties": { + "size": "17", + "text": "Dual Prompt Approach" + } + } + ] + } + } + }, + { + "ID": "3427", + "typeID": "__group__", + "zOrder": "56", + "measuredW": "269", + "measuredH": "45", + "w": "269", + "h": "45", + "x": "1207", + "y": "1154", + "properties": { + "controlName": "106-prompts:prompting-techniques:combining-techniques" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "269", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "175", + "measuredH": "25", + "x": "47", + "y": "10", + "properties": { + "size": "17", + "text": "Combining Techniques" + } + } + ] + } + } + }, + { + "ID": "3428", + "typeID": "__group__", + "zOrder": "58", + "measuredW": "306", + "measuredH": "53", + "w": "306", + "h": "53", + "x": "1189", + "y": "1214", + "properties": { + "controlName": "101-prompts:parts-of-a-prompt" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "306", + "h": "53", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "133", + "measuredH": "25", + "x": "86", + "y": "14", + "properties": { + "size": "17", + "text": "Parts of a Prompt" + } + } + ] + } + } + }, + { + "ID": "3429", + "typeID": "__group__", + "zOrder": "61", + "measuredW": "269", + "measuredH": "45", + "w": "269", + "h": "45", + "x": "170", + "y": "1430", + "properties": { + "controlName": "100-real-world:structured-data" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "269", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "122", + "measuredH": "25", + "x": "74", + "y": "10", + "properties": { + "size": "17", + "text": "Structured Data" + } + } + ] + } + } + }, + { + "ID": "3430", + "typeID": "__group__", + "zOrder": "62", + "measuredW": "269", + "measuredH": "45", + "w": "269", + "h": "45", + "x": "170", + "y": "1479", + "properties": { + "controlName": "101-real-world:inferring" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "269", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "66", + "measuredH": "25", + "x": "102", + "y": "10", + "properties": { + "size": "17", + "text": "Inferring" + } + } + ] + } + } + }, + { + "ID": "3431", + "typeID": "__group__", + "zOrder": "63", + "measuredW": "269", + "measuredH": "45", + "w": "269", + "h": "45", + "x": "170", + "y": "1528", + "properties": { + "controlName": "102-real-world:writing-emails" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "269", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "110", + "measuredH": "25", + "x": "80", + "y": "10", + "properties": { + "size": "17", + "text": "Writing Emails" + } + } + ] + } + } + }, + { + "ID": "3432", + "typeID": "__group__", + "zOrder": "64", + "measuredW": "269", + "measuredH": "45", + "w": "269", + "h": "45", + "x": "170", + "y": "1578", + "properties": { + "controlName": "103-real-world:coding-assistance" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "269", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "142", + "measuredH": "25", + "x": "64", + "y": "10", + "properties": { + "size": "17", + "text": "Coding Assistance" + } + } + ] + } + } + }, + { + "ID": "3434", + "typeID": "__group__", + "zOrder": "65", + "measuredW": "269", + "measuredH": "45", + "w": "269", + "h": "45", + "x": "170", + "y": "1627", + "properties": { + "controlName": "104-real-world:study-buddy" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "269", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "94", + "measuredH": "25", + "x": "88", + "y": "10", + "properties": { + "size": "17", + "text": "Study Buddy" + } + } + ] + } + } + }, + { + "ID": "3435", + "typeID": "__group__", + "zOrder": "66", + "measuredW": "269", + "measuredH": "45", + "w": "269", + "h": "45", + "x": "170", + "y": "1677", + "properties": { + "controlName": "105-real-world:designing-chatbots" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "269", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "151", + "measuredH": "25", + "x": "59", + "y": "10", + "properties": { + "size": "17", + "text": "Designing Chatbots" + } + } + ] + } + } + }, + { + "ID": "3436", + "typeID": "__group__", + "zOrder": "68", + "measuredW": "194", + "measuredH": "45", + "w": "194", + "h": "45", + "x": "534", + "y": "1430", "properties": { - "size": "17", - "text": "Prompt Ensembling" + "controlName": "100-llm-pitfalls:citing-sources" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "194", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "112", + "measuredH": "25", + "x": "41", + "y": "10", + "properties": { + "size": "17", + "text": "Citing Sources" + } + } + ] + } } }, { - "ID": "3317", - "typeID": "TextArea", - "zOrder": "123", - "w": "256", + "ID": "3437", + "typeID": "__group__", + "zOrder": "69", + "measuredW": "194", + "measuredH": "45", + "w": "194", "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "814", - "y": "1530", + "x": "534", + "y": "1479", "properties": { - "color": "16770457" + "controlName": "101-llm-pitfalls:bias" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "194", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "34", + "measuredH": "25", + "x": "80", + "y": "10", + "properties": { + "size": "17", + "text": "Bias" + } + } + ] + } } }, { - "ID": "3318", - "typeID": "Label", - "zOrder": "124", - "measuredW": "153", - "measuredH": "25", - "x": "865", - "y": "1540", + "ID": "3438", + "typeID": "__group__", + "zOrder": "70", + "measuredW": "194", + "measuredH": "45", + "w": "194", + "h": "45", + "x": "534", + "y": "1529", "properties": { - "size": "17", - "text": "LLM Self Evaluation" + "controlName": "102-llm-pitfalls:hallucinations" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "194", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "109", + "measuredH": "25", + "x": "42", + "y": "10", + "properties": { + "size": "17", + "text": "Hallucinations" + } + } + ] + } } }, { - "ID": "3319", - "typeID": "TextArea", - "zOrder": "125", - "w": "256", + "ID": "3439", + "typeID": "__group__", + "zOrder": "71", + "measuredW": "194", + "measuredH": "45", + "w": "194", "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "814", + "x": "534", "y": "1579", "properties": { - "color": "16770457" + "controlName": "103-llm-pitfalls:math" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "194", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "39", + "measuredH": "25", + "x": "77", + "y": "10", + "properties": { + "size": "17", + "text": "Math" + } + } + ] + } } }, { - "ID": "3320", - "typeID": "Label", - "zOrder": "126", - "measuredW": "131", - "measuredH": "25", - "x": "876", - "y": "1589", + "ID": "3440", + "typeID": "__group__", + "zOrder": "72", + "measuredW": "194", + "measuredH": "45", + "w": "194", + "h": "45", + "x": "534", + "y": "1629", "properties": { - "size": "17", - "text": "Calibrating LLMs" + "controlName": "104-llm-pitfalls:prompt-hacking" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "194", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "123", + "measuredH": "25", + "x": "35", + "y": "10", + "properties": { + "size": "17", + "text": "Prompt Hacking" + } + } + ] + } } }, { - "ID": "3321", - "typeID": "TextArea", - "zOrder": "127", + "ID": "3441", + "typeID": "__group__", + "zOrder": "75", + "measuredW": "256", + "measuredH": "45", "w": "256", "h": "45", - "measuredW": "200", - "measuredH": "140", "x": "814", - "y": "1629", + "y": "1430", "properties": { - "color": "16770457" + "controlName": "100-reliability:debiasing" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "137", + "measuredH": "25", + "x": "59", + "y": "10", + "properties": { + "size": "17", + "text": "Prompt Debiasing" + } + } + ] + } } }, { - "ID": "3322", - "typeID": "Label", - "zOrder": "128", - "measuredW": "39", - "measuredH": "25", - "x": "922", - "y": "1639", + "ID": "3442", + "typeID": "__group__", + "zOrder": "76", + "measuredW": "256", + "measuredH": "45", + "w": "256", + "h": "45", + "x": "814", + "y": "1480", "properties": { - "size": "17", - "text": "Math" + "controlName": "101-reliability:ensembling" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "150", + "measuredH": "25", + "x": "53", + "y": "10", + "properties": { + "size": "17", + "text": "Prompt Ensembling" + } + } + ] + } } }, { - "ID": "3323", - "typeID": "Arrow", - "zOrder": "129", - "w": "1", - "h": "102", - "measuredW": "150", - "measuredH": "100", - "x": "1278", - "y": "1357", + "ID": "3443", + "typeID": "__group__", + "zOrder": "77", + "measuredW": "256", + "measuredH": "45", + "w": "256", + "h": "45", + "x": "814", + "y": "1530", "properties": { - "curvature": "0", - "leftArrow": "false", - "rightArrow": "false", - "color": "10027263", - "stroke": "dotted", - "p0": { - "x": 0, - "y": -0.00475478501221005 - }, - "p1": { - "x": 0.49962160010312046, - "y": -0.0008638298060972025 - }, - "p2": { - "x": 0, - "y": 102.09090909090901 + "controlName": "102-reliability:self-evaluation" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "153", + "measuredH": "25", + "x": "51", + "y": "10", + "properties": { + "size": "17", + "text": "LLM Self Evaluation" + } + } + ] } } }, { - "ID": "3324", - "typeID": "TextArea", - "zOrder": "130", + "ID": "3444", + "typeID": "__group__", + "zOrder": "78", + "measuredW": "256", + "measuredH": "45", "w": "256", - "h": "49", - "measuredW": "200", - "measuredH": "140", - "x": "1151", - "y": "1332", + "h": "45", + "x": "814", + "y": "1579", "properties": { - "color": "16776960" + "controlName": "103-reliability:calibrating-llms" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "131", + "measuredH": "25", + "x": "62", + "y": "10", + "properties": { + "size": "17", + "text": "Calibrating LLMs" + } + } + ] + } } }, { - "ID": "3325", - "typeID": "Label", - "zOrder": "131", - "measuredW": "102", - "measuredH": "25", - "x": "1228", - "y": "1344", + "ID": "3445", + "typeID": "__group__", + "zOrder": "79", + "measuredW": "256", + "measuredH": "45", + "w": "256", + "h": "45", + "x": "814", + "y": "1629", "properties": { - "size": "17", - "text": "LLM Settings" + "controlName": "104-reliability:math" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "39", + "measuredH": "25", + "x": "108", + "y": "10", + "properties": { + "size": "17", + "text": "Math" + } + } + ] + } } }, { - "ID": "3326", - "typeID": "TextArea", - "zOrder": "132", + "ID": "3446", + "typeID": "__group__", + "zOrder": "82", + "measuredW": "256", + "measuredH": "45", "w": "256", "h": "45", - "measuredW": "200", - "measuredH": "140", "x": "1151", "y": "1430", "properties": { - "color": "16770457" - } - }, - { - "ID": "3327", - "typeID": "Label", - "zOrder": "133", - "measuredW": "99", - "measuredH": "25", - "x": "1229", - "y": "1440", - "properties": { - "size": "17", - "text": "Temperature" + "controlName": "100-llm-settings:temperature" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "99", + "measuredH": "25", + "x": "78", + "y": "10", + "properties": { + "size": "17", + "text": "Temperature" + } + } + ] + } } }, { - "ID": "3328", - "typeID": "TextArea", - "zOrder": "134", + "ID": "3447", + "typeID": "__group__", + "zOrder": "83", + "measuredW": "256", + "measuredH": "45", "w": "256", "h": "45", - "measuredW": "200", - "measuredH": "140", "x": "1151", "y": "1480", "properties": { - "color": "16770457" - } - }, - { - "ID": "3329", - "typeID": "Label", - "zOrder": "135", - "measuredW": "44", - "measuredH": "25", - "x": "1257", - "y": "1490", - "properties": { - "size": "17", - "text": "Top P" + "controlName": "101-llm-settings:top-p" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "44", + "measuredH": "25", + "x": "106", + "y": "10", + "properties": { + "size": "17", + "text": "Top P" + } + } + ] + } } }, { - "ID": "3330", - "typeID": "TextArea", - "zOrder": "136", + "ID": "3448", + "typeID": "__group__", + "zOrder": "84", + "measuredW": "256", + "measuredH": "45", "w": "256", "h": "45", - "measuredW": "200", - "measuredH": "140", "x": "1151", "y": "1530", "properties": { - "color": "16770457" - } - }, - { - "ID": "3331", - "typeID": "Label", - "zOrder": "137", - "measuredW": "184", - "measuredH": "25", - "x": "1187", - "y": "1540", - "properties": { - "size": "17", - "text": "Other Hyperparameters" - } - }, - { - "ID": "3336", - "typeID": "Arrow", - "zOrder": "138", - "w": "1", - "h": "459", - "measuredW": "150", - "measuredH": "100", - "x": "1475", - "y": "1356", - "properties": { - "curvature": "0", - "leftArrow": "false", - "rightArrow": "false", - "color": "10027263", - "p0": { - "x": 0, - "y": -0.2895200003503646 - }, - "p1": { - "x": 0.4999999999999996, - "y": 0 - }, - "p2": { - "x": 0, - "y": 459.151515151515 - } - } - }, - { - "ID": "3337", - "typeID": "Arrow", - "zOrder": "139", - "w": "528", - "h": "1", - "measuredW": "150", - "measuredH": "100", - "x": "944", - "y": "1816", - "properties": { - "curvature": "0", - "leftArrow": "false", - "rightArrow": "false", - "color": "10027263", - "p0": { - "x": 528.2424242424242, - "y": -0.20575476734575204 - }, - "p1": { - "x": 0.49999999999999944, - "y": 0 - }, - "p2": { - "x": -0.06060606060611917, - "y": -0.20575476734575204 - } - } - }, - { - "ID": "3338", - "typeID": "TextArea", - "zOrder": "140", - "w": "30", - "h": "30", - "measuredW": "200", - "measuredH": "140", - "x": "537", - "y": "1211" - }, - { - "ID": "3339", - "typeID": "Label", - "zOrder": "141", - "measuredW": "326", - "measuredH": "28", - "x": "583", - "y": "1213", - "properties": { - "size": "20", - "text": "Specify style to get different outputs." - } - }, - { - "ID": "3340", - "typeID": "TextArea", - "zOrder": "142", - "w": "256", - "h": "49", - "measuredW": "200", - "measuredH": "140", - "x": "1151", - "y": "1792", - "properties": { - "color": "16776960" - } - }, - { - "ID": "3341", - "typeID": "Label", - "zOrder": "143", - "measuredW": "123", - "measuredH": "25", - "x": "1228", - "y": "1804", - "properties": { - "size": "17", - "text": "Prompt Hacking" + "controlName": "102-llm-settings:other-hyper-params" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "184", + "measuredH": "25", + "x": "36", + "y": "10", + "properties": { + "size": "17", + "text": "Other Hyperparameters" + } + } + ] + } } }, { - "ID": "3342", - "typeID": "TextArea", - "zOrder": "144", + "ID": "3449", + "typeID": "__group__", + "zOrder": "88", + "measuredW": "256", + "measuredH": "45", "w": "256", "h": "45", - "measuredW": "200", - "measuredH": "140", "x": "1151", "y": "1889", "properties": { - "color": "16770457" - } - }, - { - "ID": "3343", - "typeID": "Label", - "zOrder": "145", - "measuredW": "127", - "measuredH": "25", - "x": "1215", - "y": "1899", - "properties": { - "size": "17", - "text": "Prompt Injection" + "controlName": "100-prompt-hacking:prompt-injection" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "127", + "measuredH": "25", + "x": "64", + "y": "10", + "properties": { + "size": "17", + "text": "Prompt Injection" + } + } + ] + } } }, { - "ID": "3344", - "typeID": "TextArea", - "zOrder": "146", + "ID": "3450", + "typeID": "__group__", + "zOrder": "89", + "measuredW": "256", + "measuredH": "45", "w": "256", "h": "45", - "measuredW": "200", - "measuredH": "140", "x": "1151", "y": "1939", "properties": { - "color": "16770457" - } - }, - { - "ID": "3345", - "typeID": "Label", - "zOrder": "147", - "measuredW": "121", - "measuredH": "25", - "x": "1218", - "y": "1949", - "properties": { - "size": "17", - "text": "Prompt Leaking" + "controlName": "101-prompt-hacking:prompt-leaking" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "121", + "measuredH": "25", + "x": "67", + "y": "10", + "properties": { + "size": "17", + "text": "Prompt Leaking" + } + } + ] + } } }, { - "ID": "3346", - "typeID": "TextArea", - "zOrder": "148", + "ID": "3451", + "typeID": "__group__", + "zOrder": "90", + "measuredW": "256", + "measuredH": "45", "w": "256", "h": "45", - "measuredW": "200", - "measuredH": "140", "x": "1151", "y": "1989", "properties": { - "color": "16770457" - } - }, - { - "ID": "3347", - "typeID": "Label", - "zOrder": "149", - "measuredW": "93", - "measuredH": "25", - "x": "1232", - "y": "1999", - "properties": { - "size": "17", - "text": "Jailbreaking" + "controlName": "102-prompt-hacking:jailbreaking" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "93", + "measuredH": "25", + "x": "81", + "y": "10", + "properties": { + "size": "17", + "text": "Jailbreaking" + } + } + ] + } } }, { - "ID": "3348", - "typeID": "TextArea", - "zOrder": "150", + "ID": "3452", + "typeID": "__group__", + "zOrder": "91", + "measuredW": "256", + "measuredH": "45", "w": "256", "h": "45", - "measuredW": "200", - "measuredH": "140", "x": "1151", "y": "2038", "properties": { - "color": "16770457" - } - }, - { - "ID": "3349", - "typeID": "Label", - "zOrder": "151", - "measuredW": "158", - "measuredH": "25", - "x": "1200", - "y": "2048", - "properties": { - "size": "17", - "text": "Defensive Measures" + "controlName": "103-prompt-hacking:defensive-measures" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "158", + "measuredH": "25", + "x": "49", + "y": "10", + "properties": { + "size": "17", + "text": "Defensive Measures" + } + } + ] + } } }, { - "ID": "3350", - "typeID": "TextArea", - "zOrder": "152", + "ID": "3453", + "typeID": "__group__", + "zOrder": "92", + "measuredW": "256", + "measuredH": "45", "w": "256", "h": "45", - "measuredW": "200", - "measuredH": "140", "x": "1151", "y": "2088", "properties": { - "color": "16770457" - } - }, - { - "ID": "3351", - "typeID": "Label", - "zOrder": "153", - "measuredW": "153", - "measuredH": "25", - "x": "1202", - "y": "2098", - "properties": { - "size": "17", - "text": "Offensive Measures" - } - }, - { - "ID": "3352", - "typeID": "Arrow", - "zOrder": "13", - "w": "1", - "h": "102", - "measuredW": "150", - "measuredH": "100", - "x": "1275", - "y": "1817", - "properties": { - "curvature": "0", - "leftArrow": "false", - "rightArrow": "false", - "color": "10027263", - "stroke": "dotted", - "p0": { - "x": 0, - "y": -0.00475478501221005 - }, - "p1": { - "x": 0.49962160010312046, - "y": -0.0008638298060972025 - }, - "p2": { - "x": 0, - "y": 102.09090909090901 - } - } - }, - { - "ID": "3353", - "typeID": "TextArea", - "zOrder": "154", - "w": "295", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "1161", - "y": "602", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3354", - "typeID": "Label", - "zOrder": "155", - "measuredW": "84", - "measuredH": "25", - "x": "1267", - "y": "612", - "properties": { - "size": "17", - "text": "Vocabulary" - } - }, - { - "ID": "3355", - "typeID": "TextArea", - "zOrder": "156", - "w": "256", - "h": "49", - "measuredW": "200", - "measuredH": "140", - "x": "744", - "y": "1792", - "properties": { - "color": "16776960" - } - }, - { - "ID": "3356", - "typeID": "Label", - "zOrder": "157", - "measuredW": "132", - "measuredH": "25", - "x": "806", - "y": "1804", - "properties": { - "size": "17", - "text": "Image Prompting" - } - }, - { - "ID": "3368", - "typeID": "Arrow", - "zOrder": "2", - "w": "1", - "h": "102", - "measuredW": "150", - "measuredH": "100", - "x": "866", - "y": "1817", - "properties": { - "curvature": "0", - "leftArrow": "false", - "rightArrow": "false", - "color": "10027263", - "stroke": "dotted", - "p0": { - "x": 0, - "y": -0.00475478501221005 - }, - "p1": { - "x": 0.49962160010312046, - "y": -0.0008638298060972025 - }, - "p2": { - "x": 0, - "y": 102.09090909090901 + "controlName": "104-prompt-hacking:offensive-measures" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "153", + "measuredH": "25", + "x": "51", + "y": "10", + "properties": { + "size": "17", + "text": "Offensive Measures" + } + } + ] } } }, { - "ID": "3369", - "typeID": "TextArea", + "ID": "3454", + "typeID": "__group__", "zOrder": "3", + "measuredW": "256", + "measuredH": "45", "w": "256", "h": "45", - "measuredW": "200", - "measuredH": "140", "x": "742", "y": "1889", "properties": { - "color": "16770457" + "controlName": "100-image-prompting:style-modifiers" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "113", + "measuredH": "25", + "x": "64", + "y": "10", + "properties": { + "size": "17", + "text": "Style Modifiers" + } + } + ] + } } }, { - "ID": "3370", - "typeID": "Label", + "ID": "3455", + "typeID": "__group__", "zOrder": "4", - "measuredW": "113", - "measuredH": "25", - "x": "806", - "y": "1899", - "properties": { - "size": "17", - "text": "Style Modifiers" - } - }, - { - "ID": "3371", - "typeID": "TextArea", - "zOrder": "5", + "measuredW": "256", + "measuredH": "45", "w": "256", "h": "45", - "measuredW": "200", - "measuredH": "140", "x": "742", "y": "1939", "properties": { - "color": "16770457" - } - }, - { - "ID": "3372", - "typeID": "Label", - "zOrder": "6", - "measuredW": "126", - "measuredH": "25", - "x": "809", - "y": "1949", - "properties": { - "size": "17", - "text": "Quality Boosters" + "controlName": "101-image-prompting:quality-boosters" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "126", + "measuredH": "25", + "x": "67", + "y": "10", + "properties": { + "size": "17", + "text": "Quality Boosters" + } + } + ] + } } }, { - "ID": "3373", - "typeID": "TextArea", - "zOrder": "7", + "ID": "3456", + "typeID": "__group__", + "zOrder": "5", + "measuredW": "256", + "measuredH": "45", "w": "256", "h": "45", - "measuredW": "200", - "measuredH": "140", "x": "742", "y": "1989", "properties": { - "color": "16770457" - } - }, - { - "ID": "3374", - "typeID": "Label", - "zOrder": "8", - "measuredW": "124", - "measuredH": "25", - "x": "823", - "y": "1999", - "properties": { - "size": "17", - "text": "Weighted Terms" + "controlName": "102-image-prompting:weighted-terms" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "124", + "measuredH": "25", + "x": "81", + "y": "10", + "properties": { + "size": "17", + "text": "Weighted Terms" + } + } + ] + } } }, { - "ID": "3375", - "typeID": "TextArea", - "zOrder": "9", + "ID": "3457", + "typeID": "__group__", + "zOrder": "6", + "measuredW": "256", + "measuredH": "45", "w": "256", "h": "45", - "measuredW": "200", - "measuredH": "140", "x": "742", "y": "2038", "properties": { - "color": "16770457" - } - }, - { - "ID": "3376", - "typeID": "Label", - "zOrder": "10", - "measuredW": "203", - "measuredH": "25", - "x": "771", - "y": "2048", - "properties": { - "size": "17", - "text": "Fix Deformed Generations" - } - }, - { - "ID": "3377", - "typeID": "TextArea", - "zOrder": "11", - "w": "256", - "h": "45", - "measuredW": "200", - "measuredH": "140", - "x": "742", - "y": "2088", - "properties": { - "color": "16770457" - } - }, - { - "ID": "3378", - "typeID": "Label", - "zOrder": "12", - "measuredW": "153", - "measuredH": "25", - "x": "793", - "y": "2098", - "properties": { - "size": "17", - "text": "Offensive Measures" + "controlName": "103-image-prompting:deformed-generations" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "TextArea", + "zOrder": "0", + "w": "256", + "h": "45", + "measuredW": "200", + "measuredH": "140", + "x": "0", + "y": "0", + "properties": { + "color": "16770457" + } + }, + { + "ID": "1", + "typeID": "Label", + "zOrder": "1", + "measuredW": "203", + "measuredH": "25", + "x": "29", + "y": "10", + "properties": { + "size": "17", + "text": "Fix Deformed Generations" + } + } + ] + } } }, { - "ID": "3379", + "ID": "3475", "typeID": "Arrow", - "zOrder": "1", - "w": "179", - "h": "82", + "zOrder": "102", + "w": "1", + "h": "1", "measuredW": "150", "measuredH": "100", - "x": "988", - "y": "545", + "x": "549", + "y": "905", "properties": { "curvature": "0", "leftArrow": "false", "rightArrow": "false", - "color": "10027263", - "stroke": "dotted", "p0": { - "x": -0.12121212121212466, - "y": 0.4545454545453822 + "x": 0, + "y": 0 }, "p1": { - "x": 0.6134355370479128, - "y": 0.10823051718363962 + "x": 0.4941416970265235, + "y": -0.04371737291633719 }, "p2": { - "x": 178.66666666666652, - "y": 82.27272727272725 + "x": 1, + "y": 0 } } }, { - "ID": "3380", + "ID": "3476", "typeID": "Arrow", - "zOrder": "0", - "w": "450", + "zOrder": "103", + "w": "1", "h": "1", "measuredW": "150", "measuredH": "100", - "x": "429", - "y": "1816", + "x": "549", + "y": "945", "properties": { "curvature": "0", "leftArrow": "false", "rightArrow": "false", - "color": "10027263", "p0": { - "x": 449.78787878787875, - "y": -0.20575476734575204 + "x": 0, + "y": 0 }, "p1": { - "x": 0.4999999999999993, - "y": 0 + "x": 0.4941416970265235, + "y": -0.04371737291633719 }, "p2": { - "x": -0.21212121212124657, - "y": -0.20575476734575204 + "x": 1, + "y": 0 } } }, { - "ID": "3381", + "ID": "3477", "typeID": "Arrow", - "zOrder": "158", + "zOrder": "104", "w": "1", - "h": "416", + "h": "1", "measuredW": "150", "measuredH": "100", - "x": "429", - "y": "1817", + "x": "549", + "y": "988", "properties": { "curvature": "0", "leftArrow": "false", "rightArrow": "false", - "color": "10027263", "p0": { - "x": -0.06060606060611917, - "y": 415.8067663122506 + "x": 0, + "y": 0 }, "p1": { - "x": 0.4999999999999996, - "y": 0 + "x": 0.4941416970265235, + "y": -0.04371737291633719 }, "p2": { - "x": -0.06060606060611917, - "y": -0.20575476734575204 + "x": 1, + "y": 0 } } }, { - "ID": "3382", + "ID": "3481", "typeID": "Arrow", - "zOrder": "159", - "w": "450", + "zOrder": "105", + "w": "1", "h": "1", "measuredW": "150", "measuredH": "100", - "x": "429", - "y": "2234", + "x": "549", + "y": "1029", "properties": { "curvature": "0", "leftArrow": "false", "rightArrow": "false", - "color": "10027263", "p0": { - "x": 449.78787878787875, - "y": -0.20575476734575204 + "x": 0, + "y": 0 }, "p1": { - "x": 0.4999999999999993, - "y": 0 + "x": 0.4941416970265235, + "y": -0.04371737291633719 }, "p2": { - "x": -0.21212121212124657, - "y": -0.20575476734575204 + "x": 1, + "y": 0 } } }, { - "ID": "3383", + "ID": "3482", "typeID": "Arrow", - "zOrder": "160", + "zOrder": "106", "w": "1", - "h": "106", + "h": "1", "measuredW": "150", "measuredH": "100", - "x": "880", - "y": "2234", + "x": "549", + "y": "1071", "properties": { "curvature": "0", "leftArrow": "false", "rightArrow": "false", - "color": "10027263", "p0": { - "x": -0.06060606060611917, - "y": 106.04002465087751 + "x": 0, + "y": 0 }, "p1": { - "x": 0.49999999999999956, - "y": 0 + "x": 0.4941416970265235, + "y": -0.04371737291633719 }, "p2": { - "x": -0.06060606060611917, - "y": -0.20575476734575204 + "x": 1, + "y": 0 } } }, { - "ID": "3384", + "ID": "3483", "typeID": "Arrow", - "zOrder": "161", + "zOrder": "107", "w": "1", - "h": "80", + "h": "1", "measuredW": "150", "measuredH": "100", - "x": "879", - "y": "2406", + "x": "549", + "y": "1113", "properties": { "curvature": "0", "leftArrow": "false", "rightArrow": "false", - "color": "10027263", - "stroke": "dotted", "p0": { "x": 0, - "y": -0.00475478501221005 + "y": 0 }, "p1": { - "x": 0.49962160010312046, - "y": -0.0008638298060972025 + "x": 0.4941416970265235, + "y": -0.04371737291633719 }, "p2": { - "x": 0, - "y": 79.98159776540933 + "x": 1, + "y": 0 } } }, { - "ID": "3385", - "typeID": "Label", - "zOrder": "162", - "measuredW": "187", - "measuredH": "36", - "x": "786", - "y": "2356", - "properties": { - "size": "28", - "text": "Keep Learning" - } - }, - { - "ID": "3386", + "ID": "3484", "typeID": "Arrow", - "zOrder": "163", - "w": "129", + "zOrder": "108", + "w": "1", "h": "1", "measuredW": "150", "measuredH": "100", - "x": "815", - "y": "2543", + "x": "549", + "y": "1155", "properties": { "curvature": "0", "leftArrow": "false", "rightArrow": "false", - "stroke": "dotted", - "color": "16777215", "p0": { "x": 0, - "y": -0.00475478501221005 + "y": 0 }, "p1": { - "x": 0.49962160010312046, - "y": -0.0008638298060972025 + "x": 0.4941416970265235, + "y": -0.04371737291633719 }, "p2": { - "x": 129.208295421564, - "y": -0.00475478501221005 + "x": 1, + "y": 0 } } }, { - "ID": "3387", + "ID": "3485", "typeID": "Arrow", - "zOrder": "164", - "w": "129", + "zOrder": "109", + "w": "1", "h": "1", "measuredW": "150", "measuredH": "100", - "x": "129", - "y": "663", + "x": "549", + "y": "1197", "properties": { "curvature": "0", "leftArrow": "false", "rightArrow": "false", - "stroke": "dotted", - "color": "16777215", "p0": { "x": 0, - "y": -0.00475478501221005 + "y": 0 }, "p1": { - "x": 0.49962160010312046, - "y": -0.0008638298060972025 + "x": 0.4941416970265235, + "y": -0.04371737291633719 }, "p2": { - "x": 129.208295421564, - "y": -0.00475478501221005 + "x": 1, + "y": 0 + } + } + }, + { + "ID": "3486", + "typeID": "__group__", + "zOrder": "40", + "measuredW": "492", + "measuredH": "28", + "w": "492", + "h": "28", + "x": "564", + "y": "892", + "properties": { + "controlName": "100-prompts:good-prompts:use-delimiters" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "Label", + "zOrder": "0", + "measuredW": "492", + "measuredH": "28", + "x": "0", + "y": "0", + "properties": { + "text": "Use Delimiters to distinguish the data from the prompt.", + "size": "20" + } + } + ] + } + } + }, + { + "ID": "3487", + "typeID": "__group__", + "zOrder": "41", + "measuredW": "471", + "measuredH": "28", + "w": "471", + "h": "28", + "x": "565", + "y": "932", + "properties": { + "controlName": "101-prompts:good-prompts:structured-data" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "Label", + "zOrder": "0", + "measuredW": "471", + "measuredH": "28", + "x": "0", + "y": "0", + "properties": { + "text": "Ask for Structured Output e.g. JSON, XML, HTML etc.", + "size": "20" + } + } + ] + } + } + }, + { + "ID": "3488", + "typeID": "__group__", + "zOrder": "42", + "measuredW": "477", + "measuredH": "28", + "w": "477", + "h": "28", + "x": "565", + "y": "974", + "properties": { + "controlName": "102-prompts:good-prompts:style-information" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "Label", + "zOrder": "0", + "measuredW": "477", + "measuredH": "28", + "x": "0", + "y": "0", + "properties": { + "text": "Include style information to modify the tone of output.", + "size": "20" + } + } + ] + } + } + }, + { + "ID": "3489", + "typeID": "__group__", + "zOrder": "43", + "measuredW": "502", + "measuredH": "28", + "w": "502", + "h": "28", + "x": "565", + "y": "1016", + "properties": { + "controlName": "103-prompts:good-prompts:give-conditions" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "Label", + "zOrder": "0", + "measuredW": "502", + "measuredH": "28", + "x": "0", + "y": "0", + "properties": { + "text": "Give conditions to the model and ask if they are verified.", + "size": "20" + } + } + ] + } + } + }, + { + "ID": "3490", + "typeID": "__group__", + "zOrder": "44", + "measuredW": "500", + "measuredH": "28", + "w": "500", + "h": "28", + "x": "565", + "y": "1058", + "properties": { + "controlName": "104-prompts:good-prompts:give-examples" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "Label", + "zOrder": "0", + "measuredW": "500", + "measuredH": "28", + "x": "0", + "y": "0", + "properties": { + "text": "Give successful examples of completing tasks then ask.", + "size": "20" + } + } + ] + } + } + }, + { + "ID": "3491", + "typeID": "__group__", + "zOrder": "45", + "measuredW": "399", + "measuredH": "28", + "w": "399", + "h": "28", + "x": "565", + "y": "1100", + "properties": { + "controlName": "105-prompts:good-prompts:include-steps" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "Label", + "zOrder": "0", + "measuredW": "399", + "measuredH": "28", + "x": "0", + "y": "0", + "properties": { + "text": "Specify the steps required to perform a task.", + "size": "20" + } + } + ] + } + } + }, + { + "ID": "3492", + "typeID": "__group__", + "zOrder": "46", + "measuredW": "589", + "measuredH": "28", + "w": "589", + "h": "28", + "x": "565", + "y": "1142", + "properties": { + "controlName": "106-prompts:good-prompts:workout-solution" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "Label", + "zOrder": "0", + "measuredW": "589", + "measuredH": "28", + "x": "0", + "y": "0", + "properties": { + "text": "Instruct model to work out its own solution before giving answers. ", + "size": "20" + } + } + ] + } + } + }, + { + "ID": "3493", + "typeID": "__group__", + "zOrder": "47", + "measuredW": "290", + "measuredH": "28", + "w": "290", + "h": "28", + "x": "565", + "y": "1184", + "properties": { + "controlName": "107-prompts:good-prompts:iterate-refine" + }, + "children": { + "controls": { + "control": [ + { + "ID": "0", + "typeID": "Label", + "zOrder": "0", + "measuredW": "290", + "measuredH": "28", + "x": "0", + "y": "0", + "properties": { + "text": "Iterate and Refine your prompts.", + "size": "20" + } + } + ] } } } diff --git a/src/data/roadmaps/prompt-engineering/content/100-basic-llm/100-what-are-llms.md b/src/data/roadmaps/prompt-engineering/content/100-basic-llm/100-what-are-llms.md new file mode 100644 index 000000000..4b384096b --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/100-basic-llm/100-what-are-llms.md @@ -0,0 +1 @@ +# What are llms \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/100-basic-llm/101-llm-types.md b/src/data/roadmaps/prompt-engineering/content/100-basic-llm/101-llm-types.md new file mode 100644 index 000000000..beeacb794 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/100-basic-llm/101-llm-types.md @@ -0,0 +1 @@ +# Llm types \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/100-basic-llm/102-how-llms-built.md b/src/data/roadmaps/prompt-engineering/content/100-basic-llm/102-how-llms-built.md new file mode 100644 index 000000000..ac16fe79c --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/100-basic-llm/102-how-llms-built.md @@ -0,0 +1 @@ +# How llms built \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/100-basic-llm/103-llm-vocabulary.md b/src/data/roadmaps/prompt-engineering/content/100-basic-llm/103-llm-vocabulary.md new file mode 100644 index 000000000..32e66dfa3 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/100-basic-llm/103-llm-vocabulary.md @@ -0,0 +1 @@ +# Llm vocabulary \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/100-basic-llm/index.md b/src/data/roadmaps/prompt-engineering/content/100-basic-llm/index.md new file mode 100644 index 000000000..08a19d822 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/100-basic-llm/index.md @@ -0,0 +1 @@ +# Basic llm \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/101-prompting-introduction/100-basic-prompting.md b/src/data/roadmaps/prompt-engineering/content/101-prompting-introduction/100-basic-prompting.md new file mode 100644 index 000000000..1c35e5830 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/101-prompting-introduction/100-basic-prompting.md @@ -0,0 +1 @@ +# Basic prompting \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/101-prompting-introduction/101-need-for-prompting.md b/src/data/roadmaps/prompt-engineering/content/101-prompting-introduction/101-need-for-prompting.md new file mode 100644 index 000000000..35aa3a0b8 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/101-prompting-introduction/101-need-for-prompting.md @@ -0,0 +1 @@ +# Need for prompting \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/101-prompting-introduction/index.md b/src/data/roadmaps/prompt-engineering/content/101-prompting-introduction/index.md new file mode 100644 index 000000000..31f2a6b70 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/101-prompting-introduction/index.md @@ -0,0 +1 @@ +# Prompting introduction \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/101-parts-of-a-prompt.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/101-parts-of-a-prompt.md new file mode 100644 index 000000000..bb85b5d4a --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/101-parts-of-a-prompt.md @@ -0,0 +1 @@ +# Parts of a prompt \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/100-use-delimiters.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/100-use-delimiters.md new file mode 100644 index 000000000..6f46f69c8 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/100-use-delimiters.md @@ -0,0 +1 @@ +# Use delimiters \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/101-structured-data.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/101-structured-data.md new file mode 100644 index 000000000..63e018c02 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/101-structured-data.md @@ -0,0 +1 @@ +# Structured data \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/102-style-information.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/102-style-information.md new file mode 100644 index 000000000..dbe19b61e --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/102-style-information.md @@ -0,0 +1 @@ +# Style information \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/103-give-conditions.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/103-give-conditions.md new file mode 100644 index 000000000..51174310a --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/103-give-conditions.md @@ -0,0 +1 @@ +# Give conditions \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/104-give-examples.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/104-give-examples.md new file mode 100644 index 000000000..533f43472 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/104-give-examples.md @@ -0,0 +1 @@ +# Give examples \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/105-include-steps.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/105-include-steps.md new file mode 100644 index 000000000..38ba84f1a --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/105-include-steps.md @@ -0,0 +1 @@ +# Include steps \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/106-workout-solution.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/106-workout-solution.md new file mode 100644 index 000000000..29f95d3a5 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/106-workout-solution.md @@ -0,0 +1 @@ +# Workout solution \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/107-iterate-refine.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/107-iterate-refine.md new file mode 100644 index 000000000..4518173cc --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/107-iterate-refine.md @@ -0,0 +1 @@ +# Iterate refine \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/index.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/index.md new file mode 100644 index 000000000..7583a12e2 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/good-prompts/index.md @@ -0,0 +1 @@ +# Good prompts \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/index.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/index.md new file mode 100644 index 000000000..3010b0341 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/index.md @@ -0,0 +1 @@ +# Prompts \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/100-role-prompting.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/100-role-prompting.md new file mode 100644 index 000000000..7e8f9c5c8 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/100-role-prompting.md @@ -0,0 +1 @@ +# Role prompting \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/101-few-shot-prompting.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/101-few-shot-prompting.md new file mode 100644 index 000000000..b0df1af88 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/101-few-shot-prompting.md @@ -0,0 +1 @@ +# Few shot prompting \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/102-chain-of-thought.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/102-chain-of-thought.md new file mode 100644 index 000000000..3af8a7d20 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/102-chain-of-thought.md @@ -0,0 +1 @@ +# Chain of thought \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/103-zeroshot-chain-of-thought.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/103-zeroshot-chain-of-thought.md new file mode 100644 index 000000000..02bc250ca --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/103-zeroshot-chain-of-thought.md @@ -0,0 +1 @@ +# Zeroshot chain of thought \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/104-least-to-most.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/104-least-to-most.md new file mode 100644 index 000000000..09960cffd --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/104-least-to-most.md @@ -0,0 +1 @@ +# Least to most \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/105-dual-prompt.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/105-dual-prompt.md new file mode 100644 index 000000000..e9d988534 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/105-dual-prompt.md @@ -0,0 +1 @@ +# Dual prompt \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/106-combining-techniques.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/106-combining-techniques.md new file mode 100644 index 000000000..5f130ed01 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/106-combining-techniques.md @@ -0,0 +1 @@ +# Combining techniques \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/index.md b/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/index.md new file mode 100644 index 000000000..1d9a7ee29 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/102-prompts/prompting-techniques/index.md @@ -0,0 +1 @@ +# Prompting techniques \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/103-real-world/100-structured-data.md b/src/data/roadmaps/prompt-engineering/content/103-real-world/100-structured-data.md new file mode 100644 index 000000000..63e018c02 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/103-real-world/100-structured-data.md @@ -0,0 +1 @@ +# Structured data \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/103-real-world/101-inferring.md b/src/data/roadmaps/prompt-engineering/content/103-real-world/101-inferring.md new file mode 100644 index 000000000..82f3a7651 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/103-real-world/101-inferring.md @@ -0,0 +1 @@ +# Inferring \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/103-real-world/102-writing-emails.md b/src/data/roadmaps/prompt-engineering/content/103-real-world/102-writing-emails.md new file mode 100644 index 000000000..f99e029de --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/103-real-world/102-writing-emails.md @@ -0,0 +1 @@ +# Writing emails \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/103-real-world/103-coding-assistance.md b/src/data/roadmaps/prompt-engineering/content/103-real-world/103-coding-assistance.md new file mode 100644 index 000000000..d0275c7fc --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/103-real-world/103-coding-assistance.md @@ -0,0 +1 @@ +# Coding assistance \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/103-real-world/104-study-buddy.md b/src/data/roadmaps/prompt-engineering/content/103-real-world/104-study-buddy.md new file mode 100644 index 000000000..e59b9df08 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/103-real-world/104-study-buddy.md @@ -0,0 +1 @@ +# Study buddy \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/103-real-world/105-designing-chatbots.md b/src/data/roadmaps/prompt-engineering/content/103-real-world/105-designing-chatbots.md new file mode 100644 index 000000000..36a5e71ef --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/103-real-world/105-designing-chatbots.md @@ -0,0 +1 @@ +# Designing chatbots \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/103-real-world/index.md b/src/data/roadmaps/prompt-engineering/content/103-real-world/index.md new file mode 100644 index 000000000..7d542978d --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/103-real-world/index.md @@ -0,0 +1 @@ +# Real world \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/100-citing-sources.md b/src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/100-citing-sources.md new file mode 100644 index 000000000..776c50737 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/100-citing-sources.md @@ -0,0 +1 @@ +# Citing sources \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/101-bias.md b/src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/101-bias.md new file mode 100644 index 000000000..c78dc3d0d --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/101-bias.md @@ -0,0 +1 @@ +# Bias \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/102-hallucinations.md b/src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/102-hallucinations.md new file mode 100644 index 000000000..65be2e424 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/102-hallucinations.md @@ -0,0 +1 @@ +# Hallucinations \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/103-math.md b/src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/103-math.md new file mode 100644 index 000000000..c8a3cc2c3 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/103-math.md @@ -0,0 +1 @@ +# Math \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/104-prompt-hacking.md b/src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/104-prompt-hacking.md new file mode 100644 index 000000000..cc80b4835 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/104-prompt-hacking.md @@ -0,0 +1 @@ +# Prompt hacking \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/index.md b/src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/index.md new file mode 100644 index 000000000..4effe5a3e --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/104-llm-pitfalls/index.md @@ -0,0 +1 @@ +# Llm pitfalls \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/105-reliability/100-debiasing.md b/src/data/roadmaps/prompt-engineering/content/105-reliability/100-debiasing.md new file mode 100644 index 000000000..8156283e6 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/105-reliability/100-debiasing.md @@ -0,0 +1 @@ +# Debiasing \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/105-reliability/101-ensembling.md b/src/data/roadmaps/prompt-engineering/content/105-reliability/101-ensembling.md new file mode 100644 index 000000000..a8737fbdb --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/105-reliability/101-ensembling.md @@ -0,0 +1 @@ +# Ensembling \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/105-reliability/102-self-evaluation.md b/src/data/roadmaps/prompt-engineering/content/105-reliability/102-self-evaluation.md new file mode 100644 index 000000000..6bb112ce3 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/105-reliability/102-self-evaluation.md @@ -0,0 +1 @@ +# Self evaluation \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/105-reliability/103-calibrating-llms.md b/src/data/roadmaps/prompt-engineering/content/105-reliability/103-calibrating-llms.md new file mode 100644 index 000000000..3bb6f67d0 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/105-reliability/103-calibrating-llms.md @@ -0,0 +1 @@ +# Calibrating llms \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/105-reliability/104-math.md b/src/data/roadmaps/prompt-engineering/content/105-reliability/104-math.md new file mode 100644 index 000000000..c8a3cc2c3 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/105-reliability/104-math.md @@ -0,0 +1 @@ +# Math \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/105-reliability/index.md b/src/data/roadmaps/prompt-engineering/content/105-reliability/index.md new file mode 100644 index 000000000..4ba13e293 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/105-reliability/index.md @@ -0,0 +1 @@ +# Reliability \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/106-llm-settings/100-temperature.md b/src/data/roadmaps/prompt-engineering/content/106-llm-settings/100-temperature.md new file mode 100644 index 000000000..9028fe2d0 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/106-llm-settings/100-temperature.md @@ -0,0 +1 @@ +# Temperature \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/106-llm-settings/101-top-p.md b/src/data/roadmaps/prompt-engineering/content/106-llm-settings/101-top-p.md new file mode 100644 index 000000000..6e1604bae --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/106-llm-settings/101-top-p.md @@ -0,0 +1 @@ +# Top p \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/106-llm-settings/102-other-hyper-params.md b/src/data/roadmaps/prompt-engineering/content/106-llm-settings/102-other-hyper-params.md new file mode 100644 index 000000000..4583a45e9 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/106-llm-settings/102-other-hyper-params.md @@ -0,0 +1 @@ +# Other hyper params \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/106-llm-settings/index.md b/src/data/roadmaps/prompt-engineering/content/106-llm-settings/index.md new file mode 100644 index 000000000..20318dbf7 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/106-llm-settings/index.md @@ -0,0 +1 @@ +# Llm settings \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/100-prompt-injection.md b/src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/100-prompt-injection.md new file mode 100644 index 000000000..931ac3a81 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/100-prompt-injection.md @@ -0,0 +1 @@ +# Prompt injection \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/101-prompt-leaking.md b/src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/101-prompt-leaking.md new file mode 100644 index 000000000..1ff8e292a --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/101-prompt-leaking.md @@ -0,0 +1 @@ +# Prompt leaking \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/102-jailbreaking.md b/src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/102-jailbreaking.md new file mode 100644 index 000000000..e8b8e3321 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/102-jailbreaking.md @@ -0,0 +1 @@ +# Jailbreaking \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/103-defensive-measures.md b/src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/103-defensive-measures.md new file mode 100644 index 000000000..0548b8dc8 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/103-defensive-measures.md @@ -0,0 +1 @@ +# Defensive measures \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/104-offensive-measures.md b/src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/104-offensive-measures.md new file mode 100644 index 000000000..a5b76ab49 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/104-offensive-measures.md @@ -0,0 +1 @@ +# Offensive measures \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/index.md b/src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/index.md new file mode 100644 index 000000000..cc80b4835 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/107-prompt-hacking/index.md @@ -0,0 +1 @@ +# Prompt hacking \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/108-image-prompting/100-style-modifiers.md b/src/data/roadmaps/prompt-engineering/content/108-image-prompting/100-style-modifiers.md new file mode 100644 index 000000000..c7503748d --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/108-image-prompting/100-style-modifiers.md @@ -0,0 +1 @@ +# Style modifiers \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/108-image-prompting/101-quality-boosters.md b/src/data/roadmaps/prompt-engineering/content/108-image-prompting/101-quality-boosters.md new file mode 100644 index 000000000..d33f2642e --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/108-image-prompting/101-quality-boosters.md @@ -0,0 +1 @@ +# Quality boosters \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/108-image-prompting/102-weighted-terms.md b/src/data/roadmaps/prompt-engineering/content/108-image-prompting/102-weighted-terms.md new file mode 100644 index 000000000..686f14e03 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/108-image-prompting/102-weighted-terms.md @@ -0,0 +1 @@ +# Weighted terms \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/108-image-prompting/103-deformed-generations.md b/src/data/roadmaps/prompt-engineering/content/108-image-prompting/103-deformed-generations.md new file mode 100644 index 000000000..736e676b2 --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/108-image-prompting/103-deformed-generations.md @@ -0,0 +1 @@ +# Deformed generations \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content/108-image-prompting/index.md b/src/data/roadmaps/prompt-engineering/content/108-image-prompting/index.md new file mode 100644 index 000000000..512e8e6fa --- /dev/null +++ b/src/data/roadmaps/prompt-engineering/content/108-image-prompting/index.md @@ -0,0 +1 @@ +# Image prompting \ No newline at end of file diff --git a/src/data/roadmaps/prompt-engineering/content.md b/src/data/roadmaps/prompt-engineering/content/index.md similarity index 100% rename from src/data/roadmaps/prompt-engineering/content.md rename to src/data/roadmaps/prompt-engineering/content/index.md