@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.4.20251204 → 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 +435 -872
- package/package.json +1 -1
- package/readme.md +15 -15
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -151,21 +151,6 @@ Generate content with multimodal inputs with streaming support.
|
|
|
151
151
|
*/
|
|
152
152
|
await gapi.client.aiplatform.endpoints.streamGenerateContent({model: 'model'});
|
|
153
153
|
|
|
154
|
-
/*
|
|
155
|
-
Fully typed proto, unary version of GetInteraction that returns Interaction proto.
|
|
156
|
-
*/
|
|
157
|
-
await gapi.client.aiplatform.interactions.getPoll({name: 'name'});
|
|
158
|
-
|
|
159
|
-
/*
|
|
160
|
-
Fully typed proto, streaming version of GetInteraction that returns Interaction proto.
|
|
161
|
-
*/
|
|
162
|
-
await gapi.client.aiplatform.interactions.getStream({name: 'name'});
|
|
163
|
-
|
|
164
|
-
/*
|
|
165
|
-
Internal version of ListInteractions that returns a list of Interactions.
|
|
166
|
-
*/
|
|
167
|
-
await gapi.client.aiplatform.interactionsInternal.list({});
|
|
168
|
-
|
|
169
154
|
/*
|
|
170
155
|
Upload a file into a RagCorpus.
|
|
171
156
|
*/
|
|
@@ -255,6 +240,21 @@ await gapi.client.aiplatform.reasoningEngines.query({name: 'name'});
|
|
|
255
240
|
Streams queries using a reasoning engine.
|
|
256
241
|
*/
|
|
257
242
|
await gapi.client.aiplatform.reasoningEngines.streamQuery({name: 'name'});
|
|
243
|
+
|
|
244
|
+
/*
|
|
245
|
+
Evaluates a dataset based on a set of given metrics.
|
|
246
|
+
*/
|
|
247
|
+
await gapi.client.aiplatform.evaluateDataset({});
|
|
248
|
+
|
|
249
|
+
/*
|
|
250
|
+
Evaluates instances based on a given metric.
|
|
251
|
+
*/
|
|
252
|
+
await gapi.client.aiplatform.evaluateInstances({});
|
|
253
|
+
|
|
254
|
+
/*
|
|
255
|
+
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.
|
|
256
|
+
*/
|
|
257
|
+
await gapi.client.aiplatform.generateInstanceRubrics({});
|
|
258
258
|
```
|
|
259
259
|
|
|
260
260
|
For provenance information see [Provenance section on NPM](https://www.npmjs.com/package/@maxim_mazurok/gapi.client.aiplatform-v1beta1#Provenance:~:text=none-,Provenance,-Built%20and%20signed)
|