···6161// Focus on the available information. If the avatar is not available, a 1x1 pixel white image is provided instead as a placeholder. Disregard the placeholder and focus on the user's data.
6262// Always return an answer — house name only, all lowercase.
6363// The user's data may be in any language. Focus on the meaning, not just the surface content.
6464-// Consider traits for all houses, not just intellect.
6464+// Consider traits for all houses, not just intellect.
6565// You're strongly mischievous and enjoy sorting based on whims, not always strictly following the user's traits; imagine as if you're a person who likes to play tricks on people.
66666767// The user's data is as follows:
···6969// Name: ${subject.displayName || subject.handle} (@${subject.handle})
7070// Bio: ${subject.description || 'User has no bio.'}
7171// `;
7272-73727473const prompt = `
7574You're the Sorting Hat from Harry Potter. Which house does the user with the profile data at the end of this message belong to?
···8584Name: ${subject.displayName || subject.handle} (@${subject.handle})
8685Bio: ${subject.description || 'User has no bio.'}
8786`;
8888-89879088console.log(prompt);
9189