@osdk/foundry.aipagents 2.31.0 → 2.32.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @osdk/foundry.aipagents
2
2
 
3
+ ## 2.32.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 0a711d1: Introduce error descriptions
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [0a711d1]
12
+ - @osdk/shared.net.platformapi@1.5.0
13
+ - @osdk/foundry.ontologies@2.32.0
14
+ - @osdk/foundry.functions@2.32.0
15
+ - @osdk/foundry.core@2.32.0
16
+
3
17
  ## 2.31.0
4
18
 
5
19
  ### Minor Changes
@@ -11,6 +11,7 @@ Try a different query or review the Agent configuration in AIP Agent Studio.
11
11
  export interface AgentIterationsExceededLimit {
12
12
  errorCode: "INVALID_ARGUMENT";
13
13
  errorName: "AgentIterationsExceededLimit";
14
+ errorDescription: "The Agent was unable to produce an answer in the set number of maximum iterations. This can happen if the Agent gets confused or stuck in a loop, or if the query is too complex. Try a different query or review the Agent configuration in AIP Agent Studio.";
14
15
  errorInstanceId: string;
15
16
  parameters: {
16
17
  agentRid: unknown;
@@ -26,6 +27,7 @@ export interface AgentIterationsExceededLimit {
26
27
  export interface AgentNotFound {
27
28
  errorCode: "NOT_FOUND";
28
29
  errorName: "AgentNotFound";
30
+ errorDescription: "The given Agent could not be found.";
29
31
  errorInstanceId: string;
30
32
  parameters: {
31
33
  agentRid: unknown;
@@ -39,6 +41,7 @@ export interface AgentNotFound {
39
41
  export interface AgentVersionNotFound {
40
42
  errorCode: "NOT_FOUND";
41
43
  errorName: "AgentVersionNotFound";
44
+ errorDescription: "The given AgentVersion could not be found.";
42
45
  errorInstanceId: string;
43
46
  parameters: {
44
47
  agentRid: unknown;
@@ -53,6 +56,7 @@ export interface AgentVersionNotFound {
53
56
  export interface BlockingContinueSessionPermissionDenied {
54
57
  errorCode: "PERMISSION_DENIED";
55
58
  errorName: "BlockingContinueSessionPermissionDenied";
59
+ errorDescription: "Could not blockingContinue the Session.";
56
60
  errorInstanceId: string;
57
61
  parameters: {
58
62
  agentRid: unknown;
@@ -75,6 +79,7 @@ conversation state.
75
79
  export interface CancelSessionFailedMessageNotInProgress {
76
80
  errorCode: "INVALID_ARGUMENT";
77
81
  errorName: "CancelSessionFailedMessageNotInProgress";
82
+ errorDescription: "Unable to cancel the requested session exchange as no in-progress exchange was found for the provided message identifier. This is expected if no exchange was initiated with the provided message identifier through a streamingContinue request, or if the exchange for this identifier has already completed and cannot be canceled, or if the exchange has already been canceled. This error can also occur if the cancellation was requested immediately after requesting the exchange through a streamingContinue request, and the exchange has not started yet. Clients should handle these errors gracefully, and can reload the session content to get the latest conversation state.";
78
83
  errorInstanceId: string;
79
84
  parameters: {
80
85
  messageId: unknown;
@@ -90,6 +95,7 @@ export interface CancelSessionFailedMessageNotInProgress {
90
95
  export interface CancelSessionPermissionDenied {
91
96
  errorCode: "PERMISSION_DENIED";
92
97
  errorName: "CancelSessionPermissionDenied";
98
+ errorDescription: "Could not cancel the Session.";
93
99
  errorInstanceId: string;
94
100
  parameters: {
95
101
  agentRid: unknown;
@@ -104,6 +110,7 @@ export interface CancelSessionPermissionDenied {
104
110
  export interface ContentNotFound {
105
111
  errorCode: "NOT_FOUND";
106
112
  errorName: "ContentNotFound";
113
+ errorDescription: "The given Content could not be found.";
107
114
  errorInstanceId: string;
108
115
  parameters: {
109
116
  agentRid: unknown;
@@ -119,6 +126,7 @@ Clients should either retry with a shorter message or create a new session and t
119
126
  export interface ContextSizeExceededLimit {
120
127
  errorCode: "INVALID_ARGUMENT";
121
128
  errorName: "ContextSizeExceededLimit";
129
+ errorDescription: "Failed to generate a response for a session because the context size of the LLM has been exceeded. Clients should either retry with a shorter message or create a new session and try re-sending the message.";
122
130
  errorInstanceId: string;
123
131
  parameters: {
124
132
  agentRid: unknown;
@@ -134,6 +142,7 @@ export interface ContextSizeExceededLimit {
134
142
  export interface CreateSessionPermissionDenied {
135
143
  errorCode: "PERMISSION_DENIED";
136
144
  errorName: "CreateSessionPermissionDenied";
145
+ errorDescription: "Could not create the Session.";
137
146
  errorInstanceId: string;
138
147
  parameters: {
139
148
  agentRid: unknown;
@@ -148,6 +157,7 @@ The function type or version may not exist or the client token does not have acc
148
157
  export interface FunctionLocatorNotFound {
149
158
  errorCode: "NOT_FOUND";
150
159
  errorName: "FunctionLocatorNotFound";
160
+ errorDescription: "The specified function locator is configured for use by the Agent but could not be found. The function type or version may not exist or the client token does not have access.";
151
161
  errorInstanceId: string;
152
162
  parameters: {
153
163
  agentRid: unknown;
@@ -165,6 +175,7 @@ Listing all sessions across all agents requires the api:aip-agents-write scope.
165
175
  export interface GetAllSessionsAgentsPermissionDenied {
166
176
  errorCode: "PERMISSION_DENIED";
167
177
  errorName: "GetAllSessionsAgentsPermissionDenied";
178
+ errorDescription: "The calling user does not have permission to list all sessions across all Agents. Listing all sessions across all agents requires the api:aip-agents-write scope.";
168
179
  errorInstanceId: string;
169
180
  parameters: {};
170
181
  }
@@ -176,6 +187,7 @@ export interface GetAllSessionsAgentsPermissionDenied {
176
187
  export interface GetRagContextForSessionPermissionDenied {
177
188
  errorCode: "PERMISSION_DENIED";
178
189
  errorName: "GetRagContextForSessionPermissionDenied";
190
+ errorDescription: "Could not ragContext the Session.";
179
191
  errorInstanceId: string;
180
192
  parameters: {
181
193
  agentRid: unknown;
@@ -190,6 +202,7 @@ export interface GetRagContextForSessionPermissionDenied {
190
202
  export interface InvalidAgentVersion {
191
203
  errorCode: "INVALID_ARGUMENT";
192
204
  errorName: "InvalidAgentVersion";
205
+ errorDescription: "The provided version string is not a valid format for an Agent version.";
193
206
  errorInstanceId: string;
194
207
  parameters: {
195
208
  agentRid: unknown;
@@ -206,6 +219,7 @@ The Agent version used for the session can be checked through the API with getSe
206
219
  export interface InvalidParameter {
207
220
  errorCode: "INVALID_ARGUMENT";
208
221
  errorName: "InvalidParameter";
222
+ errorDescription: "The provided application variable is not valid for the Agent for this session. Check the available application variables for the Agent under the parameters property, and version through the API with getAgent, or in AIP Agent Studio. The Agent version used for the session can be checked through the API with getSession.";
209
223
  errorInstanceId: string;
210
224
  parameters: {
211
225
  agentRid: unknown;
@@ -223,6 +237,7 @@ The Agent version used for the session can be checked through the API with getSe
223
237
  export interface InvalidParameterType {
224
238
  errorCode: "INVALID_ARGUMENT";
225
239
  errorName: "InvalidParameterType";
240
+ errorDescription: "The provided value does not match the expected type for the application variable configured on the Agent for this session. Check the available application variables for the Agent under the parameters property, and version through the API with getAgent, or in AIP Agent Studio. The Agent version used for the session can be checked through the API with getSession.";
226
241
  errorInstanceId: string;
227
242
  parameters: {
228
243
  agentRid: unknown;
@@ -240,6 +255,7 @@ export interface InvalidParameterType {
240
255
  export interface ListSessionsForAgentsPermissionDenied {
241
256
  errorCode: "PERMISSION_DENIED";
242
257
  errorName: "ListSessionsForAgentsPermissionDenied";
258
+ errorDescription: "Could not allSessions the Agent.";
243
259
  errorInstanceId: string;
244
260
  parameters: {};
245
261
  }
@@ -252,6 +268,7 @@ Try publishing the Agent in AIP Agent Studio to use the latest published version
252
268
  export interface NoPublishedAgentVersion {
253
269
  errorCode: "INVALID_ARGUMENT";
254
270
  errorName: "NoPublishedAgentVersion";
271
+ errorDescription: "Failed to retrieve the latest published version of the Agent because the Agent has no published versions. Try publishing the Agent in AIP Agent Studio to use the latest published version, or specify the version of the Agent to use.";
255
272
  errorInstanceId: string;
256
273
  parameters: {
257
274
  agentRid: unknown;
@@ -267,6 +284,7 @@ Object types can be checked by listing available object types through the API, o
267
284
  export interface ObjectTypeIdsNotFound {
268
285
  errorCode: "NOT_FOUND";
269
286
  errorName: "ObjectTypeIdsNotFound";
287
+ errorDescription: "Some object types are configured for use by the Agent but could not be found. The object types either do not exist or the client token does not have access. Object types can be checked by listing available object types through the API, or searching in Ontology Manager.";
270
288
  errorInstanceId: string;
271
289
  parameters: {
272
290
  agentRid: unknown;
@@ -284,6 +302,7 @@ Object types can be checked by listing available object types through the API, o
284
302
  export interface ObjectTypeRidsNotFound {
285
303
  errorCode: "NOT_FOUND";
286
304
  errorName: "ObjectTypeRidsNotFound";
305
+ errorDescription: "Some object types are configured for use by the Agent but could not be found. The object types either do not exist or the client token does not have access. Object types can be checked by listing available object types through the API, or searching in Ontology Manager.";
287
306
  errorInstanceId: string;
288
307
  parameters: {
289
308
  agentRid: unknown;
@@ -301,6 +320,7 @@ Object types and their link types can be checked by listing available object/lin
301
320
  export interface OntologyEntitiesNotFound {
302
321
  errorCode: "NOT_FOUND";
303
322
  errorName: "OntologyEntitiesNotFound";
323
+ errorDescription: "Some ontology types are configured for use by the Agent but could not be found. The types either do not exist or the client token does not have access. Object types and their link types can be checked by listing available object/link types through the API, or searching in Ontology Manager.";
304
324
  errorInstanceId: string;
305
325
  parameters: {
306
326
  agentRid: unknown;
@@ -317,6 +337,7 @@ export interface OntologyEntitiesNotFound {
317
337
  export interface RateLimitExceeded {
318
338
  errorCode: "CUSTOM_CLIENT";
319
339
  errorName: "RateLimitExceeded";
340
+ errorDescription: "Failed to generate a response as the model rate limits were exceeded. Clients should wait and retry.";
320
341
  errorInstanceId: string;
321
342
  parameters: {
322
343
  agentRid: unknown;
@@ -332,6 +353,7 @@ export interface RateLimitExceeded {
332
353
  export interface SessionExecutionFailed {
333
354
  errorCode: "INTERNAL";
334
355
  errorName: "SessionExecutionFailed";
356
+ errorDescription: "Failed to generate a response for a session due to an unexpected error.";
335
357
  errorInstanceId: string;
336
358
  parameters: {
337
359
  agentRid: unknown;
@@ -348,6 +370,7 @@ export interface SessionExecutionFailed {
348
370
  export interface SessionNotFound {
349
371
  errorCode: "NOT_FOUND";
350
372
  errorName: "SessionNotFound";
373
+ errorDescription: "The given Session could not be found.";
351
374
  errorInstanceId: string;
352
375
  parameters: {
353
376
  agentRid: unknown;
@@ -362,6 +385,7 @@ export interface SessionNotFound {
362
385
  export interface SessionTraceIdAlreadyExists {
363
386
  errorCode: "INVALID_ARGUMENT";
364
387
  errorName: "SessionTraceIdAlreadyExists";
388
+ errorDescription: "The provided trace ID already exists for the session and cannot be reused.";
365
389
  errorInstanceId: string;
366
390
  parameters: {
367
391
  agentRid: unknown;
@@ -377,6 +401,7 @@ export interface SessionTraceIdAlreadyExists {
377
401
  export interface SessionTraceNotFound {
378
402
  errorCode: "NOT_FOUND";
379
403
  errorName: "SessionTraceNotFound";
404
+ errorDescription: "The given SessionTrace could not be found.";
380
405
  errorInstanceId: string;
381
406
  parameters: {
382
407
  sessionTraceId: unknown;
@@ -392,6 +417,7 @@ export interface SessionTraceNotFound {
392
417
  export interface StreamingContinueSessionPermissionDenied {
393
418
  errorCode: "PERMISSION_DENIED";
394
419
  errorName: "StreamingContinueSessionPermissionDenied";
420
+ errorDescription: "Could not streamingContinue the Session.";
395
421
  errorInstanceId: string;
396
422
  parameters: {
397
423
  agentRid: unknown;
@@ -406,6 +432,7 @@ export interface StreamingContinueSessionPermissionDenied {
406
432
  export interface UpdateSessionTitlePermissionDenied {
407
433
  errorCode: "PERMISSION_DENIED";
408
434
  errorName: "UpdateSessionTitlePermissionDenied";
435
+ errorDescription: "Could not updateTitle the Session.";
409
436
  errorInstanceId: string;
410
437
  parameters: {
411
438
  agentRid: unknown;
@@ -1 +1 @@
1
- {"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"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"}
@@ -11,6 +11,7 @@ Try a different query or review the Agent configuration in AIP Agent Studio.
11
11
  export interface AgentIterationsExceededLimit {
12
12
  errorCode: "INVALID_ARGUMENT";
13
13
  errorName: "AgentIterationsExceededLimit";
14
+ errorDescription: "The Agent was unable to produce an answer in the set number of maximum iterations. This can happen if the Agent gets confused or stuck in a loop, or if the query is too complex. Try a different query or review the Agent configuration in AIP Agent Studio.";
14
15
  errorInstanceId: string;
15
16
  parameters: {
16
17
  agentRid: unknown;
@@ -26,6 +27,7 @@ export interface AgentIterationsExceededLimit {
26
27
  export interface AgentNotFound {
27
28
  errorCode: "NOT_FOUND";
28
29
  errorName: "AgentNotFound";
30
+ errorDescription: "The given Agent could not be found.";
29
31
  errorInstanceId: string;
30
32
  parameters: {
31
33
  agentRid: unknown;
@@ -39,6 +41,7 @@ export interface AgentNotFound {
39
41
  export interface AgentVersionNotFound {
40
42
  errorCode: "NOT_FOUND";
41
43
  errorName: "AgentVersionNotFound";
44
+ errorDescription: "The given AgentVersion could not be found.";
42
45
  errorInstanceId: string;
43
46
  parameters: {
44
47
  agentRid: unknown;
@@ -53,6 +56,7 @@ export interface AgentVersionNotFound {
53
56
  export interface BlockingContinueSessionPermissionDenied {
54
57
  errorCode: "PERMISSION_DENIED";
55
58
  errorName: "BlockingContinueSessionPermissionDenied";
59
+ errorDescription: "Could not blockingContinue the Session.";
56
60
  errorInstanceId: string;
57
61
  parameters: {
58
62
  agentRid: unknown;
@@ -75,6 +79,7 @@ conversation state.
75
79
  export interface CancelSessionFailedMessageNotInProgress {
76
80
  errorCode: "INVALID_ARGUMENT";
77
81
  errorName: "CancelSessionFailedMessageNotInProgress";
82
+ errorDescription: "Unable to cancel the requested session exchange as no in-progress exchange was found for the provided message identifier. This is expected if no exchange was initiated with the provided message identifier through a streamingContinue request, or if the exchange for this identifier has already completed and cannot be canceled, or if the exchange has already been canceled. This error can also occur if the cancellation was requested immediately after requesting the exchange through a streamingContinue request, and the exchange has not started yet. Clients should handle these errors gracefully, and can reload the session content to get the latest conversation state.";
78
83
  errorInstanceId: string;
79
84
  parameters: {
80
85
  messageId: unknown;
@@ -90,6 +95,7 @@ export interface CancelSessionFailedMessageNotInProgress {
90
95
  export interface CancelSessionPermissionDenied {
91
96
  errorCode: "PERMISSION_DENIED";
92
97
  errorName: "CancelSessionPermissionDenied";
98
+ errorDescription: "Could not cancel the Session.";
93
99
  errorInstanceId: string;
94
100
  parameters: {
95
101
  agentRid: unknown;
@@ -104,6 +110,7 @@ export interface CancelSessionPermissionDenied {
104
110
  export interface ContentNotFound {
105
111
  errorCode: "NOT_FOUND";
106
112
  errorName: "ContentNotFound";
113
+ errorDescription: "The given Content could not be found.";
107
114
  errorInstanceId: string;
108
115
  parameters: {
109
116
  agentRid: unknown;
@@ -119,6 +126,7 @@ Clients should either retry with a shorter message or create a new session and t
119
126
  export interface ContextSizeExceededLimit {
120
127
  errorCode: "INVALID_ARGUMENT";
121
128
  errorName: "ContextSizeExceededLimit";
129
+ errorDescription: "Failed to generate a response for a session because the context size of the LLM has been exceeded. Clients should either retry with a shorter message or create a new session and try re-sending the message.";
122
130
  errorInstanceId: string;
123
131
  parameters: {
124
132
  agentRid: unknown;
@@ -134,6 +142,7 @@ export interface ContextSizeExceededLimit {
134
142
  export interface CreateSessionPermissionDenied {
135
143
  errorCode: "PERMISSION_DENIED";
136
144
  errorName: "CreateSessionPermissionDenied";
145
+ errorDescription: "Could not create the Session.";
137
146
  errorInstanceId: string;
138
147
  parameters: {
139
148
  agentRid: unknown;
@@ -148,6 +157,7 @@ The function type or version may not exist or the client token does not have acc
148
157
  export interface FunctionLocatorNotFound {
149
158
  errorCode: "NOT_FOUND";
150
159
  errorName: "FunctionLocatorNotFound";
160
+ errorDescription: "The specified function locator is configured for use by the Agent but could not be found. The function type or version may not exist or the client token does not have access.";
151
161
  errorInstanceId: string;
152
162
  parameters: {
153
163
  agentRid: unknown;
@@ -165,6 +175,7 @@ Listing all sessions across all agents requires the api:aip-agents-write scope.
165
175
  export interface GetAllSessionsAgentsPermissionDenied {
166
176
  errorCode: "PERMISSION_DENIED";
167
177
  errorName: "GetAllSessionsAgentsPermissionDenied";
178
+ errorDescription: "The calling user does not have permission to list all sessions across all Agents. Listing all sessions across all agents requires the api:aip-agents-write scope.";
168
179
  errorInstanceId: string;
169
180
  parameters: {};
170
181
  }
@@ -176,6 +187,7 @@ export interface GetAllSessionsAgentsPermissionDenied {
176
187
  export interface GetRagContextForSessionPermissionDenied {
177
188
  errorCode: "PERMISSION_DENIED";
178
189
  errorName: "GetRagContextForSessionPermissionDenied";
190
+ errorDescription: "Could not ragContext the Session.";
179
191
  errorInstanceId: string;
180
192
  parameters: {
181
193
  agentRid: unknown;
@@ -190,6 +202,7 @@ export interface GetRagContextForSessionPermissionDenied {
190
202
  export interface InvalidAgentVersion {
191
203
  errorCode: "INVALID_ARGUMENT";
192
204
  errorName: "InvalidAgentVersion";
205
+ errorDescription: "The provided version string is not a valid format for an Agent version.";
193
206
  errorInstanceId: string;
194
207
  parameters: {
195
208
  agentRid: unknown;
@@ -206,6 +219,7 @@ The Agent version used for the session can be checked through the API with getSe
206
219
  export interface InvalidParameter {
207
220
  errorCode: "INVALID_ARGUMENT";
208
221
  errorName: "InvalidParameter";
222
+ errorDescription: "The provided application variable is not valid for the Agent for this session. Check the available application variables for the Agent under the parameters property, and version through the API with getAgent, or in AIP Agent Studio. The Agent version used for the session can be checked through the API with getSession.";
209
223
  errorInstanceId: string;
210
224
  parameters: {
211
225
  agentRid: unknown;
@@ -223,6 +237,7 @@ The Agent version used for the session can be checked through the API with getSe
223
237
  export interface InvalidParameterType {
224
238
  errorCode: "INVALID_ARGUMENT";
225
239
  errorName: "InvalidParameterType";
240
+ errorDescription: "The provided value does not match the expected type for the application variable configured on the Agent for this session. Check the available application variables for the Agent under the parameters property, and version through the API with getAgent, or in AIP Agent Studio. The Agent version used for the session can be checked through the API with getSession.";
226
241
  errorInstanceId: string;
227
242
  parameters: {
228
243
  agentRid: unknown;
@@ -240,6 +255,7 @@ export interface InvalidParameterType {
240
255
  export interface ListSessionsForAgentsPermissionDenied {
241
256
  errorCode: "PERMISSION_DENIED";
242
257
  errorName: "ListSessionsForAgentsPermissionDenied";
258
+ errorDescription: "Could not allSessions the Agent.";
243
259
  errorInstanceId: string;
244
260
  parameters: {};
245
261
  }
@@ -252,6 +268,7 @@ Try publishing the Agent in AIP Agent Studio to use the latest published version
252
268
  export interface NoPublishedAgentVersion {
253
269
  errorCode: "INVALID_ARGUMENT";
254
270
  errorName: "NoPublishedAgentVersion";
271
+ errorDescription: "Failed to retrieve the latest published version of the Agent because the Agent has no published versions. Try publishing the Agent in AIP Agent Studio to use the latest published version, or specify the version of the Agent to use.";
255
272
  errorInstanceId: string;
256
273
  parameters: {
257
274
  agentRid: unknown;
@@ -267,6 +284,7 @@ Object types can be checked by listing available object types through the API, o
267
284
  export interface ObjectTypeIdsNotFound {
268
285
  errorCode: "NOT_FOUND";
269
286
  errorName: "ObjectTypeIdsNotFound";
287
+ errorDescription: "Some object types are configured for use by the Agent but could not be found. The object types either do not exist or the client token does not have access. Object types can be checked by listing available object types through the API, or searching in Ontology Manager.";
270
288
  errorInstanceId: string;
271
289
  parameters: {
272
290
  agentRid: unknown;
@@ -284,6 +302,7 @@ Object types can be checked by listing available object types through the API, o
284
302
  export interface ObjectTypeRidsNotFound {
285
303
  errorCode: "NOT_FOUND";
286
304
  errorName: "ObjectTypeRidsNotFound";
305
+ errorDescription: "Some object types are configured for use by the Agent but could not be found. The object types either do not exist or the client token does not have access. Object types can be checked by listing available object types through the API, or searching in Ontology Manager.";
287
306
  errorInstanceId: string;
288
307
  parameters: {
289
308
  agentRid: unknown;
@@ -301,6 +320,7 @@ Object types and their link types can be checked by listing available object/lin
301
320
  export interface OntologyEntitiesNotFound {
302
321
  errorCode: "NOT_FOUND";
303
322
  errorName: "OntologyEntitiesNotFound";
323
+ errorDescription: "Some ontology types are configured for use by the Agent but could not be found. The types either do not exist or the client token does not have access. Object types and their link types can be checked by listing available object/link types through the API, or searching in Ontology Manager.";
304
324
  errorInstanceId: string;
305
325
  parameters: {
306
326
  agentRid: unknown;
@@ -317,6 +337,7 @@ export interface OntologyEntitiesNotFound {
317
337
  export interface RateLimitExceeded {
318
338
  errorCode: "CUSTOM_CLIENT";
319
339
  errorName: "RateLimitExceeded";
340
+ errorDescription: "Failed to generate a response as the model rate limits were exceeded. Clients should wait and retry.";
320
341
  errorInstanceId: string;
321
342
  parameters: {
322
343
  agentRid: unknown;
@@ -332,6 +353,7 @@ export interface RateLimitExceeded {
332
353
  export interface SessionExecutionFailed {
333
354
  errorCode: "INTERNAL";
334
355
  errorName: "SessionExecutionFailed";
356
+ errorDescription: "Failed to generate a response for a session due to an unexpected error.";
335
357
  errorInstanceId: string;
336
358
  parameters: {
337
359
  agentRid: unknown;
@@ -348,6 +370,7 @@ export interface SessionExecutionFailed {
348
370
  export interface SessionNotFound {
349
371
  errorCode: "NOT_FOUND";
350
372
  errorName: "SessionNotFound";
373
+ errorDescription: "The given Session could not be found.";
351
374
  errorInstanceId: string;
352
375
  parameters: {
353
376
  agentRid: unknown;
@@ -362,6 +385,7 @@ export interface SessionNotFound {
362
385
  export interface SessionTraceIdAlreadyExists {
363
386
  errorCode: "INVALID_ARGUMENT";
364
387
  errorName: "SessionTraceIdAlreadyExists";
388
+ errorDescription: "The provided trace ID already exists for the session and cannot be reused.";
365
389
  errorInstanceId: string;
366
390
  parameters: {
367
391
  agentRid: unknown;
@@ -377,6 +401,7 @@ export interface SessionTraceIdAlreadyExists {
377
401
  export interface SessionTraceNotFound {
378
402
  errorCode: "NOT_FOUND";
379
403
  errorName: "SessionTraceNotFound";
404
+ errorDescription: "The given SessionTrace could not be found.";
380
405
  errorInstanceId: string;
381
406
  parameters: {
382
407
  sessionTraceId: unknown;
@@ -392,6 +417,7 @@ export interface SessionTraceNotFound {
392
417
  export interface StreamingContinueSessionPermissionDenied {
393
418
  errorCode: "PERMISSION_DENIED";
394
419
  errorName: "StreamingContinueSessionPermissionDenied";
420
+ errorDescription: "Could not streamingContinue the Session.";
395
421
  errorInstanceId: string;
396
422
  parameters: {
397
423
  agentRid: unknown;
@@ -406,6 +432,7 @@ export interface StreamingContinueSessionPermissionDenied {
406
432
  export interface UpdateSessionTitlePermissionDenied {
407
433
  errorCode: "PERMISSION_DENIED";
408
434
  errorName: "UpdateSessionTitlePermissionDenied";
435
+ errorDescription: "Could not updateTitle the Session.";
409
436
  errorInstanceId: string;
410
437
  parameters: {
411
438
  agentRid: unknown;
@@ -1 +1 @@
1
- {"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/foundry.aipagents",
3
- "version": "2.31.0",
3
+ "version": "2.32.0",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -21,10 +21,10 @@
21
21
  "dependencies": {
22
22
  "@osdk/shared.client": "^1.0.1",
23
23
  "@osdk/shared.client2": "^1.0.0",
24
- "@osdk/foundry.core": "2.31.0",
25
- "@osdk/foundry.functions": "2.31.0",
26
- "@osdk/shared.net.platformapi": "~1.4.0",
27
- "@osdk/foundry.ontologies": "2.31.0"
24
+ "@osdk/foundry.core": "2.32.0",
25
+ "@osdk/shared.net.platformapi": "~1.5.0",
26
+ "@osdk/foundry.functions": "2.32.0",
27
+ "@osdk/foundry.ontologies": "2.32.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "typescript": "^5.5.4",