|
| 1 | +import type { |
| 2 | + AiInformationProps, |
| 3 | + DataPermissionLevelsProps, |
| 4 | + NutritionFactsProps, |
| 5 | +} from "@instructure/ui-instructure"; |
| 6 | +import type { AiInfoFeatureProps } from "../../types"; |
| 7 | + |
| 8 | +const FEATURE_NAME = "Item Authoring"; |
| 9 | +const UID = "assessmentauthoringassistance"; |
| 10 | +const DATA_PERMISSION_LEVELS: DataPermissionLevelsProps["data"] = [ |
| 11 | + { |
| 12 | + description: |
| 13 | + "We leverage anonymized aggregate data for detailed analytics to inform model development and product improvements. No AI models are used at this level.", |
| 14 | + highlighted: false, |
| 15 | + level: "LEVEL 1", |
| 16 | + title: "Descriptive Analytics and Research", |
| 17 | + }, |
| 18 | + { |
| 19 | + description: |
| 20 | + "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.", |
| 21 | + highlighted: true, |
| 22 | + level: "LEVEL 2", |
| 23 | + title: "AI-Powered Features Without Data Training", |
| 24 | + }, |
| 25 | + { |
| 26 | + description: |
| 27 | + "We customize AI solutions tailored to the unique needs and resources of educational institutions. We use customer data to fine-tune data and train AI models that only serve your institution. Your institution's data only serves them through trained models.", |
| 28 | + highlighted: false, |
| 29 | + level: "LEVEL 3", |
| 30 | + title: "AI Customization for Individual Institutions", |
| 31 | + }, |
| 32 | + { |
| 33 | + description: |
| 34 | + "We established a consortium with educational institutions that shares anonymized data, best practices, and research findings. This fosters collaboration and accelerates the responsible development of AI in education. Specialized AI models are created for better outcomes in education, cost savings, and more.", |
| 35 | + highlighted: false, |
| 36 | + level: "LEVEL 4", |
| 37 | + title: "Collaborative AI Consortium", |
| 38 | + }, |
| 39 | +]; |
| 40 | +const NUTRITION_FACTS_DATA: NutritionFactsProps["data"] = [ |
| 41 | + { |
| 42 | + blockTitle: "Model & Data", |
| 43 | + segmentData: [ |
| 44 | + { |
| 45 | + description: |
| 46 | + "The foundational AI on which further training and customizations are built.", |
| 47 | + segmentTitle: "Base Model", |
| 48 | + value: "Haiku 3", |
| 49 | + valueDescription: |
| 50 | + "Anthropic Claude models are provided via Instructure's in-house AI Platform.", |
| 51 | + }, |
| 52 | + { |
| 53 | + description: |
| 54 | + "Indicates the AI model has been given customer data in order to improve its results.", |
| 55 | + segmentTitle: "Trained with User Data", |
| 56 | + value: "No", |
| 57 | + }, |
| 58 | + { |
| 59 | + description: |
| 60 | + "Indicates which training or operational content was given to the model.", |
| 61 | + segmentTitle: "Data Shared with Model", |
| 62 | + value: |
| 63 | + "Source material provided by the user (e.g., Custom standards, course content, text input, file input) for question/item generation.", |
| 64 | + }, |
| 65 | + ], |
| 66 | + }, |
| 67 | + { |
| 68 | + blockTitle: "Privacy & Compliance", |
| 69 | + segmentData: [ |
| 70 | + { |
| 71 | + description: "How long the model stores customer data.", |
| 72 | + segmentTitle: "Data Retention", |
| 73 | + value: "Data is not stored or reused by the model.", |
| 74 | + }, |
| 75 | + { |
| 76 | + description: |
| 77 | + "Recording the AI's performance for auditing, analysis, and improvement.", |
| 78 | + segmentTitle: "Data Logging", |
| 79 | + value: "Logs data", |
| 80 | + valueDescription: "Usage data is logged to improve the product.", |
| 81 | + }, |
| 82 | + { |
| 83 | + description: |
| 84 | + "The locations where the AI model is officially available and supported.", |
| 85 | + segmentTitle: "Regions Supported", |
| 86 | + value: "Global", |
| 87 | + valueDescription: "", |
| 88 | + }, |
| 89 | + { |
| 90 | + description: |
| 91 | + "Sensitive data that can be used to identify an individual.", |
| 92 | + segmentTitle: "PII", |
| 93 | + value: "Not Exposed", |
| 94 | + valueDescription: |
| 95 | + "PII in source material may be sent to the model if included by the user, but no PII is intentionally sent to the model.", |
| 96 | + }, |
| 97 | + ], |
| 98 | + }, |
| 99 | + { |
| 100 | + blockTitle: "Outputs", |
| 101 | + segmentData: [ |
| 102 | + { |
| 103 | + description: "The ability to turn the AI on or off within the product.", |
| 104 | + segmentTitle: "AI Settings Control", |
| 105 | + value: "Yes", |
| 106 | + }, |
| 107 | + { |
| 108 | + description: |
| 109 | + "Indicates if a human is involved in the AI's process or output.", |
| 110 | + segmentTitle: "Human in the Loop", |
| 111 | + value: "Yes", |
| 112 | + valueDescription: |
| 113 | + "Instructors can review, edit, regenerate, or provide additional instructions to refine generated items.", |
| 114 | + }, |
| 115 | + { |
| 116 | + description: |
| 117 | + "Preventative safety mechanisms or limitations built into the AI model.", |
| 118 | + segmentTitle: "Guardrails", |
| 119 | + value: "", |
| 120 | + }, |
| 121 | + { |
| 122 | + description: "Any risks the model may pose to the user.", |
| 123 | + segmentTitle: "Expected Risks", |
| 124 | + value: |
| 125 | + "Generated items may not perfectly capture all desired information, require refinement, or occasionally contain inaccuracies.\n", |
| 126 | + }, |
| 127 | + { |
| 128 | + description: "The specific results the AI model is meant to achieve.", |
| 129 | + segmentTitle: "Intended Outcomes", |
| 130 | + value: "Improved instructor efficiency and productivity", |
| 131 | + }, |
| 132 | + ], |
| 133 | + }, |
| 134 | +]; |
| 135 | +const nutritionFacts: NutritionFactsProps = { |
| 136 | + ...{ |
| 137 | + closeButtonText: "Close", |
| 138 | + closeIconButtonScreenReaderLabel: "Close", |
| 139 | + data: undefined, |
| 140 | + featureName: "Item Authoring", |
| 141 | + modalLabel: "This is a modal for AI facts", |
| 142 | + title: "AI Nutrition Facts", |
| 143 | + triggerText: "Nutrition Facts", |
| 144 | + }, |
| 145 | + data: NUTRITION_FACTS_DATA, |
| 146 | + featureName: FEATURE_NAME, |
| 147 | +}; |
| 148 | +const dataPermissionLevels: DataPermissionLevelsProps = { |
| 149 | + ...{ |
| 150 | + closeButtonText: "Close", |
| 151 | + closeIconButtonScreenReaderLabel: "Close dialog", |
| 152 | + currentFeature: "Item Authoring", |
| 153 | + currentFeatureText: "Current Feature:", |
| 154 | + data: undefined, |
| 155 | + modalLabel: "Data Permission Levels modal", |
| 156 | + title: "Data Permission Levels", |
| 157 | + triggerText: "Data Permission Levels", |
| 158 | + }, |
| 159 | + currentFeature: FEATURE_NAME, |
| 160 | + data: DATA_PERMISSION_LEVELS, |
| 161 | +}; |
| 162 | +const aiInformation: AiInformationProps = { |
| 163 | + ...{ |
| 164 | + data: [ |
| 165 | + { |
| 166 | + description: |
| 167 | + "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.", |
| 168 | + featureName: "Item Authoring", |
| 169 | + modelName: "Haiku 3", |
| 170 | + modelNameText: "Base Model", |
| 171 | + nutritionFactsModalTriggerText: "AI Nutrition Facts", |
| 172 | + permissionLevel: "LEVEL 2", |
| 173 | + permissionLevelsModalTriggerText: "Data Permission Levels", |
| 174 | + permissionLevelText: "Permission Level:", |
| 175 | + }, |
| 176 | + ], |
| 177 | + dataPermissionLevelsCloseButtonText: "Close", |
| 178 | + dataPermissionLevelsCloseIconButtonScreenReaderLabel: "Close dialog", |
| 179 | + dataPermissionLevelsCurrentFeature: "Item Authoring", |
| 180 | + dataPermissionLevelsCurrentFeatureText: "Current Feature:", |
| 181 | + dataPermissionLevelsData: undefined, |
| 182 | + dataPermissionLevelsModalLabel: "Data Permission Levels modal", |
| 183 | + dataPermissionLevelsTitle: "Data Permission Levels", |
| 184 | + nutritionFactsCloseButtonText: "Close", |
| 185 | + nutritionFactsCloseIconButtonScreenReaderLabel: "Close", |
| 186 | + nutritionFactsData: undefined, |
| 187 | + nutritionFactsFeatureName: "Item Authoring", |
| 188 | + nutritionFactsModalLabel: "This is a modal for AI facts", |
| 189 | + nutritionFactsTitle: "AI Nutrition Facts", |
| 190 | + title: "Features", |
| 191 | + trigger: undefined, |
| 192 | + }, |
| 193 | + dataPermissionLevelsData: DATA_PERMISSION_LEVELS, |
| 194 | + nutritionFactsData: NUTRITION_FACTS_DATA, |
| 195 | + trigger: undefined, |
| 196 | +}; |
| 197 | +const assessmentauthoringassistance: AiInfoFeatureProps = { |
| 198 | + aiInformation, |
| 199 | + dataPermissionLevels, |
| 200 | + description: |
| 201 | + "Item Authoring for Assessments streamlines assessment creation by generating questions based on your course materials. \n", |
| 202 | + group: "Mastery", |
| 203 | + name: FEATURE_NAME, |
| 204 | + nutritionFacts, |
| 205 | + revision: "2025.11.18", |
| 206 | + uid: UID, |
| 207 | +}; |
| 208 | +export { |
| 209 | + assessmentauthoringassistance, |
| 210 | + nutritionFacts, |
| 211 | + dataPermissionLevels, |
| 212 | + aiInformation, |
| 213 | +}; |
| 214 | +export default assessmentauthoringassistance; |
0 commit comments