2023-06-19 01:14:04 -04:00
|
|
|
namespace vassago.Behavior;
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using vassago.Models;
|
|
|
|
|
2023-06-20 21:26:44 -04:00
|
|
|
[StaticPlz]
|
2023-06-19 01:14:04 -04:00
|
|
|
public class ChatGPTSnark : Behavior
|
|
|
|
{
|
|
|
|
public override string Name => "ChatGPTSnark";
|
|
|
|
|
|
|
|
public override string Trigger => "chatgpt";
|
|
|
|
|
|
|
|
public override string Description => "snarkiness about the latest culty-fixation in ai";
|
|
|
|
|
2023-06-19 11:03:06 -04:00
|
|
|
public override async Task<bool> ActOn(Message message)
|
2023-06-19 01:14:04 -04:00
|
|
|
{
|
|
|
|
await message.Channel.SendMessage("chatGPT is **weak**. also, are we done comparing every little if-then-else to skynet?");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|