diff --git a/packages/stage/package.json b/packages/stage/package.json index 3346b0e0f..6f86f5196 100644 --- a/packages/stage/package.json +++ b/packages/stage/package.json @@ -64,6 +64,7 @@ "@airi-proj/elevenlabs": "workspace:^", "@iconify-json/carbon": "^1.2.4", "@iconify-json/eos-icons": "^1.2.1", + "@iconify-json/solar": "^1.2.1", "@intlify/unplugin-vue-i18n": "^6.0.0", "@shikijs/markdown-it": "^1.24.0", "@types/markdown-it-link-attributes": "^3.0.5", diff --git a/packages/stage/src/components/MainStage.vue b/packages/stage/src/components/MainStage.vue index a0e6c8210..b536c5ac2 100644 --- a/packages/stage/src/components/MainStage.vue +++ b/packages/stage/src/components/MainStage.vue @@ -41,7 +41,7 @@ const listening = ref(false) const live2DViewerRef = ref<{ setMotion: (motionName: string) => Promise }>() const supportedModels = ref<{ id: string, name?: string }[]>([]) const messageInput = ref('') -const messages = ref>([SystemPromptV2 as SystemMessage]) +const messages = ref>([SystemPromptV2 as SystemMessage, { role: 'assistant', content: 'A'.repeat(1000) }, { role: 'assistant', content: 'A'.repeat(1000) }]) const streamingMessage = ref({ role: 'assistant', content: '' }) const audioAnalyser = ref() const mouthOpenSize = ref(0) @@ -269,52 +269,17 @@ onUnmounted(() => {