GenerativeAIExamples icon indicating copy to clipboard operation
GenerativeAIExamples copied to clipboard

Incorrect audit job payload for nemo-microservices/auditor:25.09

Open saichandrapandraju opened this issue 1 month ago • 2 comments

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}"
}

saichandrapandraju avatar Oct 07 '25 02:10 saichandrapandraju