@maxim_mazurok/gapi.client.aiplatform-v1 0.4.20251117 → 0.4.20251219
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/index.d.ts +4693 -1921
- package/package.json +1 -1
- package/readme.md +20 -0
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -201,6 +201,11 @@ Deletes a reasoning engine.
|
|
|
201
201
|
*/
|
|
202
202
|
await gapi.client.aiplatform.reasoningEngines.delete({name: 'name'});
|
|
203
203
|
|
|
204
|
+
/*
|
|
205
|
+
Executes code statelessly.
|
|
206
|
+
*/
|
|
207
|
+
await gapi.client.aiplatform.reasoningEngines.executeCode({name: 'name'});
|
|
208
|
+
|
|
204
209
|
/*
|
|
205
210
|
Gets a reasoning engine.
|
|
206
211
|
*/
|
|
@@ -225,6 +230,21 @@ await gapi.client.aiplatform.reasoningEngines.query({name: 'name'});
|
|
|
225
230
|
Streams queries using a reasoning engine.
|
|
226
231
|
*/
|
|
227
232
|
await gapi.client.aiplatform.reasoningEngines.streamQuery({name: 'name'});
|
|
233
|
+
|
|
234
|
+
/*
|
|
235
|
+
Evaluates a dataset based on a set of given metrics.
|
|
236
|
+
*/
|
|
237
|
+
await gapi.client.aiplatform.evaluateDataset({});
|
|
238
|
+
|
|
239
|
+
/*
|
|
240
|
+
Evaluates instances based on a given metric.
|
|
241
|
+
*/
|
|
242
|
+
await gapi.client.aiplatform.evaluateInstances({});
|
|
243
|
+
|
|
244
|
+
/*
|
|
245
|
+
Generates rubrics for a given prompt. A rubric represents a single testable criterion for evaluation. One input prompt could have multiple rubrics This RPC allows users to get suggested rubrics based on provided prompt, which can then be reviewed and used for subsequent evaluations.
|
|
246
|
+
*/
|
|
247
|
+
await gapi.client.aiplatform.generateInstanceRubrics({});
|
|
228
248
|
```
|
|
229
249
|
|
|
230
250
|
For provenance information see [Provenance section on NPM](https://www.npmjs.com/package/@maxim_mazurok/gapi.client.aiplatform-v1#Provenance:~:text=none-,Provenance,-Built%20and%20signed)
|