Update probas (lower react, raise ai_reply)

This commit is contained in:
Edgar P. Burkhart 2024-06-14 14:16:08 +02:00
parent 8639ed50d7
commit f11ca5c320
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227

View file

@ -89,7 +89,7 @@ async def on_message(message):
await random.choice((reply, react))(message)
return
probas = [10, 2, 20]
probas = [10, 5, 10]
func = random.choices(
(reply, ai_reply, react, None), weights=probas + [100 - sum(probas)]