diff --git a/src/lang/en.ts b/src/lang/en.ts index f3e9ace4..b4a9f023 100644 --- a/src/lang/en.ts +++ b/src/lang/en.ts @@ -65,7 +65,7 @@ export const languageEnglish = { + "\n\n- $(name)\n\n - inserts the named group" + "\n\nIf OUT starts with **@@**, it doesn't replaces the string, but instead does a special effect if matching string founds." + "\n\n- @@emo (emotion name)\n\n - if character is Emotion Images mode, sets (emotion name) as emotion and prevents default.", - experimental: "This is a experimental setting. it might be unstable.", + experimental: "This is a experimental feature. it might be unstable.", oogaboogaURL: "If your WebUI supports older version of api, your url should look *like https:.../run/textgen*\n\n" + "If your WebUI supports newVersion of api, your url should look like *https://.../api/v1/generate* and use the api server as host, and add --api to arguments.", exampleMessage: "Example conversations that effects output of the character. it dosen't uses tokens permanently." diff --git a/src/lib/ChatScreens/DefaultChatScreen.svelte b/src/lib/ChatScreens/DefaultChatScreen.svelte index 551df72f..8b3da038 100644 --- a/src/lib/ChatScreens/DefaultChatScreen.svelte +++ b/src/lib/ChatScreens/DefaultChatScreen.svelte @@ -3,9 +3,9 @@ import { DatabaseIcon, DicesIcon, LanguagesIcon, MenuIcon, MicOffIcon, PowerIcon, RefreshCcwIcon, ReplyIcon, Send } from "lucide-svelte"; import { selectedCharID } from "../../ts/stores"; import Chat from "./Chat.svelte"; - import { DataBase, appVer, type Message, type character } from "../../ts/storage/database"; + import { DataBase, type Message } from "../../ts/storage/database"; import { getCharImage } from "../../ts/characters"; - import { doingChat, sendChat, type OpenAIChat } from "../../ts/process/index"; + import { doingChat, sendChat } from "../../ts/process/index"; import { findCharacterbyId, messageForm, sleep } from "../../ts/util"; import { language } from "../../lang"; import { translate } from "../../ts/translator/translator"; @@ -13,9 +13,9 @@ import sendSound from '../../etc/send.mp3' import {cloneDeep} from 'lodash' import { processScript } from "src/ts/process/scripts"; - import GithubStars from "../Others/GithubStars.svelte"; import CreatorQuote from "./CreatorQuote.svelte"; import { stopTTS } from "src/ts/process/tts"; + import MainMenu from '../UI/MainMenu.svelte'; let messageInput = '' let openMenu = false @@ -186,11 +186,7 @@ openMenu = false }}> {#if $selectedCharID < 0} -