We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b127066 commit f99da1fCopy full SHA for f99da1f
src/participant/participant.ts
@@ -1429,6 +1429,10 @@ export default class ParticipantController {
1429
stream,
1430
});
1431
1432
+ if (docsResult.responseContent) {
1433
+ stream.markdown(docsResult.responseContent);
1434
+ }
1435
+
1436
if (docsResult.responseReferences) {
1437
for (const reference of docsResult.responseReferences) {
1438
this._streamResponseReference({
@@ -1438,10 +1442,6 @@ export default class ParticipantController {
1442
}
1439
1443
1440
1444
1441
- if (docsResult.responseContent) {
- stream.markdown(docsResult.responseContent);
- }
-
1445
this._telemetryService.trackCopilotParticipantResponse({
1446
command: 'docs/chatbot',
1447
has_cta: !!docsResult.responseReferences,
0 commit comments