Dev Aggarwal

API: Lesson Plan JSON Mode


📖 To learn more, take a look at our complete API

📤 Example Request

  1. Generate an api key below👇

  2. Install node-fetch & add the GOOEY_API_KEY to your environment variables.
    Never store the api key in your code and don't use direcly in the browser.

$ npm install node-fetch
$ export GOOEY_API_KEY=sk-xxxx
  1. Use this sample code to call the API.
    If you encounter any issues, write to us at [email protected] and make sure to include the full code snippet and the error message.
import fetch from 'node-fetch';

const payload = {
  "input_prompt": "Create a lesson plan on HCF for math subject, ensuring students can solve simple algebraic equations by the end of the 150-mins lesson.\n\n{\n  \"MATHEMATICS_LESSON_PLAN\": {\n    \"CLASS\": \"6B\",\n    \"Subject\": \"[Enter Subject]\",\n    \"Duration\": \"[Enter Total Duration]\"\n    \"Learning_Outcomes\": [\n      \"[Enter Learning Outcome 1]\",\n      \"[Enter Learning Outcome 2]\"\n    ],\n    \"Differentiation\": {\n      \"High_Achievers\": [\n        \"[High Achiever 1: Enter Activity]\",\n        \"[High Achiever 2: Enter Activity]\"\n      ],\n      \"Medium_Achievers\": [\n        \"[Medium Achiever 1: Enter Activity]\",\n        \"[Medium Achiever 2: Enter Activity]\"\n      ],\n      \"Low_Achievers\": [\n        \"[Low Achiever 1: Enter Activity]\",\n        \"[Low Achiever 2: Enter Activity]\"\n      ]\n    },\n    \"Assessment\": {\n      \"Oral_Questioning\": \"[Enter Oral Questioning Details]\",\n      \"Homework\": \"[Enter Homework Details]\"\n    },\n    \"Phases\": {\n      \"Phase_1_Introduction\": {\n        \"Duration\": \"[Enter Duration]\",\n        \"Activities\": [\n          \"[Enter Activity 1]\",\n          \"[Enter Activity 2]\"\n        ]\n      },\n      \"Phase_2_Learners_Activities\": {\n        \"Duration\": \"[Enter Duration]\",\n        \"Group_Activities\": [\n          {\n            \"Group\": \"[Enter Group Name]\",\n            \"Learners\": \"[Enter Learner Names]\",\n            \"Activity\": \"[Enter Activity Description]\"\n          },\n          {\n            \"Group\": \"[Enter Group Name]\",\n            \"Learners\": \"[Enter Learner Names]\",\n            \"Activity\": \"[Enter Activity Description]\"\n          }\n        ]\n      },\n      \"Phase_3_Conclusion\": {\n        \"Duration\": \"[Enter Duration]\",\n        \"Activities\": [\n          \"[Enter Activity 1]\",\n          \"[Enter Activity 2]\"\n        ]\n      }\n    }\n  }\n}",
  "selected_models": [
    "gpt_4_o",
    "gemini_1_5_pro",
    "claude_3_5_sonnet",
    "gemini_1_5_flash"
  ]
};

async function gooeyAPI() {
  const response = await fetch("https://api.gooey.ai/v2/CompareLLM?example_id=bfmfw2xqksd7", {
    method: "POST",
    headers: {
      "Authorization": "bearer " + process.env["GOOEY_API_KEY"],
      "Content-Type": "application/json",
    },
    body: JSON.stringify(payload),
  });

  if (!response.ok) {
    throw new Error(response.status);
  }

  const result = await response.json();
  console.log(response.status, result);
}

gooeyAPI();
  1. Generate an api key below👇

  2. Install requests & add the GOOEY_API_KEY to your environment variables.
    Never store the api key in your code.

$ python3 -m pip install requests
$ export GOOEY_API_KEY=sk-xxxx
  1. Use this sample code to call the API.
    If you encounter any issues, write to us at [email protected] and make sure to include the full code snippet and the error message.
import os
import requests

payload = {
    "input_prompt": 'Create a lesson plan on HCF for math subject, ensuring students can solve simple algebraic equations by the end of the 150-mins lesson.\n\n{\n  "MATHEMATICS_LESSON_PLAN": {\n    "CLASS": "6B",\n    "Subject": "[Enter Subject]",\n    "Duration": "[Enter Total Duration]"\n    "Learning_Outcomes": [\n      "[Enter Learning Outcome 1]",\n      "[Enter Learning Outcome 2]"\n    ],\n    "Differentiation": {\n      "High_Achievers": [\n        "[High Achiever 1: Enter Activity]",\n        "[High Achiever 2: Enter Activity]"\n      ],\n      "Medium_Achievers": [\n        "[Medium Achiever 1: Enter Activity]",\n        "[Medium Achiever 2: Enter Activity]"\n      ],\n      "Low_Achievers": [\n        "[Low Achiever 1: Enter Activity]",\n        "[Low Achiever 2: Enter Activity]"\n      ]\n    },\n    "Assessment": {\n      "Oral_Questioning": "[Enter Oral Questioning Details]",\n      "Homework": "[Enter Homework Details]"\n    },\n    "Phases": {\n      "Phase_1_Introduction": {\n        "Duration": "[Enter Duration]",\n        "Activities": [\n          "[Enter Activity 1]",\n          "[Enter Activity 2]"\n        ]\n      },\n      "Phase_2_Learners_Activities": {\n        "Duration": "[Enter Duration]",\n        "Group_Activities": [\n          {\n            "Group": "[Enter Group Name]",\n            "Learners": "[Enter Learner Names]",\n            "Activity": "[Enter Activity Description]"\n          },\n          {\n            "Group": "[Enter Group Name]",\n            "Learners": "[Enter Learner Names]",\n            "Activity": "[Enter Activity Description]"\n          }\n        ]\n      },\n      "Phase_3_Conclusion": {\n        "Duration": "[Enter Duration]",\n        "Activities": [\n          "[Enter Activity 1]",\n          "[Enter Activity 2]"\n        ]\n      }\n    }\n  }\n}',
    "selected_models": [
        "gpt_4_o",
        "gemini_1_5_pro",
        "claude_3_5_sonnet",
        "gemini_1_5_flash",
    ],
}

response = requests.post(
    "https://api.gooey.ai/v2/CompareLLM?example_id=bfmfw2xqksd7",
    headers={
        "Authorization": "bearer " + os.environ["GOOEY_API_KEY"],
    },
    json=payload,
)
assert response.ok, response.content

result = response.json()
print(response.status_code, result)
  1. Generate an api key below👇

  2. Install curl & add the GOOEY_API_KEY to your environment variables.
    Never store the api key in your code.

export GOOEY_API_KEY=sk-xxxx
  1. Run the following curl command in your terminal.
    If you encounter any issues, write to us at [email protected] and make sure to include the full curl command and the error message.
curl 'https://api.gooey.ai/v2/CompareLLM?example_id=bfmfw2xqksd7' \
  -H "Authorization: bearer $GOOEY_API_KEY" \
  -H 'Content-Type: application/json' \
  -d '{
  "input_prompt": "Create a lesson plan on HCF for math subject, ensuring students can solve simple algebraic equations by the end of the 150-mins lesson.\n\n{\n  \"MATHEMATICS_LESSON_PLAN\": {\n    \"CLASS\": \"6B\",\n    \"Subject\": \"[Enter Subject]\",\n    \"Duration\": \"[Enter Total Duration]\"\n    \"Learning_Outcomes\": [\n      \"[Enter Learning Outcome 1]\",\n      \"[Enter Learning Outcome 2]\"\n    ],\n    \"Differentiation\": {\n      \"High_Achievers\": [\n        \"[High Achiever 1: Enter Activity]\",\n        \"[High Achiever 2: Enter Activity]\"\n      ],\n      \"Medium_Achievers\": [\n        \"[Medium Achiever 1: Enter Activity]\",\n        \"[Medium Achiever 2: Enter Activity]\"\n      ],\n      \"Low_Achievers\": [\n        \"[Low Achiever 1: Enter Activity]\",\n        \"[Low Achiever 2: Enter Activity]\"\n      ]\n    },\n    \"Assessment\": {\n      \"Oral_Questioning\": \"[Enter Oral Questioning Details]\",\n      \"Homework\": \"[Enter Homework Details]\"\n    },\n    \"Phases\": {\n      \"Phase_1_Introduction\": {\n        \"Duration\": \"[Enter Duration]\",\n        \"Activities\": [\n          \"[Enter Activity 1]\",\n          \"[Enter Activity 2]\"\n        ]\n      },\n      \"Phase_2_Learners_Activities\": {\n        \"Duration\": \"[Enter Duration]\",\n        \"Group_Activities\": [\n          {\n            \"Group\": \"[Enter Group Name]\",\n            \"Learners\": \"[Enter Learner Names]\",\n            \"Activity\": \"[Enter Activity Description]\"\n          },\n          {\n            \"Group\": \"[Enter Group Name]\",\n            \"Learners\": \"[Enter Learner Names]\",\n            \"Activity\": \"[Enter Activity Description]\"\n          }\n        ]\n      },\n      \"Phase_3_Conclusion\": {\n        \"Duration\": \"[Enter Duration]\",\n        \"Activities\": [\n          \"[Enter Activity 1]\",\n          \"[Enter Activity 2]\"\n        ]\n      }\n    }\n  }\n}",
  "selected_models": [
    "gpt_4_o",
    "gemini_1_5_pro",
    "claude_3_5_sonnet",
    "gemini_1_5_flash"
  ]
}'

🎁 Example Response

{4 Items
"id"
:
string
"onfgzctu4ulp"
"url"
:
string
"https://gooey.ai/compare-large-language-models/"
"created_at"
:
string
"2024-09-02T11:45:12.411800+00:00"
"output"
:
{1 Items
"output_text"
:
{4 Items
"gpt_4_o"
:
[
]1 Items
"gemini_1_5_pro"
:
[
]1 Items
"gemini_1_5_flash"
:
[
]1 Items
"claude_3_5_sonnet"
:
[
]1 Items
}
}
}

Please Login to generate the $GOOEY_API_KEY