You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: nls.localize('chat.renderRelatedFiles',"Controls whether related files should be rendered in the chat input."),
263
263
default: false
264
264
},
265
+
[ChatConfiguration.InlineReferencesStyle]: {
266
+
type: 'string',
267
+
enum: ['box','link'],
268
+
enumDescriptions: [
269
+
nls.localize('chat.inlineReferences.style.box',"Display file and symbol references as boxed widgets with icons."),
270
+
nls.localize('chat.inlineReferences.style.link',"Display file and symbol references as simple blue links without icons.")
271
+
],
272
+
description: nls.localize('chat.inlineReferences.style',"Controls how file and symbol references are displayed in chat messages."),
273
+
default: 'box'
274
+
},
265
275
'chat.notifyWindowOnConfirmation': {
266
276
type: 'boolean',
267
277
description: nls.localize('chat.notifyWindowOnConfirmation',"Controls whether a chat session should present the user with an OS notification when a confirmation is needed while the window is not in focus. This includes a window badge as well as notification toast."),
/* 07 */'Here is a #tool:tool1 variable (and one with closing parenthesis after: #tool:tool-2) and a #file:./reference1.md as well as a [reference](./reference2.md).',
25
+
/* 07 */'Here is a #tool:tool1 variable (and one with closing parenthesis after: #tool:tool-2) and a #file:./reference1.md as well as a [reference](./reference2.md) and an image .',
assert.equal(result.body.getContent(),'This is an agent test.\nHere is a #tool:tool1 variable (and one with closing parenthesis after: #tool:tool-2) and a #file:./reference1.md as well as a [reference](./reference2.md).');
45
+
assert.equal(result.body.getContent(),'This is an agent test.\nHere is a #tool:tool1 variable (and one with closing parenthesis after: #tool:tool-2) and a #file:./reference1.md as well as a [reference](./reference2.md) and an image .');
0 commit comments