From ab612467cc17ad1d4cb0238bd75955fea0bd57ff Mon Sep 17 00:00:00 2001 From: cirroskais Date: Sat, 20 Apr 2024 03:52:38 -0400 Subject: [PATCH] finish up ai cmd --- src/interactions/ai.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interactions/ai.ts b/src/interactions/ai.ts index ccf7866..2781376 100644 --- a/src/interactions/ai.ts +++ b/src/interactions/ai.ts @@ -7,8 +7,8 @@ const ollama = new Ollama({ host: process.env.OLLAMA_API }); export default class extends SlashCommand implements Command { name = "ai"; - description = "Send a message to llama3."; - options = [{ type: 3, name: "input", description: "Text input to send to llama3.", required: true }]; + description = "Talk to terry. He will not remember your conversations."; + options = [{ type: 3, name: "input", description: "Text input.", required: true }]; constructor() { super();