Skip to content

Commit

Permalink
fix: remove messages
Browse files Browse the repository at this point in the history
  • Loading branch information
nekomeowww committed Dec 6, 2024
1 parent e2f1f7b commit 75e58da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/stage/src/components/MainStage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const listening = ref(false)
const live2DViewerRef = ref<{ setMotion: (motionName: string) => Promise<void> }>()
const supportedModels = ref<{ id: string, name?: string }[]>([])
const messageInput = ref<string>('')
const messages = ref<Array<Message>>([SystemPromptV2 as SystemMessage, { role: 'assistant', content: 'A'.repeat(1000) }, { role: 'assistant', content: 'A'.repeat(1000) }])
const messages = ref<Array<Message>>([SystemPromptV2 as SystemMessage])
const streamingMessage = ref<AssistantMessage>({ role: 'assistant', content: '' })
const audioAnalyser = ref<AnalyserNode>()
const mouthOpenSize = ref(0)
Expand Down

0 comments on commit 75e58da

Please sign in to comment.