patruff commited on
Commit
2279511
·
verified ·
1 Parent(s): 9f5b9f4

Upload tool

Browse files
Files changed (2) hide show
  1. requirements.txt +1 -1
  2. tool.py +10 -5
requirements.txt CHANGED
@@ -1,2 +1,2 @@
1
- smolagents
2
  pronouncing
 
 
 
1
  pronouncing
2
+ smolagents
tool.py CHANGED
@@ -10,15 +10,20 @@ class ParodyWordSuggestionTool(Tool):
10
  output_type = "string"
11
 
12
  def __init__(self):
13
- super().__init__()
14
- # Initialize with your funny word list
15
  self.funny_words = [
 
16
  "poop", "loop", "soup", "boop", "dupe", "goop",
17
  "scoop", "whoop", "droop", "snoop", "coop",
18
  "fart", "toot", "burp", "squish", "squash",
19
- "wiggle", "jiggle", "wobble",
20
- "nincompoop", "dingleberry"
21
- # Add more words...
 
 
 
 
 
22
  ]
23
 
24
 
 
10
  output_type = "string"
11
 
12
  def __init__(self):
13
+ # Initialize with funny word list
 
14
  self.funny_words = [
15
+ # Original words
16
  "poop", "loop", "soup", "boop", "dupe", "goop",
17
  "scoop", "whoop", "droop", "snoop", "coop",
18
  "fart", "toot", "burp", "squish", "squash",
19
+ "wiggle", "jiggle", "wobble", "nincompoop", "dingleberry",
20
+ # Additional middle school humor words
21
+ "stinky", "booboo", "smelly", "goo", "turd", "pee", "peepee",
22
+ "potty", "butt", "tooty", "booger", "snot", "doody", "doodoo",
23
+ "weewee", "wedgie", "undies", "fartface", "poopyhead",
24
+ "butthead", "stinkbomb", "stinkface", "dork", "nerd",
25
+ "goober", "doofus", "dingus", "yahoo", "weirdo",
26
+ "stinkypants", "bubblebutt", "zonked", "zoop", "zoinks"
27
  ]
28
 
29