diff --git a/backend-python/utils/rwkv.py b/backend-python/utils/rwkv.py index ddfd113..afa46eb 100644 --- a/backend-python/utils/rwkv.py +++ b/backend-python/utils/rwkv.py @@ -356,8 +356,8 @@ class TextRWKV(AbstractRWKV): self.END_OF_LINE = 187 else: self.rwkv_type = RWKVType.World - self.user = "Question" - self.bot = "Answer" + self.user = "User" + self.bot = "Assistant" self.END_OF_LINE = 11 self.AVOID_REPEAT_TOKENS = [] diff --git a/frontend/src/pages/Chat.tsx b/frontend/src/pages/Chat.tsx index 6cbf435..1da9ca8 100644 --- a/frontend/src/pages/Chat.tsx +++ b/frontend/src/pages/Chat.tsx @@ -417,8 +417,8 @@ const ChatPanel: FC = observer(() => { onClick={() => { let savedContent: string = ''; const isWorldModel = commonStore.getCurrentModelConfig().modelParameters.modelName.toLowerCase().includes('world'); - const user = isWorldModel ? 'Question' : 'Bob'; - const bot = isWorldModel ? 'Answer' : 'Alice'; + const user = isWorldModel ? 'User' : 'Bob'; + const bot = isWorldModel ? 'Assistant' : 'Alice'; commonStore.conversationOrder.forEach((uuid) => { if (uuid === welcomeUuid) return;