Show citations at the end of each turn (#7350)

This commit is contained in:
Tommaso Sciortino
2025-08-28 16:42:54 -07:00
committed by GitHub
parent e02cb6c6a3
commit 95db24f234
8 changed files with 262 additions and 24 deletions

View File

@@ -45,6 +45,7 @@ const MIGRATION_MAP: Record<string, string> = {
hideFooter: 'ui.hideFooter',
showMemoryUsage: 'ui.showMemoryUsage',
showLineNumbers: 'ui.showLineNumbers',
showCitations: 'ui.showCitations',
accessibility: 'ui.accessibility',
ideMode: 'ide.enabled',
hasSeenIdeIntegrationNudge: 'ide.hasSeenNudge',

View File

@@ -219,6 +219,15 @@ export const SETTINGS_SCHEMA = {
description: 'Show line numbers in the chat.',
showInDialog: true,
},
showCitations: {
type: 'boolean',
label: 'Show Citations',
category: 'UI',
requiresRestart: false,
default: false,
description: 'Show citations for generated text in the chat.',
showInDialog: true,
},
accessibility: {
type: 'object',
label: 'Accessibility',