@@ -524,10 +524,6 @@ def normalized_ontology_by_media_type():
524524 radio ,
525525 ],
526526 },
527- MediaType .Dicom : {
528- "tools" : [raster_segmentation_tool , polyline_tool ],
529- "classifications" : [],
530- },
531527 MediaType .Conversational : {
532528 "tools" : [entity_tool ],
533529 "classifications" : [
@@ -2265,51 +2261,6 @@ def expected_export_v2_conversation():
22652261 return expected_annotations
22662262
22672263
2268- @pytest .fixture ()
2269- def expected_export_v2_dicom ():
2270- expected_annotations = {
2271- "groups" : {
2272- "Axial" : {
2273- "name" : "Axial" ,
2274- "classifications" : [],
2275- "frames" : {
2276- "1" : {
2277- "objects" : {
2278- "<cuid>" : {
2279- "name" : "polyline" ,
2280- "value" : "polyline" ,
2281- "annotation_kind" : "DICOMPolyline" ,
2282- "classifications" : [],
2283- "line" : [
2284- {"x" : 147.692 , "y" : 118.154 },
2285- {"x" : 150.692 , "y" : 160.154 },
2286- ],
2287- }
2288- },
2289- "classifications" : [],
2290- }
2291- },
2292- },
2293- "Sagittal" : {
2294- "name" : "Sagittal" ,
2295- "classifications" : [],
2296- "frames" : {},
2297- },
2298- "Coronal" : {"name" : "Coronal" , "classifications" : [], "frames" : {}},
2299- },
2300- "segments" : {
2301- "Axial" : {"<cuid>" : [[1 , 1 ]]},
2302- "Sagittal" : {},
2303- "Coronal" : {},
2304- },
2305- "classifications" : [],
2306- "key_frame_feature_map" : {
2307- "<cuid>" : {"Axial" : {"1" : True }, "Coronal" : {}, "Sagittal" : {}}
2308- },
2309- }
2310- return expected_annotations
2311-
2312-
23132264@pytest .fixture ()
23142265def expected_export_v2_document ():
23152266 expected_annotations = {
@@ -2617,7 +2568,6 @@ def exports_v2_by_media_type(
26172568 expected_export_v2_text ,
26182569 expected_export_v2_video ,
26192570 expected_export_v2_conversation ,
2620- expected_export_v2_dicom ,
26212571 expected_export_v2_document ,
26222572 expected_export_v2_llm_prompt_response_creation ,
26232573 expected_export_v2_llm_prompt_creation ,
@@ -2631,7 +2581,6 @@ def exports_v2_by_media_type(
26312581 MediaType .Text : expected_export_v2_text ,
26322582 MediaType .Video : expected_export_v2_video ,
26332583 MediaType .Conversational : expected_export_v2_conversation ,
2634- MediaType .Dicom : expected_export_v2_dicom ,
26352584 MediaType .Document : expected_export_v2_document ,
26362585 MediaType .LLMPromptResponseCreation : expected_export_v2_llm_prompt_response_creation ,
26372586 MediaType .LLMPromptCreation : expected_export_v2_llm_prompt_creation ,
0 commit comments