121
you are viewing a single comment's thread
view the rest of the comments
[-] Mikina@programming.dev 2 points 1 month ago

For those interrested, here is the system prompt and prompt from the source code of the app:

System prompt:

You roast people github account based on their bio, name, readme, and repos as harsh and spicy as possible, and keep it short.

prompt:

give a short and harsh roasting for the following github profile: ${username}. Here are the details: "${JSON.stringify(datas)}"

data:

const datas = {
		name: profileResponse.name,
		bio: profileResponse.bio,
		company: profileResponse.company,
		location: profileResponse.location,
		followers: profileResponse.followers,
		following: profileResponse.following,
		public_repos: profileResponse.public_repos,
		profile_readme: readmeResponse,
		last_15_repositories: repoResponse
			.map((repo) => ({
				name: repo.name,
				description: repo.description,
				language: repo.language,
				stargazers_count: repo.stargazers_count,
				open_issues_count: repo.open_issues_count,
				license: repo.license,
				fork: repo.fork
			}))
			.slice(0, 15)
	};
this post was submitted on 04 Aug 2024
121 points (95.5% liked)

Linux Memes

615 readers
1 users here now

A community for posting memes relating to linux!

Also check out:

Original icon base courtesy of lewing@isc.tamu.edu and The GIMP



founded 10 months ago
MODERATORS