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

1

you might might answer
1
2
{"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:
1

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

1

you might might answer
1
2
{"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:
1

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

1

You might answer
1
["Finding Nemo", "Toy Story"]]
. Now give me answers for these movies:
1
2
3
4
5
6
7
8
9
['🎃', '🎄', '💀', 'ðŸ‘ŧ', '🎁'],
['ðŸ•īïļ', 'ðŸ”Ŧ', '💰', 'ðŸ‡ŪðŸ‡đ', '🚎'],
['ðŸ•ķïļ', '💊', 'ðŸ”ĩ', 'ðŸĪ–', 'ðŸ”Ŧ'],
['ðŸŽķ', 'ðŸ‡ēðŸ‡Ķ', 'âĪïļ', '💔', '🚊'],
['🔎', '🏚', '💎', 'ðŸŒī', 'ðŸ’Ģ'],
['🎭', 'ðŸ”Ĩ', 'ðŸ—Ąïļ', 'ðŸŒđ', 'ðŸ’Ĩ'],
['ðŸ‘ļ', 'ðŸĪš', '👑', '🏰', 'ðŸĪĢ'],
['⏰', '🔙', '🚗', '🔎', 'ðŸ”Ĩ'],
['🏜ïļ', '🚀', '🐛', '🌌', 'ðŸ”Ĩ']]
What are the names of the movie titles?

Output

1
["The Lion King", "The Nightmare Before Christmas", "The Godfather", "The Matrix", "Coco", "Raiders of the Lost Ark", "Gladiator", "The Princess Bride", "Back to the Future", "Dune"]

Extract Json

I extracted the following JSON from that output:

1
["The Lion King", "The Nightmare Before Christmas", "The Godfather", "The Matrix", "Coco", "Raiders of the Lost Ark", "Gladiator", "The Princess Bride", "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

1

you might might answer
1
2
{"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:
1

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

1

you might might answer
1
2
{"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:
1

Give ONLY a JSON output. Nothing else.

Output

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
{"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
{"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

1

You might answer
1
["Finding Nemo", "Toy Story"]]
. Now give me answers for these movies:
1
2
3
4
5
6
7
8
9
['🎃', '🎄', 'ðŸ‘ŧ', '💀', '🎁'],
['ðŸ•īïļ', 'ðŸ”Ŧ', 'ðŸ‡ŪðŸ‡đ', '💰', '🚎'],
['ðŸ•ķïļ', '💊', 'ðŸ’ŧ', 'ðŸĪ–', 'ðŸ”Ŧ'],
['ðŸ‡ēðŸ‡Ķ', 'ðŸŽķ', '💔', 'ðŸŽĨ', '🚊'],
['🏚', '🔎', 'ðŸ›Đïļ', '💎', 'ðŸ’Ģ'],
['🎭', 'ðŸ”Ĩ', 'ðŸ’Ģ', 'ðŸŒđ', 'ðŸŽĐ'],
['👑', '⚔ïļ', '💕', '🏰', 'ðŸ‘ŧ'],
['⏰', '🔙', '🚗', '🔎', '⚡'],
['🏜ïļ', '🚀', '🐛', '👑', '💧']]
What are the names of the movie titles?

Output

1
["The Lion King", "The Nightmare Before Christmas", "The Godfather", "The Matrix", "Casablanca", "Raiders of the Lost Ark", "Moulin Rouge", "Beauty and the Beast", "Back to the Future", "Dune"]

Extract Json

I extracted the following JSON from that output:

1
["The Lion King", "The Nightmare Before Christmas", "The Godfather", "The Matrix", "Casablanca", "Raiders of the Lost Ark", "Moulin Rouge", "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

1

you might might answer
1
2
{"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:
1

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

1

you might might answer
1
2
{"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:
1

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

1

You might answer
1
["Finding Nemo", "Toy Story"]]
. Now give me answers for these movies:
1
2
3
4
5
6
7
8
9
['🎃', '💀', 'ðŸ‘ŧ', '🎄', '🌙'],
['ðŸ•īïļ', 'ðŸ”Ŧ', 'ðŸ‡ŪðŸ‡đ', '💰', '🚎'],
['ðŸ•ķïļ', '💊', 'ðŸ‘ū', '🔌', 'ðŸ”Ŧ'],
['ðŸŽķ', 'ðŸ”Ĩ', 'ðŸ‡ēðŸ‡Ķ', '✈ïļ', '💔'],
['ðŸ•ĩïļ', '🏚', '💎', 'ðŸ’Ģ', '🐍'],
['🎭', 'ðŸ’Ģ', 'ðŸŒđ', 'ðŸ”Ĩ', 'ðŸŽĐ'],
['👑', '⚔ïļ', '👰', 'ðŸĪš', 'ðŸ‘ŧ'],
['⏰', '🔙', 'ðŸ”Ū', '🚗', '🔎'],
['🌌', '🏜ïļ', '🊓', '🐛', 'ðŸ”Ū']]
What are the names of the movie titles?

Output

1
["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", "Thor: Ragnarok"]

Extract Json

I extracted the following JSON from that output:

1
["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", "Thor: Ragnarok"]

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

1

you might might answer
1
2
{"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:
1

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

1

you might might answer
1
2
{"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:
1

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

1

You might answer
1
["Finding Nemo", "Toy Story"]]
. Now give me answers for these movies:
1
2
3
4
5
6
7
8
9
['🎃', 'ðŸ‘ŧ', '🎄', '💀', 'ðŸ•Ŋïļ'],
['ðŸ•ķïļ', 'ðŸ”Ŧ', 'ðŸ‡ŪðŸ‡đ', '🍝'],
['ðŸ•ķïļ', '💊', 'ðŸĪ–', 'ðŸ”ĩ', 'ðŸ”ī'],
['ðŸŽđ', 'ðŸ‡ēðŸ‡Ķ', '🕰ïļ', '🚊', '💔'],
['🏚', '🔎', '💎', '🐍'],
['🎭', 'ðŸ”Ĩ', 'ðŸ—Ąïļ', 'ðŸŽĐ', 'ðŸŒđ'],
['ðŸ‘ļ', 'ðŸĪš', '🏰', 'ðŸ‘ŧ', '🧚'],
['⏰', '🔙', '🚗', '⚡', 'ðŸ‘ī🏞'],
['🌌', '🌙', '🐛', '🚀', 'ðŸŒĩ']]
What are the names of the movie titles?

Output

1
["The Lion King", "The Nightmare Before Christmas", "The Godfather", "The Matrix", "La La Land", "Raiders of the Lost Ark", "Moulin Rouge", "Sleeping Beauty", "Back to the Future", "Star Wars"]

Extract Json

I extracted the following JSON from that output:

1
["The Lion King", "The Nightmare Before Christmas", "The Godfather", "The Matrix", "La La Land", "Raiders of the Lost Ark", "Moulin Rouge", "Sleeping Beauty", "Back to the Future", "Star Wars"]

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

1

you might might answer
1
2
{"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:
1

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

1

you might might answer
1
2
{"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:
1

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

1

You might answer
1
["Finding Nemo", "Toy Story"]]
. Now give me answers for these movies:
1
2
3
4
5
6
7
8
9
['🎃', '💀', '🎄', 'ðŸ‘ŧ', '🎁'],
['ðŸ•īïļ', 'ðŸ”Ŧ', '💰', 'ðŸ‡ŪðŸ‡đ', '🍝'],
['ðŸ•ķïļ', '💊', 'ðŸ”ĩ', 'ðŸĪ–', '🏙ïļ'],
['🎙ïļ', '✈ïļ', 'ðŸ‡ēðŸ‡Ķ', '💔', 'ðŸĨ‚'],
['ðŸ•ĩïļ', '🏚', '💎', '🗚ïļ', '🐍'],
['🎭', 'ðŸ”Ĩ', 'ðŸ’Ģ', 'ðŸŒđ', 'ðŸŽĐ'],
['👑', '⚔ïļ', '🧝', 'ðŸ‘ŧ', '💏'],
['⏰', '🔙', 'ðŸ”Ū', '🚗', '🔎'],
['🏜ïļ', '🚀', 'ðŸ‘―', '🐛', '🌌']]
What are the names of the movie titles?

Output

1
["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
["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

OK Resulting in output: True