@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20250522 → 0.0.20250529
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 +1302 -7
- package/package.json +1 -1
- package/readme.md +49 -0
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -122,6 +122,13 @@ Perform a token counting.
|
|
|
122
122
|
*/
|
|
123
123
|
await gapi.client.aiplatform.endpoints.countTokens({endpoint: 'endpoint'});
|
|
124
124
|
|
|
125
|
+
/*
|
|
126
|
+
Fetch an asynchronous online prediction operation.
|
|
127
|
+
*/
|
|
128
|
+
await gapi.client.aiplatform.endpoints.fetchPredictOperation({
|
|
129
|
+
endpoint: 'endpoint',
|
|
130
|
+
});
|
|
131
|
+
|
|
125
132
|
/*
|
|
126
133
|
Generate content with multimodal inputs.
|
|
127
134
|
*/
|
|
@@ -132,6 +139,13 @@ Perform an online prediction.
|
|
|
132
139
|
*/
|
|
133
140
|
await gapi.client.aiplatform.endpoints.predict({endpoint: 'endpoint'});
|
|
134
141
|
|
|
142
|
+
/*
|
|
143
|
+
|
|
144
|
+
*/
|
|
145
|
+
await gapi.client.aiplatform.endpoints.predictLongRunning({
|
|
146
|
+
endpoint: 'endpoint',
|
|
147
|
+
});
|
|
148
|
+
|
|
135
149
|
/*
|
|
136
150
|
Generate content with multimodal inputs with streaming support.
|
|
137
151
|
*/
|
|
@@ -151,4 +165,39 @@ await gapi.client.aiplatform.projects.getCacheConfig({name: 'name'});
|
|
|
151
165
|
Updates a cache config.
|
|
152
166
|
*/
|
|
153
167
|
await gapi.client.aiplatform.projects.updateCacheConfig({name: 'name'});
|
|
168
|
+
|
|
169
|
+
/*
|
|
170
|
+
Creates a reasoning engine.
|
|
171
|
+
*/
|
|
172
|
+
await gapi.client.aiplatform.reasoningEngines.create({});
|
|
173
|
+
|
|
174
|
+
/*
|
|
175
|
+
Deletes a reasoning engine.
|
|
176
|
+
*/
|
|
177
|
+
await gapi.client.aiplatform.reasoningEngines.delete({name: 'name'});
|
|
178
|
+
|
|
179
|
+
/*
|
|
180
|
+
Gets a reasoning engine.
|
|
181
|
+
*/
|
|
182
|
+
await gapi.client.aiplatform.reasoningEngines.get({name: 'name'});
|
|
183
|
+
|
|
184
|
+
/*
|
|
185
|
+
Lists reasoning engines in a location.
|
|
186
|
+
*/
|
|
187
|
+
await gapi.client.aiplatform.reasoningEngines.list({});
|
|
188
|
+
|
|
189
|
+
/*
|
|
190
|
+
Updates a reasoning engine.
|
|
191
|
+
*/
|
|
192
|
+
await gapi.client.aiplatform.reasoningEngines.patch({name: 'name'});
|
|
193
|
+
|
|
194
|
+
/*
|
|
195
|
+
Queries using a reasoning engine.
|
|
196
|
+
*/
|
|
197
|
+
await gapi.client.aiplatform.reasoningEngines.query({name: 'name'});
|
|
198
|
+
|
|
199
|
+
/*
|
|
200
|
+
Streams queries using a reasoning engine.
|
|
201
|
+
*/
|
|
202
|
+
await gapi.client.aiplatform.reasoningEngines.streamQuery({name: 'name'});
|
|
154
203
|
```
|