@agentmark-ai/shared-utils 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1425,6 +1425,7 @@ function parseAgentMarkAttributes(attributes, prefix = "agentmark.") {
1425
1425
  if (get("dataset_run_name")) result.datasetRunName = String(get("dataset_run_name"));
1426
1426
  if (get("dataset_item_name")) result.datasetItemName = String(get("dataset_item_name"));
1427
1427
  if (get("dataset_expected_output")) result.datasetExpectedOutput = String(get("dataset_expected_output"));
1428
+ if (get("dataset_path")) result.datasetPath = String(get("dataset_path"));
1428
1429
  return result;
1429
1430
  }
1430
1431