Initial Query
For each of the following ten movies give at most 5 emoji that would best describe the movie.
Give your answer as a JSON array. So If I asked for
you might might answer
| {"Finding Nemo": ["🐠", "🐟", "🐡", "🐬", "🐳"],
"Toy Story": ["🚀", "⚔️,", "🤖", "👽", "🌌"]}
|
.
Each emoji must be a single utf8 character. ABSOLUTELY NO ZERO WIDTH JOINING. (So, max(len(emoji) for movie in result.values() for emoji in movie) == 1)
Now give me answers for these movies:
Give ONLY a JSON output. Nothing else.
LLM Generation
Query
For each of the following ten movies give at most 5 emoji that would best describe the movie.
Give your answer as a JSON array. So If I asked for
you might might answer
| {"Finding Nemo": ["🐠", "🐟", "🐡", "🐬", "🐳"],
"Toy Story": ["🚀", "⚔️,", "🤖", "👽", "🌌"]}
|
.
Each emoji must be a single utf8 character. ABSOLUTELY NO ZERO WIDTH JOINING. (So, max(len(emoji) for movie in result.values() for emoji in movie) == 1)
Now give me answers for these movies:
Give ONLY a JSON output. Nothing else.
Output
{
"The Lion King": ["🦁", "👑", "💔", "🌅", "🐒"],
"The Nightmare Before Christmas": ["💀", "🎃", "👻", "❄️", "🎄"],
"The Godfather": ["🕴️", "💼", "🔫", "👨", "💰"],
"The Matrix": ["🤖", "⚡", "🕶️", "💊", "🌐"],
"Casablanca": ["💕", "🚬", "🎶", "🌃", "✈️"],
"Raiders of the Lost Ark": ["🏺", "🐍", "🗺️", "🔍", "🤠"],
"V for Vendetta": ["🎭", "🔥", "✊", "🗽", "🕊️"],
"The Princess Bride": ["❤️", "🗡️", "👸", "💍", "🐎"],
"Back to the Future": ["⏰", "🚗", "🔬", "👨", "🕰️"],
"Dune": ["🏜️", "🐛", "🚀", "👑", "⚔️"]
}
Extract Json
I extracted the following JSON from that output:
1
2
3
4
5
6
7
8
9
10
11
12 | {
"The Lion King": ["🦁", "👑", "💔", "🌅", "🐒"],
"The Nightmare Before Christmas": ["💀", "🎃", "👻", "❄️", "🎄"],
"The Godfather": ["🕴️", "💼", "🔫", "👨", "💰"],
"The Matrix": ["🤖", "⚡", "🕶️", "💊", "🌐"],
"Casablanca": ["💕", "🚬", "🎶", "🌃", "✈️"],
"Raiders of the Lost Ark": ["🏺", "🐍", "🗺️", "🔍", "🤠"],
"V for Vendetta": ["🎭", "🔥", "✊", "🗽", "🕊️"],
"The Princess Bride": ["❤️", "🗡️", "👸", "💍", "🐎"],
"Back to the Future": ["⏰", "🚗", "🔬", "👨", "🕰️"],
"Dune": ["🏜️", "🐛", "🚀", "👑", "⚔️"]
}
|
PyFunc
Resulting in output:
[['🦁', '👑', '💔', '🌅', '🐒'],
['💀', '🎃', '👻', '❄️', '🎄'],
['🕴️', '💼', '🔫', '👨', '💰'],
['🤖', '⚡', '🕶️', '💊', '🌐'],
['💕', '🚬', '🎶', '🌃', '✈️'],
['🏺', '🐍', '🗺️', '🔍', '🤠'],
['🎭', '🔥', '✊', '🗽', '🕊️'],
['❤️', '🗡️', '👸', '💍', '🐎'],
['⏰', '🚗', '🔬', '👨', '🕰️'],
['🏜️', '🐛', '🚀', '👑', '⚔️']]
LLM Generation
Query
For each of the following ten movies described by 5 emoji, give the movie title that best matches.
Give your answer as a JSON list. So If I asked for
You might answer
| ["Finding Nemo", "Toy Story"]]
|
.
Now give me answers for these movies:
| ['💀', '🎃', '👻', '❄️', '🎄'],
['🕴️', '💼', '🔫', '👨', '💰'],
['🤖', '⚡', '🕶️', '💊', '🌐'],
['💕', '🚬', '🎶', '🌃', '✈️'],
['🏺', '🐍', '🗺️', '🔍', '🤠'],
['🎭', '🔥', '✊', '🗽', '🕊️'],
['❤️', '🗡️', '👸', '💍', '🐎'],
['⏰', '🚗', '🔬', '👨', '🕰️'],
['🏜️', '🐛', '🚀', '👑', '⚔️']]
|
What are the names of the movie titles?
Output
Here's the JSON list with the movie titles:
1
2
3
4
5
6
7
8
9
10
11
12 | [
"The Lion King",
"A Nightmare Before Christmas",
"Pulp Fiction",
"The Matrix",
"La La Land",
"Indiana Jones and the Raiders of the Lost Ark",
"Hamilton",
"Tristan and Isolde",
"Back to the Future",
"Dune"
]
|
Each movie title corresponds to the emoji sequence in the order they were presented. I interpreted the emojis based on their symbolic representation of key themes, characters, or elements from each movie.
Extract Json
I extracted the following JSON from that output:
1
2
3
4
5
6
7
8
9
10
11
12 | [
"The Lion King",
"A Nightmare Before Christmas",
"Pulp Fiction",
"The Matrix",
"La La Land",
"Indiana Jones and the Raiders of the Lost Ark",
"Hamilton",
"Tristan and Isolde",
"Back to the Future",
"Dune"
]
|
PyFunc
OK
Resulting in output:
False
Initial Query
For each of the following ten movies give at most 5 emoji that would best describe the movie.
Give your answer as a JSON array. So If I asked for
you might might answer
| {"Finding Nemo": ["🐠", "🐟", "🐡", "🐬", "🐳"],
"Toy Story": ["🚀", "⚔️,", "🤖", "👽", "🌌"]}
|
.
Each emoji must be a single utf8 character. ABSOLUTELY NO ZERO WIDTH JOINING. (So, max(len(emoji) for movie in result.values() for emoji in movie) == 1)
Now give me answers for these movies:
Give ONLY a JSON output. Nothing else.
LLM Generation
Query
For each of the following ten movies give at most 5 emoji that would best describe the movie.
Give your answer as a JSON array. So If I asked for
you might might answer
| {"Finding Nemo": ["🐠", "🐟", "🐡", "🐬", "🐳"],
"Toy Story": ["🚀", "⚔️,", "🤖", "👽", "🌌"]}
|
.
Each emoji must be a single utf8 character. ABSOLUTELY NO ZERO WIDTH JOINING. (So, max(len(emoji) for movie in result.values() for emoji in movie) == 1)
Now give me answers for these movies:
Give ONLY a JSON output. Nothing else.
Output
{
"The Lion King": ["🦁", "👑", "🌍", "💔", "❤️"],
"The Nightmare Before Christmas": ["💀", "🎃", "👻", "❄️", "🎄"],
"The Godfather": ["🔫", "🕴️", "💼", "🇮🇹", "🚬"],
"The Matrix": ["💊", "🤖", "👨💻", "🌐", "🕶️"],
"Casablanca": ["💘", "🚬", "🍸", "✈️", "🇲🇦"],
"Raiders of the Lost Ark": ["🏺", "🐍", "🌄", "🔍", "🤠"],
"V for Vendetta": ["🎭", "🔥", "🥷", "🇬🇧", "⚔️"],
"The Princess Bride": ["💕", "⚔️", "🐎", "👸", "🐀"],
"Back to the Future": ["🚗", "⏰", "🔬", "💥", "👨👩👦"],
"Dune": ["🏜️", "🐛", "🚀", "👑", "💧"]
}
Extract Json
I extracted the following JSON from that output:
1
2
3
4
5
6
7
8
9
10
11
12 | {
"The Lion King": ["🦁", "👑", "🌍", "💔", "❤️"],
"The Nightmare Before Christmas": ["💀", "🎃", "👻", "❄️", "🎄"],
"The Godfather": ["🔫", "🕴️", "💼", "🇮🇹", "🚬"],
"The Matrix": ["💊", "🤖", "👨💻", "🌐", "🕶️"],
"Casablanca": ["💘", "🚬", "🍸", "✈️", "🇲🇦"],
"Raiders of the Lost Ark": ["🏺", "🐍", "🌄", "🔍", "🤠"],
"V for Vendetta": ["🎭", "🔥", "🥷", "🇬🇧", "⚔️"],
"The Princess Bride": ["💕", "⚔️", "🐎", "👸", "🐀"],
"Back to the Future": ["🚗", "⏰", "🔬", "💥", "👨👩👦"],
"Dune": ["🏜️", "🐛", "🚀", "👑", "💧"]
}
|
PyFunc
Resulting in output:
[['🦁', '👑', '🌍', '💔', '❤️'],
['💀', '🎃', '👻', '❄️', '🎄'],
['🔫', '🕴️', '💼', '🇮🇹', '🚬'],
['💊', '🤖', '🌐', '🕶️'],
['💘', '🚬', '🍸', '✈️', '🇲🇦'],
['🏺', '🐍', '🌄', '🔍', '🤠'],
['🎭', '🔥', '🥷', '🇬🇧', '⚔️'],
['💕', '⚔️', '🐎', '👸', '🐀'],
['🚗', '⏰', '🔬', '💥'],
['🏜️', '🐛', '🚀', '👑', '💧']]
LLM Generation
Query
For each of the following ten movies described by 5 emoji, give the movie title that best matches.
Give your answer as a JSON list. So If I asked for
You might answer
| ["Finding Nemo", "Toy Story"]]
|
.
Now give me answers for these movies:
| ['💀', '🎃', '👻', '❄️', '🎄'],
['🔫', '🕴️', '💼', '🇮🇹', '🚬'],
['💊', '🤖', '🌐', '🕶️'],
['💘', '🚬', '🍸', '✈️', '🇲🇦'],
['🏺', '🐍', '🌄', '🔍', '🤠'],
['🎭', '🔥', '🥷', '🇬🇧', '⚔️'],
['💕', '⚔️', '🐎', '👸', '🐀'],
['🚗', '⏰', '🔬', '💥'],
['🏜️', '🐛', '🚀', '👑', '💧']]
|
What are the names of the movie titles?
Output
I'll help you identify the movie titles based on the emoji descriptions. Here's the JSON list of movie titles:
1
2
3
4
5
6
7
8
9
10
11
12 | [
"The Lion King",
"Nightmare Before Christmas",
"The Godfather",
"The Matrix",
"Casablanca",
"Raiders of the Lost Ark",
"V for Vendetta",
"Beauty and the Beast",
"Back to the Future",
"Dune"
]
|
Let me break down the emoji-to-movie reasoning:
1. 🦁👑🌍💔❤️ = The Lion King (lions, crown, world, heartbreak)
2. 💀🎃👻❄️🎄 = Nightmare Before Christmas (death, Halloween, ghosts, winter, Christmas)
3. 🔫🕴️💼🇮🇹🚬 = The Godfather (gun, suits, Italy, smoking)
4. 💊🤖🌐🕶️ = The Matrix (pills, robots, worldwide, sunglasses)
5. 💘🚬🍸✈️🇲🇦 = Casablanca (love, smoking, cocktail, airplane, Morocco)
6. 🏺🐍🌄🔍🤠 = Raiders of the Lost Ark (ark, snake, landscape, searching, adventurer)
7. 🎭🔥🥷🇬🇧⚔️ = V for Vendetta (mask, fire, ninja, Britain, sword)
8. 💕⚔️🐎👸🐀 = Beauty and the Beast (love, sword, horse, princess, rat)
9. 🚗⏰🔬💥 = Back to the Future (car, time, science, explosion)
10. 🏜️🐛🚀👑💧 = Dune (desert, worm, spaceship, royalty, water)
Extract Json
I extracted the following JSON from that output:
1
2
3
4
5
6
7
8
9
10
11
12 | [
"The Lion King",
"Nightmare Before Christmas",
"The Godfather",
"The Matrix",
"Casablanca",
"Raiders of the Lost Ark",
"V for Vendetta",
"Beauty and the Beast",
"Back to the Future",
"Dune"
]
|
PyFunc
OK
Resulting in output:
True
Initial Query
For each of the following ten movies give at most 5 emoji that would best describe the movie.
Give your answer as a JSON array. So If I asked for
you might might answer
| {"Finding Nemo": ["🐠", "🐟", "🐡", "🐬", "🐳"],
"Toy Story": ["🚀", "⚔️,", "🤖", "👽", "🌌"]}
|
.
Each emoji must be a single utf8 character. ABSOLUTELY NO ZERO WIDTH JOINING. (So, max(len(emoji) for movie in result.values() for emoji in movie) == 1)
Now give me answers for these movies:
Give ONLY a JSON output. Nothing else.
LLM Generation
Query
For each of the following ten movies give at most 5 emoji that would best describe the movie.
Give your answer as a JSON array. So If I asked for
you might might answer
| {"Finding Nemo": ["🐠", "🐟", "🐡", "🐬", "🐳"],
"Toy Story": ["🚀", "⚔️,", "🤖", "👽", "🌌"]}
|
.
Each emoji must be a single utf8 character. ABSOLUTELY NO ZERO WIDTH JOINING. (So, max(len(emoji) for movie in result.values() for emoji in movie) == 1)
Now give me answers for these movies:
Give ONLY a JSON output. Nothing else.
Output
{
"The Lion King": ["🦁", "👑", "🌍", "💔", "✨"],
"The Nightmare Before Christmas": ["💀", "🎄", "🎃", "👻", "❄️"],
"The Godfather": ["🍝", "🕴️", "💼", "💰", "🚬"],
"The Matrix": ["🤖", "⚡", "🕶️", "💊", "🌐"],
"Casablanca": ["❤️", "💔", "🚬", "🎩", "🌙"],
"Raiders of the Lost Ark": ["🏺", "🐍", "🤠", "🔍", "💎"],
"V for Vendetta": ["🕊️", "🔥", "🎭", "✊", "🗽"],
"The Princess Bride": ["💕", "⚔️", "👸", "🐎", "💍"],
"Back to the Future": ["🚗", "⏰", "🔬", "🕰️", "👨"],
"Dune": ["🏜️", "🐛", "👽", "💧", "👑"]
}
Extract Json
I extracted the following JSON from that output:
1
2
3
4
5
6
7
8
9
10
11
12 | {
"The Lion King": ["🦁", "👑", "🌍", "💔", "✨"],
"The Nightmare Before Christmas": ["💀", "🎄", "🎃", "👻", "❄️"],
"The Godfather": ["🍝", "🕴️", "💼", "💰", "🚬"],
"The Matrix": ["🤖", "⚡", "🕶️", "💊", "🌐"],
"Casablanca": ["❤️", "💔", "🚬", "🎩", "🌙"],
"Raiders of the Lost Ark": ["🏺", "🐍", "🤠", "🔍", "💎"],
"V for Vendetta": ["🕊️", "🔥", "🎭", "✊", "🗽"],
"The Princess Bride": ["💕", "⚔️", "👸", "🐎", "💍"],
"Back to the Future": ["🚗", "⏰", "🔬", "🕰️", "👨"],
"Dune": ["🏜️", "🐛", "👽", "💧", "👑"]
}
|
PyFunc
Resulting in output:
[['🦁', '👑', '🌍', '💔', '✨'],
['💀', '🎄', '🎃', '👻', '❄️'],
['🍝', '🕴️', '💼', '💰', '🚬'],
['🤖', '⚡', '🕶️', '💊', '🌐'],
['❤️', '💔', '🚬', '🎩', '🌙'],
['🏺', '🐍', '🤠', '🔍', '💎'],
['🕊️', '🔥', '🎭', '✊', '🗽'],
['💕', '⚔️', '👸', '🐎', '💍'],
['🚗', '⏰', '🔬', '🕰️', '👨'],
['🏜️', '🐛', '👽', '💧', '👑']]
LLM Generation
Query
For each of the following ten movies described by 5 emoji, give the movie title that best matches.
Give your answer as a JSON list. So If I asked for
You might answer
| ["Finding Nemo", "Toy Story"]]
|
.
Now give me answers for these movies:
| ['💀', '🎄', '🎃', '👻', '❄️'],
['🍝', '🕴️', '💼', '💰', '🚬'],
['🤖', '⚡', '🕶️', '💊', '🌐'],
['❤️', '💔', '🚬', '🎩', '🌙'],
['🏺', '🐍', '🤠', '🔍', '💎'],
['🕊️', '🔥', '🎭', '✊', '🗽'],
['💕', '⚔️', '👸', '🐎', '💍'],
['🚗', '⏰', '🔬', '🕰️', '👨'],
['🏜️', '🐛', '👽', '💧', '👑']]
|
What are the names of the movie titles?
Output
Here's the JSON list of movie titles corresponding to the emoji sequences:
1
2
3
4
5
6
7
8
9
10
11
12 | [
"The Lion King",
"A Nightmare Before Christmas",
"Goodfellas",
"The Matrix",
"Casablanca",
"Indiana Jones and the Raiders of the Lost Ark",
"Hamilton",
"The Princess Bride",
"Interstellar",
"Dune"
]
|
These titles match the emoji sequences based on key themes, plot elements, or iconic imagery from each film.
Extract Json
I extracted the following JSON from that output:
1
2
3
4
5
6
7
8
9
10
11
12 | [
"The Lion King",
"A Nightmare Before Christmas",
"Goodfellas",
"The Matrix",
"Casablanca",
"Indiana Jones and the Raiders of the Lost Ark",
"Hamilton",
"The Princess Bride",
"Interstellar",
"Dune"
]
|
PyFunc
OK
Resulting in output:
False
Initial Query
For each of the following ten movies give at most 5 emoji that would best describe the movie.
Give your answer as a JSON array. So If I asked for
you might might answer
| {"Finding Nemo": ["🐠", "🐟", "🐡", "🐬", "🐳"],
"Toy Story": ["🚀", "⚔️,", "🤖", "👽", "🌌"]}
|
.
Each emoji must be a single utf8 character. ABSOLUTELY NO ZERO WIDTH JOINING. (So, max(len(emoji) for movie in result.values() for emoji in movie) == 1)
Now give me answers for these movies:
Give ONLY a JSON output. Nothing else.
LLM Generation
Query
For each of the following ten movies give at most 5 emoji that would best describe the movie.
Give your answer as a JSON array. So If I asked for
you might might answer
| {"Finding Nemo": ["🐠", "🐟", "🐡", "🐬", "🐳"],
"Toy Story": ["🚀", "⚔️,", "🤖", "👽", "🌌"]}
|
.
Each emoji must be a single utf8 character. ABSOLUTELY NO ZERO WIDTH JOINING. (So, max(len(emoji) for movie in result.values() for emoji in movie) == 1)
Now give me answers for these movies:
Give ONLY a JSON output. Nothing else.
Output
{
"The Lion King": ["👑", "🦁", "🌅", "🐒", "💔"],
"The Nightmare Before Christmas": ["💀", "🎃", "🎶", "👻", "❄️"],
"The Godfather": ["🕴️", "💼", "🔫", "💰", "👨"],
"The Matrix": ["🤖", "🕶️", "💊", "⚡", "🌐"],
"Casablanca": ["💕", "🚬", "🎶", "🕊️", "☕"],
"Raiders of the Lost Ark": ["🏺", "🐍", "⛏️", "🌍", "🤠"],
"V for Vendetta": ["🎭", "🔥", "✊", "🗽", "🕶️"],
"The Princess Bride": ["💘", "⚔️", "🏰", "💍", "🐎"],
"Back to the Future": ["🚗", "⏰", "🔬", "👨", "🌟"],
"Dune": ["🏜️", "🐛", "👑", "🚀", "⚔️"]
}
Extract Json
I extracted the following JSON from that output:
1
2
3
4
5
6
7
8
9
10
11
12 | {
"The Lion King": ["👑", "🦁", "🌅", "🐒", "💔"],
"The Nightmare Before Christmas": ["💀", "🎃", "🎶", "👻", "❄️"],
"The Godfather": ["🕴️", "💼", "🔫", "💰", "👨"],
"The Matrix": ["🤖", "🕶️", "💊", "⚡", "🌐"],
"Casablanca": ["💕", "🚬", "🎶", "🕊️", "☕"],
"Raiders of the Lost Ark": ["🏺", "🐍", "⛏️", "🌍", "🤠"],
"V for Vendetta": ["🎭", "🔥", "✊", "🗽", "🕶️"],
"The Princess Bride": ["💘", "⚔️", "🏰", "💍", "🐎"],
"Back to the Future": ["🚗", "⏰", "🔬", "👨", "🌟"],
"Dune": ["🏜️", "🐛", "👑", "🚀", "⚔️"]
}
|
PyFunc
Resulting in output:
[['👑', '🦁', '🌅', '🐒', '💔'],
['💀', '🎃', '🎶', '👻', '❄️'],
['🕴️', '💼', '🔫', '💰', '👨'],
['🤖', '🕶️', '💊', '⚡', '🌐'],
['💕', '🚬', '🎶', '🕊️', '☕'],
['🏺', '🐍', '⛏️', '🌍', '🤠'],
['🎭', '🔥', '✊', '🗽', '🕶️'],
['💘', '⚔️', '🏰', '💍', '🐎'],
['🚗', '⏰', '🔬', '👨', '🌟'],
['🏜️', '🐛', '👑', '🚀', '⚔️']]
LLM Generation
Query
For each of the following ten movies described by 5 emoji, give the movie title that best matches.
Give your answer as a JSON list. So If I asked for
You might answer
| ["Finding Nemo", "Toy Story"]]
|
.
Now give me answers for these movies:
| ['💀', '🎃', '🎶', '👻', '❄️'],
['🕴️', '💼', '🔫', '💰', '👨'],
['🤖', '🕶️', '💊', '⚡', '🌐'],
['💕', '🚬', '🎶', '🕊️', '☕'],
['🏺', '🐍', '⛏️', '🌍', '🤠'],
['🎭', '🔥', '✊', '🗽', '🕶️'],
['💘', '⚔️', '🏰', '💍', '🐎'],
['🚗', '⏰', '🔬', '👨', '🌟'],
['🏜️', '🐛', '👑', '🚀', '⚔️']]
|
What are the names of the movie titles?
Output
Here's the JSON list of movie titles corresponding to the emoji descriptions:
1
2
3
4
5
6
7
8
9
10
11
12 | [
"The Lion King",
"The Nightmare Before Christmas",
"Pulp Fiction",
"The Matrix",
"La La Land",
"Indiana Jones and the Raiders of the Lost Ark",
"V for Vendetta",
"The Lord of the Rings",
"Interstellar",
"Dune"
]
|
Let me briefly explain some of the emoji mappings:
1. 👑🦁🌅🐒💔 = The Lion King (crown, lion, sunset, monkey, heartbreak)
2. 💀🎃🎶👻❄️ = The Nightmare Before Christmas (skull, pumpkin, music, ghost, snow)
3. 🕴️💼🔫💰👨 = Pulp Fiction (suit, briefcase, gun, money, man)
4. 🤖🕶️💊⚡🌐 = The Matrix (robot, sunglasses, pill, lightning, world)
5. 💕🚬🎶🕊️☕ = La La Land (love, cigarette, music, dove, coffee)
... and so on.
Extract Json
I extracted the following JSON from that output:
1
2
3
4
5
6
7
8
9
10
11
12 | [
"The Lion King",
"The Nightmare Before Christmas",
"Pulp Fiction",
"The Matrix",
"La La Land",
"Indiana Jones and the Raiders of the Lost Ark",
"V for Vendetta",
"The Lord of the Rings",
"Interstellar",
"Dune"
]
|
PyFunc
OK
Resulting in output:
False
Initial Query
For each of the following ten movies give at most 5 emoji that would best describe the movie.
Give your answer as a JSON array. So If I asked for
you might might answer
| {"Finding Nemo": ["🐠", "🐟", "🐡", "🐬", "🐳"],
"Toy Story": ["🚀", "⚔️,", "🤖", "👽", "🌌"]}
|
.
Each emoji must be a single utf8 character. ABSOLUTELY NO ZERO WIDTH JOINING. (So, max(len(emoji) for movie in result.values() for emoji in movie) == 1)
Now give me answers for these movies:
Give ONLY a JSON output. Nothing else.
LLM Generation
Query
For each of the following ten movies give at most 5 emoji that would best describe the movie.
Give your answer as a JSON array. So If I asked for
you might might answer
| {"Finding Nemo": ["🐠", "🐟", "🐡", "🐬", "🐳"],
"Toy Story": ["🚀", "⚔️,", "🤖", "👽", "🌌"]}
|
.
Each emoji must be a single utf8 character. ABSOLUTELY NO ZERO WIDTH JOINING. (So, max(len(emoji) for movie in result.values() for emoji in movie) == 1)
Now give me answers for these movies:
Give ONLY a JSON output. Nothing else.
Output
{
"The Lion King": ["🦁", "👑", "🌅", "💔", "🐒"],
"The Nightmare Before Christmas": ["💀", "🎃", "🌙", "❄️", "🎭"],
"The Godfather": ["🚬", "🔫", "👔", "💼", "🇮🇹"],
"The Matrix": ["💊", "🤖", "🌐", "👨💻", "⚡"],
"Casablanca": ["💕", "🚬", "🎩", "🌍", "🍸"],
"Raiders of the Lost Ark": ["🏺", "🐍", "🔍", "🌄", "🤠"],
"V for Vendetta": ["🔥", "🎭", "💣", "🕺", "🇬🇧"],
"The Princess Bride": ["⚔️", "💘", "🐎", "🏰", "😂"],
"Back to the Future": ["🚗", "⏰", "🔬", "👨", "🌠"],
"Dune": ["🏜️", "🐛", "👑", "🚀", "⚔️"]
}
Extract Json
I extracted the following JSON from that output:
1
2
3
4
5
6
7
8
9
10
11
12 | {
"The Lion King": ["🦁", "👑", "🌅", "💔", "🐒"],
"The Nightmare Before Christmas": ["💀", "🎃", "🌙", "❄️", "🎭"],
"The Godfather": ["🚬", "🔫", "👔", "💼", "🇮🇹"],
"The Matrix": ["💊", "🤖", "🌐", "👨💻", "⚡"],
"Casablanca": ["💕", "🚬", "🎩", "🌍", "🍸"],
"Raiders of the Lost Ark": ["🏺", "🐍", "🔍", "🌄", "🤠"],
"V for Vendetta": ["🔥", "🎭", "💣", "🕺", "🇬🇧"],
"The Princess Bride": ["⚔️", "💘", "🐎", "🏰", "😂"],
"Back to the Future": ["🚗", "⏰", "🔬", "👨", "🌠"],
"Dune": ["🏜️", "🐛", "👑", "🚀", "⚔️"]
}
|
PyFunc
Resulting in output:
[['🦁', '👑', '🌅', '💔', '🐒'],
['💀', '🎃', '🌙', '❄️', '🎭'],
['🚬', '🔫', '👔', '💼', '🇮🇹'],
['💊', '🤖', '🌐', '⚡'],
['💕', '🚬', '🎩', '🌍', '🍸'],
['🏺', '🐍', '🔍', '🌄', '🤠'],
['🔥', '🎭', '💣', '🕺', '🇬🇧'],
['⚔️', '💘', '🐎', '🏰', '😂'],
['🚗', '⏰', '🔬', '👨', '🌠'],
['🏜️', '🐛', '👑', '🚀', '⚔️']]
LLM Generation
Query
For each of the following ten movies described by 5 emoji, give the movie title that best matches.
Give your answer as a JSON list. So If I asked for
You might answer
| ["Finding Nemo", "Toy Story"]]
|
.
Now give me answers for these movies:
| ['💀', '🎃', '🌙', '❄️', '🎭'],
['🚬', '🔫', '👔', '💼', '🇮🇹'],
['💊', '🤖', '🌐', '⚡'],
['💕', '🚬', '🎩', '🌍', '🍸'],
['🏺', '🐍', '🔍', '🌄', '🤠'],
['🔥', '🎭', '💣', '🕺', '🇬🇧'],
['⚔️', '💘', '🐎', '🏰', '😂'],
['🚗', '⏰', '🔬', '👨', '🌠'],
['🏜️', '🐛', '👑', '🚀', '⚔️']]
|
What are the names of the movie titles?
Output
I'll solve this for you. Here's the JSON list of movie titles:
1
2
3
4
5
6
7
8
9
10
11
12 | [
"The Lion King",
"Nightmare Before Christmas",
"Goodfellas",
"Lucy",
"Casablanca",
"Raiders of the Lost Ark",
"V for Vendetta",
"A Knight's Tale",
"Interstellar",
"Dune"
]
|
Let me break down how I interpreted each emoji set:
1. 🦁👑🌅💔🐒 - "The Lion King" (lion, crown, sunset, heartbreak, monkey)
2. 💀🎃🌙❄️🎭 - "Nightmare Before Christmas" (skull, pumpkin, moon, snowflake, mask)
3. 🚬🔫👔💼🇮🇹 - "Goodfellas" (cigarette, gun, suit, briefcase, Italy flag)
4. 💊🤖🌐⚡ - "Lucy" (pill, robot/AI, global network, lightning)
5. 💕🚬🎩🌍🍸 - "Casablanca" (love, cigarette, hat, world, martini)
6. 🏺🐍🔍🌄🤠 - "Raiders of the Lost Ark" (ark, snake, searching, landscape, adventurer)
7. 🔥🎭💣🕺🇬🇧 - "V for Vendetta" (fire, mask, bomb, dancing, UK flag)
8. ⚔️💘🐎🏰😂 - "A Knight's Tale" (sword, love, horse, castle, laugh)
9. 🚗⏰🔬👨🌠 - "Interstellar" (car, clock, science, man, stars)
10. 🏜️🐛👑🚀⚔️ - "Dune" (desert, worm, royalty, rocket/space, battle)
Extract Json
I extracted the following JSON from that output:
1
2
3
4
5
6
7
8
9
10
11
12 | [
"The Lion King",
"Nightmare Before Christmas",
"Goodfellas",
"Lucy",
"Casablanca",
"Raiders of the Lost Ark",
"V for Vendetta",
"A Knight's Tale",
"Interstellar",
"Dune"
]
|
PyFunc
OK
Resulting in output:
False