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
@@ -808,7 +812,11 @@ export class ConsoleInsight extends HTMLElement {
808
812
}asIconButton.Icon.IconData}>
809
813
</devtools-icon>
810
814
</div>
811
-
<div>The console message, associated stack trace, related source code, and the associated network headers are sent to Google to generate explanations. This data may be seen by human reviewers to improve this feature. Avoid sharing sensitive or personal information.</div>
815
+
<div>The console message, associated stack trace, related source code, and the associated network headers are sent to Google to generate explanations.
816
+
${noLogging
817
+
? 'The content you submit and that is generated by this feature will not be used to improve Google’s AI models.'
818
+
: 'This data may be seen by human reviewers to improve this feature. Avoid sharing sensitive or personal information.'}
819
+
</div>
812
820
<div>
813
821
<devtools-icon.data=${{
814
822
iconName: 'policy',
@@ -890,9 +898,15 @@ export class ConsoleInsight extends HTMLElement {
AI tools may generate inaccurate info that doesn't represent Google's views. Data sent to Google may be seen by human reviewers to improve this feature.
906
+
AI tools may generate inaccurate info that doesn't represent Google's views.
907
+
${noLogging
908
+
? 'The content you submit and that is generated by this feature will not be used to improve Google’s AI models.'
909
+
: 'Data sent to Google may be seen by human reviewers to improve this feature.'}
Copy file name to clipboardExpand all lines: front_end/panels/settings/AISettingsTab.ts
+16-2Lines changed: 16 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -83,6 +83,11 @@ const UIStrings = {
83
83
*/
84
84
consoleInsightsSendsData:
85
85
'The console message, associated stack trace, related source code, and the associated network headers are sent to Google to generate explanations. This data may be seen by human reviewers to improve this feature.',
86
+
/**
87
+
*@description Explainer for which data is being sent by the console insights feature
88
+
*/
89
+
consoleInsightsSendsDataNoLogging:
90
+
'The console message, associated stack trace, related source code, and the associated network headers are sent to Google to generate explanations. This data will not be used to improve Google’s AI models.',
86
91
/**
87
92
*@description Reference to the terms of service and privacy notice
88
93
*@example {Google Terms of Service} PH1
@@ -136,6 +141,11 @@ const UIStrings = {
136
141
*/
137
142
freestylerSendsData:
138
143
'Any data the inspected page can access via Web APIs, network requests, files, and performance traces are sent to Google to generate explanations. This data may be seen by human reviewers to improve this feature. Don’t use on pages with personal or sensitive information.',
144
+
/**
145
+
*@description Explainer for which data is being sent by the AI assistance feature
146
+
*/
147
+
freestylerSendsDataNoLogging:
148
+
'Any data the inspected page can access via Web APIs, network requests, files, and performance traces are sent to Google to generate explanations. This data will not be used to improve Google’s AI models.',
139
149
/**
140
150
*@description Label for a link to the terms of service
141
151
*/
@@ -410,6 +420,8 @@ export class AISettingsTab extends LegacyWrapper.LegacyWrapper.WrappableComponen
0 commit comments