From 5477d9f6beb7e3c9cd5829dd4858189a36dccbca Mon Sep 17 00:00:00 2001 From: kwaroran Date: Mon, 27 May 2024 07:25:36 +0900 Subject: [PATCH] refactor: Add test_lorebook command to processMultiCommand --- src/ts/process/command.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/ts/process/command.ts b/src/ts/process/command.ts index 6892266d..06f59a9c 100644 --- a/src/ts/process/command.ts +++ b/src/ts/process/command.ts @@ -5,6 +5,7 @@ import { alertInput, alertMd, alertNormal, alertSelect, alertToast } from "../al import { sayTTS } from "./tts"; import { risuChatParser } from "../parser"; import { sendChat } from "."; +import { loadLoreBookV3Prompt } from "./lorebook"; export async function processMultiCommand(command:string) { let pipe = '' @@ -213,6 +214,11 @@ async function processCommand(command:string, pipe:string):Promise