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
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": ["ποΈ", "π", "β¨", "π", "π"]
}
|
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
1
2
3
4
5
6
7
8
9
10
11
12 | [
"The Lion King",
"The Nightmare Before Christmas",
"The Godfather",
"The Matrix",
"Sleepless in Seattle",
"Indiana Jones",
"Shakespeare in Love",
"Beauty and the Beast",
"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",
"Sleepless in Seattle",
"Indiana Jones",
"Shakespeare in Love",
"Beauty and the Beast",
"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
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": ["π", "π", "π½", "π", "π"]
}
|
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
1
2
3
4
5
6
7
8
9
10
11
12 | [
"The Lion King",
"The Nightmare Before Christmas",
"The Godfather",
"The Matrix",
"Up",
"Indiana Jones: Raiders of the Lost Ark",
"James Bond",
"Frozen",
"Back to the Future",
"Star Wars"
]
|
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",
"Up",
"Indiana Jones: Raiders of the Lost Ark",
"James Bond",
"Frozen",
"Back to the Future",
"Star Wars"
]
|
PyFunc
OK
Resulting in output:
False