The current NeMo-Auditor tutorial throws 422 Unprocessable Entity exception while creating an audit job with latest nemo-microservices/auditor:25.09 image.
Current:
payload = {
"name": "getting-started-job",
"project": "demo",
"spec": {
"config": f"default/{config_name}",
"target": f"default/{target_name}",
}
}
Should be
payload = {
"name": "getting-started-job",
"project": "demo",
"config": f"default/{config_name}",
"target": f"default/{target_name}"
}
The current NeMo-Auditor tutorial throws
422 Unprocessable Entityexception while creating an audit job with latestnemo-microservices/auditor:25.09image.Current:
Should be