Skip to content

Commit e824beb

Browse files
authored
Merge pull request #4 from Azure-Samples/checkci
Make sure CI workflows pass
2 parents 3439d80 + a097f7c commit e824beb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/quartapp/chat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ async def configure_openai():
4747
endpoint=os.environ["AZURE_INFERENCE_ENDPOINT"],
4848
credential=azure_credential,
4949
credential_scopes=["https://cognitiveservices.azure.com/.default"],
50-
model="DeepSeek-R1"
50+
model="DeepSeek-R1",
5151
)
5252

5353

src/quartapp/templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
// Only show thoughts if they are more than just whitespace
119119
messageDiv.querySelector(".loading-bar").style.display = "none";
120120
messageDiv.querySelector(".thoughts").style.display = "block";
121-
messageDiv.querySelector(".thoughts-content").innerHTML = thoughts;
121+
messageDiv.querySelector(".thoughts-content").innerHTML = converter.makeHtml(thoughts);
122122
}
123123
} else {
124124
messageDiv.querySelector(".loading-bar").style.display = "none";

0 commit comments

Comments
 (0)