@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.mjs CHANGED
@@ -1366,6 +1366,7 @@ function parseAgentMarkAttributes(attributes, prefix = "agentmark.") {
1366
1366
  if (get("dataset_run_name")) result.datasetRunName = String(get("dataset_run_name"));
1367
1367
  if (get("dataset_item_name")) result.datasetItemName = String(get("dataset_item_name"));
1368
1368
  if (get("dataset_expected_output")) result.datasetExpectedOutput = String(get("dataset_expected_output"));
1369
+ if (get("dataset_path")) result.datasetPath = String(get("dataset_path"));
1369
1370
  return result;
1370
1371
  }
1371
1372