@azure/ai-projects 1.0.0-alpha.20250529.1 → 1.0.0-alpha.20250603.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/README.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -438,7 +438,7 @@ const newEvaluation: EvaluationWithOptionalName = {
|
|
|
438
438
|
},
|
|
439
439
|
},
|
|
440
440
|
};
|
|
441
|
-
const evalResp = await project.evaluations.
|
|
441
|
+
const evalResp = await project.evaluations.create(newEvaluation);
|
|
442
442
|
console.log("Create a new evaluation:", JSON.stringify(evalResp, null, 2));
|
|
443
443
|
// get the evaluation by ID
|
|
444
444
|
const eval2 = await project.evaluations.get(evalResp.name);
|