Skip to content

Commit

Permalink
fix: add ai back
Browse files Browse the repository at this point in the history
  • Loading branch information
supersonictw committed Oct 31, 2024
1 parent f4c5b0f commit 3c44572
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ const title = ref("");
const subtitle = ref("");
const description = ref("");
const aiQuestion = ref("");
const aiQuestion = ref("嗨!請用一句話簡介你自己。");
const aiAnswer = ref("");
function startGreeting() {
Expand All @@ -255,7 +255,7 @@ function startGreeting() {
}
function startMeeting() {
askAi(aiMessages, aiQuestion).
askAi(aiMessages, aiQuestion.value).
then(({content}) => {
typing(aiAnswer, content);
});
Expand Down

0 comments on commit 3c44572

Please sign in to comment.