@@ -92,46 +92,25 @@ export const questions = {
9292 } ,
9393 } ,
9494 testingConditions : {
95- prompt : `Describe the conditions under which radiation testing was conducted.:
95+ prompt : `Describe the type of radiation testing that was conducted.:
9696 - Type of testing performed (ONLY ONE OF [ TID, SEE, DD])
97- - Facility name
98- - Environmental conditions
99- - Was the test conducted in a terrestrial setting? (Yes/No)
100- - Was the test conducted in-flight? (Yes/No)
101-
97+
10298 There might be more than one test for the given part, if that is the case return a list of tests pertaining to the part
10399
104100 Return the response as a **valid JSON object** with the following structure:
105101
106102 {
107103 "testing_type": "TID | SEE | DD",
108- "facility_name": "<string>",
109- "environmental_conditions": "<string>",
110- "terrestrial": <true | false>,
111- "in_flight": <true | false>
104+
112105 }
113106
114107 Return only valid JSON with no extra text.` ,
115108 schenma : {
116109 type : "object" ,
117110 properties : {
118111 testing_type : { type : "string" , enum : [ "TID" , "SEE" , "DD" ] } ,
119- max_fluence : { type : "number" } ,
120- energy_levels : { type : "string" } ,
121- facility_name : { type : "string" } ,
122- environmental_conditions : { type : "string" } ,
123- terrestrial : { type : "boolean" } ,
124- in_flight : { type : "boolean" } ,
125112 } ,
126- required : [
127- "testing_type" ,
128- "max_fluence" ,
129- "energy_levels" ,
130- "facility_name" ,
131- "environmental_conditions" ,
132- "terrestrial" ,
133- "in_flight" ,
134- ] ,
113+ required : [ "testing_type" ] ,
135114 } ,
136115 } ,
137116 tidData : {
0 commit comments