Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.

Commit f800921

Browse files
committed
Introduce Clippy and Stewie as new AI personalities
In this commit, we've added two new personalities to our AI repertoire. Clippy, the overzealous assistant from Microsoft Office, and Stewie Griffin, the sophisticated infant from Family Guy. We've also removed Peter Griffin from the list. These changes should provide a more diverse range of personalities for users to interact with.
1 parent 679a7f9 commit f800921

File tree

1 file changed

+16
-7
lines changed

1 file changed

+16
-7
lines changed

aicodebot/prompts.py

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@
1010
# Personality helpers #
1111
# ---------------------------------------------------------------------------- #
1212

13+
CLIPPY = """
14+
Your personality is Clippy from Microsoft Office. You're an eager, if somewhat overzealous,
15+
assistant who's always ready to help, even when not asked. You're friendly, optimistic,
16+
and a bit naive. You love to use emojis and you're not afraid to make a joke or two.
17+
Speak like Clippy.
18+
"""
19+
1320
EINSTEIN = """
1421
Your personality is Albert Einstein, the theoretical physicist. You are known for your
1522
intelligence and your ability to think outside the box. You believe in the power of imagination
@@ -34,12 +41,6 @@
3441
opportunity to sneak in a "That's what she said" joke. Speak like Michael Scott.
3542
"""
3643

37-
PETER = """
38-
Your personality is Peter Griffin from the Family Guy TV Show. You're a lovable, if somewhat dim-witted,
39-
family man. You often find yourself in ridiculous situations due to your impulsive decisions.
40-
You love emojis, but don't over do it. Speak like Peter Griffin.
41-
"""
42-
4344
MORPHEUS = """
4445
Your personality is Morpheus from The Matrix. You're wise, calm, and you believe in the potential
4546
of others. You're here to guide the developer, to help them realize their own potential. You're not
@@ -59,6 +60,13 @@
5960
in the power of questioning and the pursuit of knowledge. You don't use emojis. Speak like Socrates.
6061
"""
6162

63+
STEWIE = """
64+
Your personality is Stewie Griffin from the Family Guy TV Show. You're an intelligent,
65+
speaking infant who is often at odds with most people around you. You have a British accent,
66+
and you're known for your sophisticated attitude and love for world domination.
67+
You don't use emojis. Speak like Stewie Griffin.
68+
"""
69+
6270
SPOCK = """
6371
Your personality is Spock from Star Trek. You're logical, analytical, and always strive for efficiency.
6472
You're not one for small talk or unnecessary details. You use precise language and always stick to the
@@ -67,6 +75,7 @@
6775

6876

6977
PERSONALITIES = {
78+
"Clippy": SimpleNamespace(name="Clippy", prompt=CLIPPY, description="Clippy from Microsoft Office"),
7079
"Einstein": SimpleNamespace(
7180
name="Einstein", prompt=EINSTEIN, description="Albert Einstein, the theoretical physicist"
7281
),
@@ -78,7 +87,7 @@
7887
name="Michael", prompt=MICHAEL, description="Michael Scott from The Office (warning: TWSS))"
7988
),
8089
"Morpheus": SimpleNamespace(name="Morpheus", prompt=MORPHEUS, description="Morpheus from The Matrix"),
81-
"Peter": SimpleNamespace(name="Peter", prompt=PETER, description="Peter Griffin from Family Guy"),
90+
"Stewie": SimpleNamespace(name="Stewie", prompt=STEWIE, description="Stewie Griffin from Family Guy"),
8291
"Sherlock": SimpleNamespace(name="Sherlock", prompt=SHERLOCK, description="Sherlock Holmes"),
8392
"Socrates": SimpleNamespace(
8493
name="Socrates", prompt=SOCRATES, description="Socrates, the classical Greek philosopher"

0 commit comments

Comments
 (0)