File size: 26,916 Bytes
40d081b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
# Comprehensive Data Identification Test Cases for SciVisAgentBench
# This test evaluates the ability to identify and understand data content
# without prior knowledge from metadata or naming patterns

# 1. Aneurism Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/aneurism/data/aneurism_256x256x256_uint8.raw".
        Use visualization tools to determine what object or structure is contained in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/aneurism/results/{agent_mode}/aneurism.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/aneurism/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          The assistant should identify the data shows an aneurism or vascular structure
    - type: llm-rubric
      subtype: vision
      value: |
          The assistant should identify the data shows an aneurism or vascular structure

# # 2. Backpack Dataset
# - vars:
#     question: |
#         Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/backpack/data/backpack_512x512x373_uint16.raw".
#         Use visualization tools to determine what object is contained in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/backpack/results/{agent_mode}/backpack.pvsm"
#         Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/backpack/results/{agent_mode}/answers.txt"
#   assert:
#     - type: llm-rubric
#       subtype: text
#       value: |
#           The assistant should identify that the data shows a backpack
#     - type: llm-rubric
#       subtype: vision
#       value: |
#           The assistant should identify that the data shows a backpack

# 3. Blunt Fin Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/blunt_fin/data/blunt_fin_256x128x64_uint8.raw".
        Use visualization tools to determine what object or structure is in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/blunt_fin/results/{agent_mode}/blunt_fin.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/blunt_fin/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          The assistant should identify a fin or aerodynamic strcuture or simulation result in the data
    - type: llm-rubric
      subtype: vision
      value: |
          The assistant should identify a fin or aerodynamic strcuture or simulation result in the data

# 4. Bonsai Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/bonsai/data/bonsai_256x256x256_uint8.raw".
        Use visualization tools to determine what object is contained in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/bonsai/results/{agent_mode}/bonsai.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/bonsai/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify a bonsai tree or botanical structure in the data
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify a bonsai tree or botanical structure in the data

# 5. Boston Teapot Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/boston_teapot/data/boston_teapot_256x256x178_uint8.raw".
        Use visualization tools to determine what object is in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/boston_teapot/results/{agent_mode}/boston_teapot.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/boston_teapot/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify a teapot in the visualization
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify a teapot in the visualization

# 6. Bunny Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/bunny/data/bunny_512x512x361_uint16.raw".
        Use visualization tools to determine what object is in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/bunny/results/{agent_mode}/bunny.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/bunny/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify a bunny or rabbit in the 3D scanned data
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify a bunny or rabbit in the 3D scanned data

# 7. Carp Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/carp/data/carp_256x256x512_uint16.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/carp/results/{agent_mode}/carp.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/carp/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify a carp or fish anatomy
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify a carp or fish anatomy

# 8. CSAFE Heptane Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/csafe_heptane/data/csafe_heptane_302x302x302_uint8.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/csafe_heptane/results/{agent_mode}/csafe_heptane.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/csafe_heptane/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should recognize combustion or heptane simulation data
    - type: llm-rubric
      subtype: vision
      value: |
          Should recognize combustion or heptane simulation data

# 9. Duct Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/duct/data/duct_193x194x1000_float32.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/duct/results/{agent_mode}/duct.pvsm"
        Take a screenshot and provide a textual report describing what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/duct/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify flow patterns in a duct geometry
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify flow patterns in a duct geometry

# 10. Engine Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/engine/data/engine_256x256x128_uint8.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/engine/results/{agent_mode}/engine.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/engine/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify an engine or mechanical components
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify an engine or mechanical components

# 11. Foot Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/foot/data/foot_256x256x256_uint8.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/foot/results/{agent_mode}/foot.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/foot/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify a foot with bone and tissue structures
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify a foot with bone and tissue structures

# 12. Frog Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/frog/data/frog_256x256x44_uint8.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/frog/results/{agent_mode}/frog.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/frog/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify a frog specimen with internal anatomy
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify a frog specimen with internal anatomy

# 13. Fuel Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/fuel/data/fuel_64x64x64_uint8.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/fuel/results/{agent_mode}/fuel.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/fuel/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify fuel combustion or related simulation
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify fuel combustion or related simulation

# 14. Hydrogen Atom Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/hydrogen_atom/data/hydrogen_atom_128x128x128_uint8.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/hydrogen_atom/results/{agent_mode}/hydrogen_atom.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/hydrogen_atom/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should recognize hydrogen atom orbital or probability distribution
    - type: llm-rubric
      subtype: vision
      value: |
          Should recognize hydrogen atom orbital or probability distribution

# 15. Lobster Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/lobster/data/lobster_301x324x56_uint8.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/lobster/results/{agent_mode}/lobster.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/lobster/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify a lobster or crustacean anatomy
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify a lobster or crustacean anatomy

# 16. Marschner-Lobb Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/marschner_lobb/data/marschner_lobb_41x41x41_uint8.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/marschner_lobb/results/{agent_mode}/marschner_lobb.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/marschner_lobb/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should recognize Marschner-Lobb synthetic test pattern
    - type: llm-rubric
      subtype: vision
      value: |
          Should recognize Marschner-Lobb synthetic test pattern

# 17. MRI Ventricles Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/mri_ventricles/data/mri_ventricles_256x256x124_uint8.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/mri_ventricles/results/{agent_mode}/mri_ventricles.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/mri_ventricles/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify brain ventricles or ventricular structures
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify brain ventricles or ventricular structures

# 18. MRI Woman Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/mri_woman/data/mri_woman_256x256x109_uint16.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/mri_woman/results/{agent_mode}/mri_woman.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/mri_woman/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify human anatomical structures from MRI scan
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify human anatomical structures from MRI scan

# 19. MRT Angio Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/mrt_angio/data/mrt_angio_416x512x112_uint16.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/mrt_angio/results/{agent_mode}/mrt_angio.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/mrt_angio/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify angiography or vascular structures
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify angiography or vascular structures

# 20. Neghip Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/neghip/data/neghip_64x64x64_uint8.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/neghip/results/{agent_mode}/neghip.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/neghip/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should visualize and describe molecule structure
    - type: llm-rubric
      subtype: vision
      value: |
          Should visualize and describe molecule structure

# 21. Neocortical Layer 1 Axons Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/neocortical_layer_1_axons/data/neocortical_layer_1_axons_1464x1033x76_uint8.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/neocortical_layer_1_axons/results/{agent_mode}/neocortical_layer_1_axons.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/neocortical_layer_1_axons/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify neural axons or neocortical network structures
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify neural axons or neocortical network structures

# 22. Nucleon Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/nucleon/data/nucleon_41x41x41_uint8.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/nucleon/results/{agent_mode}/nucleon.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/nucleon/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should visualize nucleon or particle physics data
    - type: llm-rubric
      subtype: vision
      value: |
          Should visualize nucleon or particle physics data

# 23. Pancreas Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/pancreas/data/pancreas_240x512x512_int16.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/pancreas/results/{agent_mode}/pancreas.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/pancreas/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify pancreas or pancreatic anatomy
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify pancreas or pancreatic anatomy

# 24. Shockwave Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/shockwave/data/shockwave_64x64x512_uint8.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/shockwave/results/{agent_mode}/shockwave.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/shockwave/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify shockwave or wave propagation patterns
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify shockwave or wave propagation patterns

# 25. Silicium Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/silicium/data/silicium_98x34x34_uint8.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/silicium/results/{agent_mode}/silicium.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/silicium/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify silicon crystal or material structure
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify silicon crystal or material structure

# 26. Skull Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/skull/data/skull_256x256x256_uint8.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/skull/results/{agent_mode}/skull.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/skull/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          1. Should identify skull or cranial bone structures
    - type: llm-rubric
      subtype: vision
      value: |
          1. Should identify skull or cranial bone structures

# 27. Statue Leg Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/statue_leg/data/statue_leg_341x341x93_uint8.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/statue_leg/results/{agent_mode}/statue_leg.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/statue_leg/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify a statue leg or sculptural form
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify a statue leg or sculptural form

# 28. Stent Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/stent/data/stent_512x512x174_uint16.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/stent/results/{agent_mode}/stent.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/stent/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      value: |
          Should identify a stent or medical device mesh structure

# 29. Supernova Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/supernova/data/supernova_256x256x256_float32.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/supernova/results/{agent_mode}/supernova.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/supernova/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify supernova or astrophysical explosion simulation
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify supernova or astrophysical explosion simulation

# 30. TACC Turbulence Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/tacc_turbulence/data/tacc_turbulence_256x256x256_float32.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/tacc_turbulence/results/{agent_mode}/tacc_turbulence.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/tacc_turbulence/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify turbulence or vortex flow structures
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify turbulence or vortex flow structures

# 31. Tooth Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/tooth/data/tooth_103x94x161_uint8.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/tooth/results/{agent_mode}/tooth.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/tooth/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify tooth or dental anatomy
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify tooth or dental anatomy

# 32. Tornado Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/tornado/data/tornado_64x64x64_float32_scalar3.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/tornado/results/{agent_mode}/tornado.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/tornado/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify tornado or vortex flow pattern
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify tornado or vortex flow pattern

# 33. Visible Male Dataset
- vars:
    question: |
        Clear the ParaView pipeline and load the data file "../SciVisAgentBench-tasks/sci_volume_data/vis_male/data/vis_male_128x256x256_uint8.raw".
        Use visualization tools to examine what is shown in this dataset. Save the paraview state as "../SciVisAgentBench-tasks/sci_volume_data/vis_male/results/{agent_mode}/vis_male.pvsm"
        Provide a textual report identifying what you observe and save it to "../SciVisAgentBench-tasks/sci_volume_data/vis_male/results/{agent_mode}/answers.txt"
  assert:
    - type: llm-rubric
      subtype: text
      value: |
          Should identify human anatomical structures
    - type: llm-rubric
      subtype: vision
      value: |
          Should identify human anatomical structures