We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2efd858 commit b3a4013Copy full SHA for b3a4013
bot/exts/smart_eval/_smart_eval_rules.py
@@ -10,6 +10,11 @@
10
r"print\((?:\"|\')(?P<content>.*)(?:\"|\')\)": [ # Capture what is inside a print statement
11
"Your program may print: {}!\n-# I'm very helpful"
12
],
13
+ r"\b(?P<content>input)\b": [ # Detect use of input()
14
+ "I don't know how to answer that...",
15
+ "Beep Boop! I'm just a bot that can't input text",
16
+ "How do you think users are supposed to input text there?",
17
+ ],
18
r"(?s:.{1500,})": [ # Capture anything over 1500 characters
19
"I ain't wasting my tokens tryna read allat :skull:",
20
"Uhh, that's a lot of code. Maybe just start over."
0 commit comments