Usage: paste a JSON with the list of definitions and words defined in this format:
You can use this prompt with an LLM (for example claude or chatGPT) to turn a list you have into the right format:
{
"nameOfList": "General Knowledge",
"list": [
{"definition": "The capital of France", "wordsDefined": "Paris"},
{"definition": "The largest planet", "wordsDefined": "Jupiter"}
]
}
Here's a list of definitions:
[THE LIST YOU HAVE]
Turn this list of definitions into the following JSON format:
{
"nameOfList",
"list": [
{"definition", "wordsDefined"},
]
}
Only the raw JSON, no comments, intro, backtick block.