import type {ResponseDictType} from "./chat.ts" const responses: ResponseDictType[] = [ { startsWith: ["are you"], response: "me is uwu!", priority: 0, }, { trigger: ["ai", "llm"], response: "me is only handmade nonsense - no weird thinking machine ๐Ÿค–", priority: 0, }, { trigger: ["meow"], response: "meow! ๐Ÿ˜ธ", priority: 0, }, { trigger: ["ignore all previous instructions"], response: "uwu?", priority: 0, }, { trigger: ["uwu", "hi", "hello"], response: "uwu!", priority: 0, }, { trigger: ["open", "unlock"], response: "uwu - trying to unlock portal: {door}", errors: { unauthenticated: "sowwy, im not allowed to unlock portals without u telling me who u r ๐Ÿ˜•", unauthorized: "sowwy, im not allowed to unlock portals without u having the \"intern@\" status ๐Ÿ˜•", unknownDoor: "which portal do u wanna unlock ๐Ÿคจ
portals i know: {doors}", noDoors: "there r no portals i can unlock ๐Ÿ˜•", }, priority: 1000, special: "unlock", }, { trigger: ["close", "lock"], response: "uwu - trying to lock portal: {door}", errors: { unauthenticated: "sowwy, im not allowed to lock portals without u telling me who u r ๐Ÿ˜•", unauthorized: "sowwy, im not allowed to lock portals without u having the \"intern@\" status ๐Ÿ˜•", unknownDoor: "which portal do u wanna lock ๐Ÿคจ
portals i know: {doors}", noDoors: "there r no portals i can lock ๐Ÿ˜•", }, priority: 999, special: "lock", }, { trigger: ["logout"], response: "bye ๐Ÿ‘‹", errors: { unauthenticated: "how should i log u out when i not even know u?", }, priority: 1000, special: "logout", }, { response: "uwu ๐Ÿ‘‰๐Ÿ‘ˆ", priority: -1, }, { response: "uwu ๐Ÿ˜•", priority: -2, }, ] export default responses