Skip to content

Commit

Permalink
✨ 允许知识库选择
Browse files Browse the repository at this point in the history
  • Loading branch information
twelvet-s committed Dec 16, 2024
1 parent 5e33bc1 commit 88fcf1a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,8 @@ public void setCarryContextFlag(Boolean carryContextFlag) {

@Override
public String toString() {
return "MessageDTO{" +
"modelId=" + modelId +
", content='" + content + '\'' +
", carryContextFlag=" + carryContextFlag +
'}';
return "MessageDTO{" + "modelId=" + modelId + ", content='" + content + '\'' + ", carryContextFlag="
+ carryContextFlag + '}';
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,7 @@ public void setContent(String content) {

@Override
public String toString() {
return "MessageVO{" +
"msgId='" + msgId + '\'' +
", content='" + content + '\'' +
'}';
return "MessageVO{" + "msgId='" + msgId + '\'' + ", content='" + content + '\'' + '}';
}

}

0 comments on commit 88fcf1a

Please sign in to comment.