@@ -124,73 +124,64 @@ const NUTRITION_FACTS_DATA: NutritionFactsProps["data"] = [
124124 ] ,
125125 } ,
126126] ;
127- const nutritionFacts : NutritionFactsProps = {
128- ...{
129- closeButtonText : "Close" ,
130- closeIconButtonScreenReaderLabel : "Close" ,
131- featureName : FEATURE_NAME ,
132- modalLabel : "This is a modal for AI facts" ,
133- title : "AI Nutrition Facts" ,
134- triggerText : "Nutrition Facts" ,
135- } ,
136- data : NUTRITION_FACTS_DATA ,
137- } ;
138- const dataPermissionLevels : DataPermissionLevelsProps = {
139- ...{
140- closeButtonText : "Close" ,
141- closeIconButtonScreenReaderLabel : "Close dialog" ,
142- currentFeature : FEATURE_NAME ,
143- currentFeatureText : "Current Feature:" ,
144- modalLabel : "Data Permission Levels modal" ,
145- title : "Data Permission Levels" ,
146- triggerText : "Data Permission Levels" ,
147- } ,
148- data : DATA_PERMISSION_LEVELS ,
149- } ;
150- const aiInformation : AiInformationProps = {
151- ...{
152- data : [
153- {
154- description :
155- "We utilize off-the-shelf AI models and customer data as input to provide AI-powered features. No data is used for training this model." ,
156- featureName : "Ask Your Data" ,
157- modelName : "Doowii (multiple)" ,
158- modelNameText : "Base Model" ,
159- nutritionFactsModalTriggerText : "AI Nutrition Facts" ,
160- permissionLevel : "LEVEL 2" ,
161- permissionLevelsModalTriggerText : "Data Permission Levels" ,
162- permissionLevelText : "Permission Level:" ,
163- privacyNoticeText : "" ,
164- privacyNoticeUrl : "" ,
165- } ,
166- ] ,
167- dataPermissionLevelsCloseButtonText : "Close" ,
168- dataPermissionLevelsCloseIconButtonScreenReaderLabel : "Close dialog" ,
169- dataPermissionLevelsCurrentFeature : "Ask Your Data" ,
170- dataPermissionLevelsCurrentFeatureText : "Current Feature:" ,
171- dataPermissionLevelsModalLabel : "Data Permission Levels modal" ,
172- dataPermissionLevelsTitle : "Data Permission Levels" ,
173- nutritionFactsCloseButtonText : "Close" ,
174- nutritionFactsCloseIconButtonScreenReaderLabel : "Close" ,
175- nutritionFactsFeatureName : "Ask Your Data" ,
176- nutritionFactsModalLabel : "This is a modal for AI facts" ,
177- nutritionFactsTitle : "AI Nutrition Facts" ,
178- title : "Features" ,
179- } ,
180- dataPermissionLevelsData : DATA_PERMISSION_LEVELS ,
181- nutritionFactsData : NUTRITION_FACTS_DATA ,
182- trigger : undefined ,
183- } ;
127+ const nutritionFacts : NutritionFactsProps = ( {
128+ closeButtonText : 'Close' ,
129+ closeIconButtonScreenReaderLabel : 'Close' ,
130+ featureName : FEATURE_NAME ,
131+ modalLabel : 'This is a modal for AI facts' ,
132+ title : 'AI Nutrition Facts' ,
133+ triggerText : 'Nutrition Facts' ,
134+ data : NUTRITION_FACTS_DATA
135+ } ) ;
136+ const dataPermissionLevels : DataPermissionLevelsProps = ( {
137+ closeButtonText : 'Close' ,
138+ closeIconButtonScreenReaderLabel : 'Close dialog' ,
139+ currentFeature : FEATURE_NAME ,
140+ currentFeatureText : 'Current Feature:' ,
141+ modalLabel : 'Data Permission Levels modal' ,
142+ title : 'Data Permission Levels' ,
143+ triggerText : 'Data Permission Levels' ,
144+ data : DATA_PERMISSION_LEVELS
145+ } ) ;
146+ const aiInformation : AiInformationProps = ( {
147+ data : [ {
148+ description : 'We utilize off-the-shelf AI models and customer data as input to provide AI-powered features. No data is used for training this model.' ,
149+ featureName : 'Ask Your Data' ,
150+ modelName : 'Doowii (multiple)' ,
151+ modelNameText : 'Base Model' ,
152+ nutritionFactsModalTriggerText : 'AI Nutrition Facts' ,
153+ permissionLevel : 'LEVEL 2' ,
154+ permissionLevelsModalTriggerText : 'Data Permission Levels' ,
155+ permissionLevelText : 'Permission Level:' ,
156+ privacyNoticeText : '' ,
157+ privacyNoticeUrl : ''
158+ } ] ,
159+ dataPermissionLevelsCloseButtonText : 'Close' ,
160+ dataPermissionLevelsCloseIconButtonScreenReaderLabel : 'Close dialog' ,
161+ dataPermissionLevelsCurrentFeature : 'Ask Your Data' ,
162+ dataPermissionLevelsCurrentFeatureText : 'Current Feature:' ,
163+ dataPermissionLevelsModalLabel : 'Data Permission Levels modal' ,
164+ dataPermissionLevelsTitle : 'Data Permission Levels' ,
165+ nutritionFactsCloseButtonText : 'Close' ,
166+ nutritionFactsCloseIconButtonScreenReaderLabel : 'Close' ,
167+ nutritionFactsFeatureName : 'Ask Your Data' ,
168+ nutritionFactsModalLabel : 'This is a modal for AI facts' ,
169+ nutritionFactsTitle : 'AI Nutrition Facts' ,
170+ title : 'Features' ,
171+ dataPermissionLevelsData : DATA_PERMISSION_LEVELS ,
172+ nutritionFactsData : NUTRITION_FACTS_DATA ,
173+ trigger : undefined
174+ } ) ;
184175const askyourdata : AiInfoFeatureProps = {
185176 aiInformation,
186177 dataPermissionLevels,
178+ description :
179+ "AI-powered query tool enables users to ask natural language questions and receive textual or visual responses with detailed explanations of the methodology." ,
180+ group : "Intelligent Insights" ,
181+ name : FEATURE_NAME ,
187182 nutritionFacts,
188183 revision : "2025.09.12" ,
189184 uid : UID ,
190- group : "Intelligent Insights" ,
191- name : FEATURE_NAME ,
192- description :
193- "AI-powered query tool enables users to ask natural language questions and receive textual or visual responses with detailed explanations of the methodology." ,
194185} ;
195186export { askyourdata , nutritionFacts , dataPermissionLevels , aiInformation } ;
196187export default askyourdata ;
0 commit comments