Skip to content

Commit 196f50e

Browse files
committed
Add /llm TagHint and Update Rules
1 parent 1bf5003 commit 196f50e

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

components/const.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
- Please abide by our <a href="{DOCS_URL}coc.html">Code of Conduct</a>
5959
- Use <code>@admin</code> to report spam or abuse and <i>only</i> for that.
6060
- If you have a userbot, deactivate it in here. Otherwise you'll get banned at least temporarily.
61+
- Don't copy-paste answers that were generated by an AI/LLM tool (e.g. ChatGPT).
6162
6263
Before asking, please take a look at our <a href="{WIKI_URL}">wiki</a> and \
6364
<a href="{EXAMPLES_URL}">example bots</a> or, depending on your question, the \
@@ -85,6 +86,7 @@
8586
- Please abide by our <a href="{DOCS_URL}coc.html">Code of Conduct</a>
8687
- Use <code>@admin</code> to report spam or abuse and <i>only</i> for that.
8788
- If you have a userbot, deactivate it in here. Otherwise you'll get banned at least temporarily.
89+
- Don't copy-paste answers that were generated by an AI/LLM tool (e.g. ChatGPT).
8890
"""
8991

9092
# Github Pattern

components/taghints.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,22 @@
267267
"help": "Point out compatibility issues of code and PTB version to users",
268268
"group_command": True,
269269
},
270+
"llm": {
271+
"message": (
272+
"{query} This text reads like an AI/LLM was used to generate this. We found their "
273+
"answers to be unfitting for this group. We are all about providing fine tuned help "
274+
"for technical questions. These generated texts are often long winded, very "
275+
"explanatory answers for steps which didn't need explaining, and then happen to miss "
276+
"the actual underlying question completely or are outright false in the worst case."
277+
"\n\n"
278+
"Please refrain from this in the future. If you can answer a question yourself, we "
279+
"are glad to see a precise, technical answer. If you can not answer a question, it's "
280+
"better to just not reply instead of copy-pasting an autogenerated answer 😉."
281+
),
282+
"default": "Hey.",
283+
"help": "Tell users not to use AI/LLM generated answers",
284+
"group_command": True,
285+
},
270286
}
271287

272288

0 commit comments

Comments
 (0)