Skip to content

Commit

Permalink
Fixed: Fixed time and thinking tip
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhaoJiSen authored and feng626 committed Feb 8, 2025
1 parent 0e53d7e commit 9e768f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</div>
<div class="content">
<div class="operational">
<div v-if="!item.reasoning" class="date">
<div v-if="!item.message.is_reasoning" class="date">
{{
$moment(item.message.create_time).format("YYYY-MM-DD HH:mm:ss")
}}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Apps/ChatAi/components/ChitChat/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default {
this.conversationId = data.id
const newFragment = {
message: { id: data.message.id },
message: { id: data.message.id, is_reasoning: data.message.is_reasoning },
reasoning: { content: data.message.is_reasoning ? data.message.content : '' },
result: { content: data.message.is_reasoning ? '' : data.message.content },
role: data.message.role,
Expand Down

0 comments on commit 9e768f4

Please sign in to comment.