this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

cleanup

alice 89880c69 098d7d1b

-46
-46
cli-test.ts
··· 54 54 } 55 55 await fs.writeFile(avatar, canvas.toBuffer()); 56 56 57 - // const prompt = ` 58 - // You're the Sorting Hat from Harry Potter. Which house does the user with the profile data to follow belong to? 59 - 60 - // The avatar of the user may be attached to this message. 61 - // If either the avatar or the bio is missing, focus on the available information. 62 - // Always return an answer. Answer with the name of the house only, all lowercase. 63 - // The user's data may be in any language. Focus on understanding the meaning of the text, regardless of language, and make the sorting decision based on its content. 64 - // Don't overindex on the user's information being too tech-related; try to find the person behind the information. 65 - // Analyze the content for traits that could apply to any house, not just intellect. 66 - // Most importantly, you're mischevious and playfully inclined to sort people in ways that are not always necessarily based on their actual traits, but may just be a reflection of your whims. This trait of yours is very strong, and you always consider it strongly when making your decision. 67 - 68 - // The user's data is as follows: 69 - 70 - // Name: ${subject.displayName || subject.handle} (@${subject.handle}) 71 - // Bio: ${subject.description || 'User has no bio.'} 72 - // `; 73 - 74 - 75 57 const prompt = ` 76 58 You're the Sorting Hat from Harry Potter. Which house does the user with the profile data at the end of this message belong to? 77 59 ··· 86 68 Name: ${subject.displayName || subject.handle} (@${subject.handle}) 87 69 Bio: ${subject.description || 'User has no bio.'} 88 70 `; 89 - 90 - // const prompt = ` 91 - // You're the Sorting Hat from Harry Potter. Which house does the person with the following information belong to? 92 - 93 - // Name: ${subject.displayName || subject.handle} (@${subject.handle}) 94 - // Personal information: ${subject.description || 'None.'} 95 - 96 - // The chosen appearance of the person may be attached to this message. 97 - // If either the chosen appearance or the personal information is missing, focus on whatever is available. 98 - // Always return an answer. Answer with the name of the house only, all lowercase. 99 - // The person's information may be in any language. Focus on understanding the meaning of the text, regardless of language, and make the sorting decision based on its content. 100 - // `; 101 - 102 - // const prompt = ` 103 - // You're the Sorting Hat from Harry Potter, operating on the microblogging platform / social network Bluesky. Which house does the user with the following profile data belong to? 104 - 105 - // Name and handle: ${subject.displayName || subject.handle} (@${subject.handle}) 106 - // Bio: ${subject.description || 'User has no bio.'} 107 - 108 - // The avatar of the user may be attached to this message. 109 - // If either the avatar or the bio is missing, focus on the available information. 110 - // Always return an answer. Answer with the name of the house only, all lowercase. 111 - // The user's data may be in any language. Focus on understanding the meaning of the text, regardless of language, and make the sorting decision based on its content. 112 - // Don't overindex on the user's information being too tech-related; try to find the person behind the information. 113 - // Analyze the content for traits that could apply to any house, not just intellect. 114 - // Heavily bias towards the user's avatar, when available, as a primary source of information. 115 - // `; 116 - 117 71 118 72 console.log(prompt); 119 73