This commit is contained in:
raven 2023-01-09 00:45:56 -05:00
parent 6177877c2b
commit 7d0a31dab2
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ rl.on('line', input => {
const AI = input.startsWith("!")
if (AI) {
let inputdata = input.split(2)
const prompt = inputdata.join(" ").replace("> ", "").replace(">", "")
const prompt = inputdata.join(" ").replace("! ", "").replace("!", "")
AIRequest(prompt).then((data) => {
console.log(data)
for (const conn of conns) {