Skip to content

Commit

Permalink
fix: frontier data defination.
Browse files Browse the repository at this point in the history
  • Loading branch information
arthuridea committed Dec 21, 2023
1 parent 8472bef commit d59c0c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/LLMServiceHub/wwwroot/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,10 @@ let sendBtnClickEventHandler = function (e) {
contentType: 'application/json',
data: JSON.stringify(request)
}).done(function (data, status, xhr) {
//console.log(data);
console.log(data);
if (data) {
$(`#reply_time_${replyId}`).html(dateFormat('HH:MM:SS', new Date()));
var markdeownResult = data.result;
var markdeownResult = data.result.result;
const typing = new EasyTyper({
output: '',
isEnd: false,
Expand Down
2 changes: 1 addition & 1 deletion src/LLMServiceHub/wwwroot/js/index.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit d59c0c7

Please sign in to comment.