@osdk/foundry.aipagents 2.3.0 → 2.5.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 +25 -0
- package/build/browser/_components.d.ts +35 -40
- package/build/browser/_components.d.ts.map +1 -1
- package/build/browser/_errors.d.ts +111 -3
- package/build/browser/_errors.d.ts.map +1 -1
- package/build/browser/index.d.ts +2 -2
- package/build/browser/index.d.ts.map +1 -1
- package/build/browser/public/Agent.d.ts +5 -6
- package/build/browser/public/Agent.d.ts.map +1 -1
- package/build/browser/public/Agent.js +3 -4
- package/build/browser/public/Agent.js.map +1 -1
- package/build/browser/public/AgentVersion.d.ts +2 -2
- package/build/browser/public/AgentVersion.js +2 -2
- package/build/browser/public/AgentVersion.js.map +1 -1
- package/build/browser/public/Content.d.ts +1 -1
- package/build/browser/public/Content.js +1 -1
- package/build/browser/public/Content.js.map +1 -1
- package/build/browser/public/Session.d.ts +21 -27
- package/build/browser/public/Session.d.ts.map +1 -1
- package/build/browser/public/Session.js +21 -27
- package/build/browser/public/Session.js.map +1 -1
- package/build/esm/_components.d.ts +35 -40
- package/build/esm/_components.d.ts.map +1 -1
- package/build/esm/_errors.d.ts +111 -3
- package/build/esm/_errors.d.ts.map +1 -1
- package/build/esm/index.d.ts +2 -2
- package/build/esm/index.d.ts.map +1 -1
- package/build/esm/public/Agent.d.ts +5 -6
- package/build/esm/public/Agent.d.ts.map +1 -1
- package/build/esm/public/Agent.js +3 -4
- package/build/esm/public/Agent.js.map +1 -1
- package/build/esm/public/AgentVersion.d.ts +2 -2
- package/build/esm/public/AgentVersion.js +2 -2
- package/build/esm/public/AgentVersion.js.map +1 -1
- package/build/esm/public/Content.d.ts +1 -1
- package/build/esm/public/Content.js +1 -1
- package/build/esm/public/Content.js.map +1 -1
- package/build/esm/public/Session.d.ts +21 -27
- package/build/esm/public/Session.d.ts.map +1 -1
- package/build/esm/public/Session.js +21 -27
- package/build/esm/public/Session.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @osdk/foundry.aipagents
|
|
2
2
|
|
|
3
|
+
## 2.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 92ceb52: Using new version of shared platform API. Also releasing 1.0 of that package.
|
|
8
|
+
- c5eab42: Updating apis to include new timeseries types.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies [92ceb52]
|
|
13
|
+
- Updated dependencies [c5eab42]
|
|
14
|
+
- @osdk/shared.net.platformapi@1.1.0
|
|
15
|
+
- @osdk/foundry.core@2.5.0
|
|
16
|
+
|
|
17
|
+
## 2.4.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- 4720b1d: Update platform APIs with new APIs, including Runtime Derived Property API's
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies [4720b1d]
|
|
26
|
+
- @osdk/foundry.core@2.4.0
|
|
27
|
+
|
|
3
28
|
## 2.3.0
|
|
4
29
|
|
|
5
30
|
### Minor Changes
|
|
@@ -29,17 +29,16 @@ export interface AgentMetadata {
|
|
|
29
29
|
suggestedPrompts: Array<string>;
|
|
30
30
|
}
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* An RID identifying an AIP Agent created in AIP Agent Studio.
|
|
33
33
|
*
|
|
34
34
|
* Log Safety: SAFE
|
|
35
35
|
*/
|
|
36
36
|
export type AgentRid = LooselyBrandedString<"AgentRid">;
|
|
37
37
|
/**
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
*/
|
|
38
|
+
* Context retrieved from an Agent's configured context data sources which was relevant to the supplied user message.
|
|
39
|
+
*
|
|
40
|
+
* Log Safety: SAFE
|
|
41
|
+
*/
|
|
43
42
|
export interface AgentSessionRagContextResponse {
|
|
44
43
|
objectContexts: Array<ObjectContext>;
|
|
45
44
|
}
|
|
@@ -60,7 +59,7 @@ export interface AgentVersionDetails {
|
|
|
60
59
|
minor: number;
|
|
61
60
|
}
|
|
62
61
|
/**
|
|
63
|
-
* The semantic version of the Agent, formatted as ".".
|
|
62
|
+
* The semantic version of the Agent, formatted as "majorVersion.minorVersion".
|
|
64
63
|
*
|
|
65
64
|
* Log Safety: SAFE
|
|
66
65
|
*/
|
|
@@ -72,7 +71,7 @@ Sessions are returned in order of most recently updated first.
|
|
|
72
71
|
* Log Safety: UNSAFE
|
|
73
72
|
*/
|
|
74
73
|
export interface AgentsSessionsPage {
|
|
75
|
-
nextPageToken?: PageToken;
|
|
74
|
+
nextPageToken?: _Core.PageToken;
|
|
76
75
|
data: Array<Session>;
|
|
77
76
|
}
|
|
78
77
|
/**
|
|
@@ -109,11 +108,10 @@ export interface CreateSessionRequest {
|
|
|
109
108
|
agentVersion?: AgentVersionString;
|
|
110
109
|
}
|
|
111
110
|
/**
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
*/
|
|
111
|
+
* Custom retrieved context to provide to an Agent for continuing a session.
|
|
112
|
+
*
|
|
113
|
+
* Log Safety: UNSAFE
|
|
114
|
+
*/
|
|
117
115
|
export type InputContext = {
|
|
118
116
|
type: "objectContext";
|
|
119
117
|
} & ObjectContext;
|
|
@@ -139,11 +137,10 @@ This can be used by clients to cancel a streamed exchange.
|
|
|
139
137
|
*/
|
|
140
138
|
export type MessageId = string;
|
|
141
139
|
/**
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
*/
|
|
140
|
+
* Details of relevant retrieved object instances for a user's message to include as additional context in the prompt to the Agent.
|
|
141
|
+
*
|
|
142
|
+
* Log Safety: SAFE
|
|
143
|
+
*/
|
|
147
144
|
export interface ObjectContext {
|
|
148
145
|
objectRids: Array<_Core.ObjectRid>;
|
|
149
146
|
propertyTypeRids: Array<_Core.PropertyTypeRid>;
|
|
@@ -155,23 +152,20 @@ export interface ObjectSetParameter {
|
|
|
155
152
|
expectedObjectTypes: Array<_Core.ObjectTypeId>;
|
|
156
153
|
}
|
|
157
154
|
/**
|
|
158
|
-
*
|
|
159
|
-
*/
|
|
160
|
-
export interface ObjectSetParameterValueUpdate {
|
|
161
|
-
value: _Core.ObjectSetRid;
|
|
162
|
-
}
|
|
163
|
-
/**
|
|
164
|
-
* The maximum number of results to return in a single page.
|
|
155
|
+
* A value passed for ObjectSetParameter parameter types.
|
|
165
156
|
*
|
|
166
|
-
* Log Safety:
|
|
157
|
+
* Log Safety: UNSAFE
|
|
167
158
|
*/
|
|
168
|
-
export
|
|
159
|
+
export interface ObjectSetParameterValue {
|
|
160
|
+
objectSet: _Core.ObjectSet;
|
|
161
|
+
ontology: _Core.OntologyIdentifier;
|
|
162
|
+
}
|
|
169
163
|
/**
|
|
170
|
-
* The token to use to retrieve a page of results from.
|
|
171
|
-
*
|
|
172
164
|
* Log Safety: SAFE
|
|
173
165
|
*/
|
|
174
|
-
export
|
|
166
|
+
export interface ObjectSetParameterValueUpdate {
|
|
167
|
+
value: _Core.ObjectSetRid;
|
|
168
|
+
}
|
|
175
169
|
/**
|
|
176
170
|
* A parameter configured for an Agent in AIP Agent Studio.
|
|
177
171
|
*
|
|
@@ -204,18 +198,19 @@ export type ParameterType = ({
|
|
|
204
198
|
type: "objectSet";
|
|
205
199
|
} & ObjectSetParameter);
|
|
206
200
|
/**
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
export type ParameterValue = {
|
|
201
|
+
* The value provided for a parameter configured on an Agent.
|
|
202
|
+
*
|
|
203
|
+
* Log Safety: UNSAFE
|
|
204
|
+
*/
|
|
205
|
+
export type ParameterValue = ({
|
|
213
206
|
type: "string";
|
|
214
|
-
} & StringParameterValue
|
|
207
|
+
} & StringParameterValue) | ({
|
|
208
|
+
type: "objectSet";
|
|
209
|
+
} & ObjectSetParameterValue);
|
|
215
210
|
/**
|
|
216
|
-
* A value update for a parameter which was
|
|
217
|
-
|
|
218
|
-
ObjectSetParameter parameter types, this will be a Resource Identifier (RID) for the updated object set.
|
|
211
|
+
* A value update for a parameter which was generated by the Agent.
|
|
212
|
+
For StringParameter parameter types, this will be the updated string value.
|
|
213
|
+
For ObjectSetParameter parameter types, this will be a Resource Identifier (RID) for the updated object set.
|
|
219
214
|
*
|
|
220
215
|
* Log Safety: UNSAFE
|
|
221
216
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AAEjD,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC;AAEF;;GAEG;AACH,MAAM,WAAW,KAAK;IACpB,GAAG,EAAE,QAAQ,CAAC;IACd,OAAO,EAAE,kBAAkB,CAAC;IAC5B,QAAQ,EAAE,aAAa,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC,WAAW,EAAE,SAAS,CAAC,CAAC;CAC5C;AAED;;;;GAIG;AACH,MAAM,MAAM,qBAAqB,GAAG,oBAAoB,CACtD,uBAAuB,CACxB,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,aAAa;IAC5B,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,gBAAgB,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CACjC;AAED;;;;GAIG;AACH,MAAM,MAAM,QAAQ,GAAG,oBAAoB,CAAC,UAAU,CAAC,CAAC;AAExD
|
|
1
|
+
{"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AAEjD,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC;AAEF;;GAEG;AACH,MAAM,WAAW,KAAK;IACpB,GAAG,EAAE,QAAQ,CAAC;IACd,OAAO,EAAE,kBAAkB,CAAC;IAC5B,QAAQ,EAAE,aAAa,CAAC;IACxB,UAAU,EAAE,MAAM,CAAC,WAAW,EAAE,SAAS,CAAC,CAAC;CAC5C;AAED;;;;GAIG;AACH,MAAM,MAAM,qBAAqB,GAAG,oBAAoB,CACtD,uBAAuB,CACxB,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,aAAa;IAC5B,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,gBAAgB,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CACjC;AAED;;;;GAIG;AACH,MAAM,MAAM,QAAQ,GAAG,oBAAoB,CAAC,UAAU,CAAC,CAAC;AAExD;;;;GAIG;AACH,MAAM,WAAW,8BAA8B;IAC7C,cAAc,EAAE,KAAK,CAAC,aAAa,CAAC,CAAC;CACtC;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,MAAM,EAAE,kBAAkB,CAAC;IAC3B,OAAO,EAAE,mBAAmB,CAAC;CAC9B;AAED;;;;GAIG;AACH,MAAM,WAAW,mBAAmB;IAClC,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;;;GAIG;AACH,MAAM,MAAM,kBAAkB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC,CAAC;AAE5E;;;;;KAKK;AACL,MAAM,WAAW,kBAAkB;IACjC,aAAa,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAChC,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;CACtB;AAED;;GAEG;AACH,MAAM,WAAW,8BAA8B;IAC7C,SAAS,EAAE,aAAa,CAAC;IACzB,eAAe,EAAE,MAAM,CAAC,WAAW,EAAE,cAAc,CAAC,CAAC;IACrD,gBAAgB,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;CACxC;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,SAAS,EAAE,SAAS,CAAC;IACrB,QAAQ,CAAC,EAAE,qBAAqB,CAAC;CAClC;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,MAAM,CAAC,EAAE,qBAAqB,CAAC;CAChC;AAED;;GAEG;AACH,MAAM,WAAW,OAAO;IACtB,SAAS,EAAE,KAAK,CAAC,eAAe,CAAC,CAAC;CACnC;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,YAAY,CAAC,EAAE,kBAAkB,CAAC;CACnC;AAED;;;;GAIG;AACH,MAAM,MAAM,YAAY,GAAG;IAAE,IAAI,EAAE,eAAe,CAAA;CAAE,GAAG,aAAa,CAAC;AAErE;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACxC,IAAI,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;IAC1B,aAAa,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CACjC;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;IACrB,aAAa,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CACjC;AAED;;;;;KAKK;AACL,MAAM,MAAM,SAAS,GAAG,MAAM,CAAC;AAE/B;;;;GAIG;AACH,MAAM,WAAW,aAAa;IAC5B,UAAU,EAAE,KAAK,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC;IACnC,gBAAgB,EAAE,KAAK,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC;CAChD;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,mBAAmB,EAAE,KAAK,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;CAChD;AAED;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACtC,SAAS,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,QAAQ,EAAE,KAAK,CAAC,kBAAkB,CAAC;CACpC;AAED;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC5C,KAAK,EAAE,KAAK,CAAC,YAAY,CAAC;CAC3B;AAED;;;;GAIG;AACH,MAAM,WAAW,SAAS;IACxB,aAAa,EAAE,aAAa,CAAC;IAC7B,MAAM,EAAE,mBAAmB,CAAC;IAC5B,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;;;KAKK;AACL,MAAM,MAAM,mBAAmB,GAAG,WAAW,GAAG,YAAY,CAAC;AAE7D;;;;GAIG;AACH,MAAM,MAAM,WAAW,GAAG,oBAAoB,CAAC,aAAa,CAAC,CAAC;AAE9D;;GAEG;AACH,MAAM,MAAM,aAAa,GACrB,CAAC;IAAE,IAAI,EAAE,QAAQ,CAAA;CAAE,GAAG,eAAe,CAAC,GACtC,CAAC;IAAE,IAAI,EAAE,WAAW,CAAA;CAAE,GAAG,kBAAkB,CAAC,CAAC;AAEjD;;;;GAIG;AACH,MAAM,MAAM,cAAc,GACtB,CAAC;IAAE,IAAI,EAAE,QAAQ,CAAA;CAAE,GAAG,oBAAoB,CAAC,GAC3C,CAAC;IAAE,IAAI,EAAE,WAAW,CAAA;CAAE,GAAG,uBAAuB,CAAC,CAAC;AAEtD;;;;;;KAMK;AACL,MAAM,MAAM,oBAAoB,GAC5B,CAAC;IAAE,IAAI,EAAE,QAAQ,CAAA;CAAE,GAAG,oBAAoB,CAAC,GAC3C,CAAC;IAAE,IAAI,EAAE,WAAW,CAAA;CAAE,GAAG,6BAA6B,CAAC,CAAC;AAE5D;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACvC,SAAS,EAAE,aAAa,CAAC;IACzB,eAAe,EAAE,MAAM,CAAC,WAAW,EAAE,cAAc,CAAC,CAAC;CACtD;AAED;;GAEG;AACH,MAAM,WAAW,OAAO;IACtB,GAAG,EAAE,UAAU,CAAC;IAChB,QAAQ,EAAE,eAAe,CAAC;IAC1B,QAAQ,EAAE,QAAQ,CAAC;IACnB,YAAY,EAAE,kBAAkB,CAAC;CAClC;AAED;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC9B,SAAS,EAAE,aAAa,CAAC;IACzB,QAAQ,CAAC,EAAE,uBAAuB,CAAC;IACnC,MAAM,EAAE,qBAAqB,CAAC;CAC/B;AAED;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACtC,cAAc,EAAE,KAAK,CAAC,aAAa,CAAC,CAAC;CACtC;AAED;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IACpC,qBAAqB,EAAE,qBAAqB,CAAC;IAC7C,gBAAgB,EAAE,MAAM,CAAC,WAAW,EAAE,oBAAoB,CAAC,CAAC;IAC5D,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,iBAAiB,EAAE,OAAO,CAAC;CAC5B;AAED;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,oBAAoB,EAAE,MAAM,CAAC;CAC9B;AAED;;;;GAIG;AACH,MAAM,MAAM,UAAU,GAAG,oBAAoB,CAAC,YAAY,CAAC,CAAC;AAE5D;;GAEG;AACH,MAAM,WAAW,+BAA+B;IAC9C,SAAS,EAAE,aAAa,CAAC;IACzB,eAAe,EAAE,MAAM,CAAC,WAAW,EAAE,cAAc,CAAC,CAAC;IACrD,gBAAgB,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;IACvC,SAAS,CAAC,EAAE,SAAS,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACnC,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;CACd"}
|
|
@@ -124,9 +124,8 @@ export interface ContentNotFound {
|
|
|
124
124
|
};
|
|
125
125
|
}
|
|
126
126
|
/**
|
|
127
|
-
* Failed to generate a response for a session because the context size of the LLM has been
|
|
128
|
-
|
|
129
|
-
and try re-sending the message.
|
|
127
|
+
* Failed to generate a response for a session because the context size of the LLM has been exceeded.
|
|
128
|
+
Clients should either retry with a shorter message or create a new session and try re-sending the message.
|
|
130
129
|
|
|
131
130
|
*
|
|
132
131
|
* Log Safety: UNSAFE
|
|
@@ -154,6 +153,24 @@ export interface CreateSessionPermissionDenied {
|
|
|
154
153
|
agentRid: unknown;
|
|
155
154
|
};
|
|
156
155
|
}
|
|
156
|
+
/**
|
|
157
|
+
* The specified function locator is configured for use by the Agent but could not be found.
|
|
158
|
+
The function type or version may not exist or the client token does not have access.
|
|
159
|
+
|
|
160
|
+
*
|
|
161
|
+
* Log Safety: UNSAFE
|
|
162
|
+
*/
|
|
163
|
+
export interface FunctionLocatorNotFound {
|
|
164
|
+
errorCode: "NOT_FOUND";
|
|
165
|
+
errorName: "FunctionLocatorNotFound";
|
|
166
|
+
errorInstanceId: string;
|
|
167
|
+
parameters: {
|
|
168
|
+
agentRid: unknown;
|
|
169
|
+
sessionRid: unknown;
|
|
170
|
+
functionRid: unknown;
|
|
171
|
+
functionVersion: unknown;
|
|
172
|
+
};
|
|
173
|
+
}
|
|
157
174
|
/**
|
|
158
175
|
* The calling user does not have permission to list all sessions across all Agents.
|
|
159
176
|
Listing all sessions across all agents requires the `api:aip-agents-write` scope.
|
|
@@ -182,8 +199,47 @@ export interface InvalidAgentVersion {
|
|
|
182
199
|
version: unknown;
|
|
183
200
|
};
|
|
184
201
|
}
|
|
202
|
+
/**
|
|
203
|
+
* The provided parameter is not valid for the Agent for this session.
|
|
204
|
+
Check the available parameters for the Agent and version through the API with `getAgent`, or in AIP Agent Studio.
|
|
205
|
+
The Agent version used for the session can be checked through the API with `getSession`.
|
|
206
|
+
|
|
207
|
+
*
|
|
208
|
+
* Log Safety: UNSAFE
|
|
209
|
+
*/
|
|
210
|
+
export interface InvalidParameter {
|
|
211
|
+
errorCode: "INVALID_ARGUMENT";
|
|
212
|
+
errorName: "InvalidParameter";
|
|
213
|
+
errorInstanceId: string;
|
|
214
|
+
parameters: {
|
|
215
|
+
agentRid: unknown;
|
|
216
|
+
sessionRid: unknown;
|
|
217
|
+
parameter: unknown;
|
|
218
|
+
};
|
|
219
|
+
}
|
|
220
|
+
/**
|
|
221
|
+
* The provided parameter type does not match the expected type for the parameter configured on the Agent for this session.
|
|
222
|
+
Check the available parameters and their expected types for the Agent and version through the API with `getAgent`, or in AIP Agent Studio.
|
|
223
|
+
The Agent version used for the session can be checked through the API with `getSession`.
|
|
224
|
+
|
|
225
|
+
*
|
|
226
|
+
* Log Safety: UNSAFE
|
|
227
|
+
*/
|
|
228
|
+
export interface InvalidParameterType {
|
|
229
|
+
errorCode: "INVALID_ARGUMENT";
|
|
230
|
+
errorName: "InvalidParameterType";
|
|
231
|
+
errorInstanceId: string;
|
|
232
|
+
parameters: {
|
|
233
|
+
agentRid: unknown;
|
|
234
|
+
sessionRid: unknown;
|
|
235
|
+
parameter: unknown;
|
|
236
|
+
expectedType: unknown;
|
|
237
|
+
receivedType: unknown;
|
|
238
|
+
};
|
|
239
|
+
}
|
|
185
240
|
/**
|
|
186
241
|
* Failed to retrieve the latest published version of the Agent because the Agent has no published versions.
|
|
242
|
+
Try publishing the Agent in AIP Agent Studio to use the latest published version, or specify the version of the Agent to use.
|
|
187
243
|
|
|
188
244
|
*
|
|
189
245
|
* Log Safety: SAFE
|
|
@@ -196,6 +252,42 @@ export interface NoPublishedAgentVersion {
|
|
|
196
252
|
agentRid: unknown;
|
|
197
253
|
};
|
|
198
254
|
}
|
|
255
|
+
/**
|
|
256
|
+
* Some object types are configured for use by the Agent but could not be found.
|
|
257
|
+
The object types either do not exist or the client token does not have access.
|
|
258
|
+
Object types can be checked by listing available object types through the API, or searching in [Ontology Manager](/docs/foundry/ontology-manager/overview/).
|
|
259
|
+
|
|
260
|
+
*
|
|
261
|
+
* Log Safety: UNSAFE
|
|
262
|
+
*/
|
|
263
|
+
export interface ObjectTypeIdsNotFound {
|
|
264
|
+
errorCode: "NOT_FOUND";
|
|
265
|
+
errorName: "ObjectTypeIdsNotFound";
|
|
266
|
+
errorInstanceId: string;
|
|
267
|
+
parameters: {
|
|
268
|
+
agentRid: unknown;
|
|
269
|
+
sessionRid: unknown;
|
|
270
|
+
objectTypeIds: unknown;
|
|
271
|
+
};
|
|
272
|
+
}
|
|
273
|
+
/**
|
|
274
|
+
* Some object types are configured for use by the Agent but could not be found.
|
|
275
|
+
The object types either do not exist or the client token does not have access.
|
|
276
|
+
Object types can be checked by listing available object types through the API, or searching in [Ontology Manager](/docs/foundry/ontology-manager/overview/).
|
|
277
|
+
|
|
278
|
+
*
|
|
279
|
+
* Log Safety: SAFE
|
|
280
|
+
*/
|
|
281
|
+
export interface ObjectTypeRidsNotFound {
|
|
282
|
+
errorCode: "NOT_FOUND";
|
|
283
|
+
errorName: "ObjectTypeRidsNotFound";
|
|
284
|
+
errorInstanceId: string;
|
|
285
|
+
parameters: {
|
|
286
|
+
agentRid: unknown;
|
|
287
|
+
sessionRid: unknown;
|
|
288
|
+
objectTypeRids: unknown;
|
|
289
|
+
};
|
|
290
|
+
}
|
|
199
291
|
/**
|
|
200
292
|
* Could not ragContext the Session.
|
|
201
293
|
*
|
|
@@ -210,6 +302,22 @@ export interface RagContextSessionPermissionDenied {
|
|
|
210
302
|
sessionRid: unknown;
|
|
211
303
|
};
|
|
212
304
|
}
|
|
305
|
+
/**
|
|
306
|
+
* Failed to generate a response as the model rate limits were exceeded. Clients should wait and retry.
|
|
307
|
+
|
|
308
|
+
*
|
|
309
|
+
* Log Safety: UNSAFE
|
|
310
|
+
*/
|
|
311
|
+
export interface RateLimitExceeded {
|
|
312
|
+
errorCode: "CUSTOM_CLIENT";
|
|
313
|
+
errorName: "RateLimitExceeded";
|
|
314
|
+
errorInstanceId: string;
|
|
315
|
+
parameters: {
|
|
316
|
+
agentRid: unknown;
|
|
317
|
+
sessionRid: unknown;
|
|
318
|
+
details: unknown;
|
|
319
|
+
};
|
|
320
|
+
}
|
|
213
321
|
/**
|
|
214
322
|
* Failed to generate a response for a session due to an unexpected error.
|
|
215
323
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"AAgBA,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC;AAEF;;;;;;;KAOK;AACL,MAAM,WAAW,4BAA4B;IAC3C,SAAS,EAAE,kBAAkB,CAAC;IAC9B,SAAS,EAAE,8BAA8B,CAAC;IAC1C,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,QAAQ,EAAE,OAAO,CAAC;QAClB,UAAU,EAAE,OAAO,CAAC;QACpB,OAAO,EAAE,OAAO,CAAC;KAClB,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,aAAa;IAC5B,SAAS,EAAE,WAAW,CAAC;IACvB,SAAS,EAAE,eAAe,CAAC;IAC3B,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,QAAQ,EAAE,OAAO,CAAC;KACnB,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACnC,SAAS,EAAE,WAAW,CAAC;IACvB,SAAS,EAAE,sBAAsB,CAAC;IAClC,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,QAAQ,EAAE,OAAO,CAAC;QAClB,kBAAkB,EAAE,OAAO,CAAC;KAC7B,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,iCAAiC;IAChD,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,mCAAmC,CAAC;IAC/C,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE,EAAE,CAAC;CAChB;AAED;;;;GAIG;AACH,MAAM,WAAW,uCAAuC;IACtD,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,yCAAyC,CAAC;IACrD,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,QAAQ,EAAE,OAAO,CAAC;QAClB,UAAU,EAAE,OAAO,CAAC;KACrB,CAAC;CACH;AAED;;;;;;;;;;;;;KAaK;AACL,MAAM,WAAW,uCAAuC;IACtD,SAAS,EAAE,kBAAkB,CAAC;IAC9B,SAAS,EAAE,yCAAyC,CAAC;IACrD,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,SAAS,EAAE,OAAO,CAAC;QACnB,QAAQ,EAAE,OAAO,CAAC;QAClB,UAAU,EAAE,OAAO,CAAC;KACrB,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,6BAA6B;IAC5C,SAAS,EAAE,mBAAmB,CAAC;IAC/B,SAAS,EAAE,+BAA+B,CAAC;IAC3C,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,QAAQ,EAAE,OAAO,CAAC;QAClB,UAAU,EAAE,OAAO,CAAC;KACrB,CAAC;CACH;AAED;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC9B,SAAS,EAAE,WAAW,CAAC;IACvB,SAAS,EAAE,iBAAiB,CAAC;IAC7B,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,QAAQ,EAAE,OAAO,CAAC;QAClB,UAAU,EAAE,OAAO,CAAC;KACrB,CAAC;CACH;AAED
|
|
1
|
+
{"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"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"}
|
package/build/browser/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export type { Agent, AgentMarkdownResponse, AgentMetadata, AgentRid, AgentSessionRagContextResponse, AgentsSessionsPage, AgentVersion, AgentVersionDetails, AgentVersionString, BlockingContinueSessionRequest, CancelSessionRequest, CancelSessionResponse, Content, CreateSessionRequest, InputContext, ListAgentVersionsResponse, ListSessionsResponse, MessageId, ObjectContext, ObjectSetParameter,
|
|
2
|
-
export type { AgentIterationsExceededLimit, AgentNotFound, AgentVersionNotFound, AllSessionsAgentsPermissionDenied, BlockingContinueSessionPermissionDenied, CancelSessionFailedMessageNotInProgress, CancelSessionPermissionDenied, ContentNotFound, ContextSizeExceededLimit, CreateSessionPermissionDenied, GetAllSessionsAgentsPermissionDenied, InvalidAgentVersion, NoPublishedAgentVersion, RagContextSessionPermissionDenied, SessionExecutionFailed, SessionNotFound, StreamingContinueSessionPermissionDenied, } from "./_errors.js";
|
|
1
|
+
export type { Agent, AgentMarkdownResponse, AgentMetadata, AgentRid, AgentSessionRagContextResponse, AgentsSessionsPage, AgentVersion, AgentVersionDetails, AgentVersionString, BlockingContinueSessionRequest, CancelSessionRequest, CancelSessionResponse, Content, CreateSessionRequest, InputContext, ListAgentVersionsResponse, ListSessionsResponse, MessageId, ObjectContext, ObjectSetParameter, ObjectSetParameterValue, ObjectSetParameterValueUpdate, Parameter, ParameterAccessMode, ParameterId, ParameterType, ParameterValue, ParameterValueUpdate, RagContextSessionRequest, Session, SessionExchange, SessionExchangeContexts, SessionExchangeResult, SessionMetadata, SessionRid, StreamingContinueSessionRequest, StringParameter, StringParameterValue, UserTextInput, } from "./_components.js";
|
|
2
|
+
export type { AgentIterationsExceededLimit, AgentNotFound, AgentVersionNotFound, AllSessionsAgentsPermissionDenied, BlockingContinueSessionPermissionDenied, CancelSessionFailedMessageNotInProgress, CancelSessionPermissionDenied, ContentNotFound, ContextSizeExceededLimit, CreateSessionPermissionDenied, FunctionLocatorNotFound, GetAllSessionsAgentsPermissionDenied, InvalidAgentVersion, InvalidParameter, InvalidParameterType, NoPublishedAgentVersion, ObjectTypeIdsNotFound, ObjectTypeRidsNotFound, RagContextSessionPermissionDenied, RateLimitExceeded, SessionExecutionFailed, SessionNotFound, StreamingContinueSessionPermissionDenied, } from "./_errors.js";
|
|
3
3
|
export * as Agents from "./public/Agent.js";
|
|
4
4
|
export * as AgentVersions from "./public/AgentVersion.js";
|
|
5
5
|
export * as Contents from "./public/Content.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EACV,KAAK,EACL,qBAAqB,EACrB,aAAa,EACb,QAAQ,EACR,8BAA8B,EAC9B,kBAAkB,EAClB,YAAY,EACZ,mBAAmB,EACnB,kBAAkB,EAClB,8BAA8B,EAC9B,oBAAoB,EACpB,qBAAqB,EACrB,OAAO,EACP,oBAAoB,EACpB,YAAY,EACZ,yBAAyB,EACzB,oBAAoB,EACpB,SAAS,EACT,aAAa,EACb,kBAAkB,EAClB,6BAA6B,EAC7B,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EACV,KAAK,EACL,qBAAqB,EACrB,aAAa,EACb,QAAQ,EACR,8BAA8B,EAC9B,kBAAkB,EAClB,YAAY,EACZ,mBAAmB,EACnB,kBAAkB,EAClB,8BAA8B,EAC9B,oBAAoB,EACpB,qBAAqB,EACrB,OAAO,EACP,oBAAoB,EACpB,YAAY,EACZ,yBAAyB,EACzB,oBAAoB,EACpB,SAAS,EACT,aAAa,EACb,kBAAkB,EAClB,uBAAuB,EACvB,6BAA6B,EAC7B,SAAS,EACT,mBAAmB,EACnB,WAAW,EACX,aAAa,EACb,cAAc,EACd,oBAAoB,EACpB,wBAAwB,EACxB,OAAO,EACP,eAAe,EACf,uBAAuB,EACvB,qBAAqB,EACrB,eAAe,EACf,UAAU,EACV,+BAA+B,EAC/B,eAAe,EACf,oBAAoB,EACpB,aAAa,GACd,MAAM,kBAAkB,CAAC;AAC1B,YAAY,EACV,4BAA4B,EAC5B,aAAa,EACb,oBAAoB,EACpB,iCAAiC,EACjC,uCAAuC,EACvC,uCAAuC,EACvC,6BAA6B,EAC7B,eAAe,EACf,wBAAwB,EACxB,6BAA6B,EAC7B,uBAAuB,EACvB,oCAAoC,EACpC,mBAAmB,EACnB,gBAAgB,EAChB,oBAAoB,EACpB,uBAAuB,EACvB,qBAAqB,EACrB,sBAAsB,EACtB,iCAAiC,EACjC,iBAAiB,EACjB,sBAAsB,EACtB,eAAe,EACf,wCAAwC,GACzC,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,aAAa,MAAM,0BAA0B,CAAC;AAC1D,OAAO,KAAK,QAAQ,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,QAAQ,MAAM,qBAAqB,CAAC"}
|
|
@@ -5,7 +5,7 @@ import type * as _AipAgents from "../_components.js";
|
|
|
5
5
|
/**
|
|
6
6
|
* Get details for an AIP Agent.
|
|
7
7
|
*
|
|
8
|
-
* @
|
|
8
|
+
* @beta
|
|
9
9
|
*
|
|
10
10
|
* Required Scopes: [api:aip-agents-read]
|
|
11
11
|
* URL: /v2/aipAgents/agents/{agentRid}
|
|
@@ -18,19 +18,18 @@ export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldCl
|
|
|
18
18
|
}
|
|
19
19
|
]): Promise<_AipAgents.Agent>;
|
|
20
20
|
/**
|
|
21
|
-
* List all conversation sessions between the calling user
|
|
22
|
-
* by this client.
|
|
21
|
+
* List all conversation sessions between the calling user and all accessible Agents that were created by this client.
|
|
23
22
|
* Sessions are returned in order of most recently updated first.
|
|
24
23
|
*
|
|
25
|
-
* @
|
|
24
|
+
* @beta
|
|
26
25
|
*
|
|
27
26
|
* Required Scopes: [api:aip-agents-write]
|
|
28
27
|
* URL: /v2/aipAgents/agents/allSessions
|
|
29
28
|
*/
|
|
30
29
|
export declare function allSessions($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
31
30
|
$queryParams?: {
|
|
32
|
-
pageSize?:
|
|
33
|
-
pageToken?:
|
|
31
|
+
pageSize?: _Core.PageSize | undefined;
|
|
32
|
+
pageToken?: _Core.PageToken | undefined;
|
|
34
33
|
preview?: _Core.PreviewMode | undefined;
|
|
35
34
|
}
|
|
36
35
|
]): Promise<_AipAgents.AgentsSessionsPage>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Agent.d.ts","sourceRoot":"","sources":["../../../src/public/Agent.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAG9B,OAAO,KAAK,KAAK,UAAU,MAAM,mBAAmB,CAAC;AAcrD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,UAAU,CAAC,QAAQ;IAE7B,YAAY,CAAC,EAAE;QACb,OAAO,CAAC,EAAE,UAAU,CAAC,kBAAkB,GAAG,SAAS,CAAC;QACpD,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAC;KACzC;CACF,GACA,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAE3B;AAUD
|
|
1
|
+
{"version":3,"file":"Agent.d.ts","sourceRoot":"","sources":["../../../src/public/Agent.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAG9B,OAAO,KAAK,KAAK,UAAU,MAAM,mBAAmB,CAAC;AAcrD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,UAAU,CAAC,QAAQ;IAE7B,YAAY,CAAC,EAAE;QACb,OAAO,CAAC,EAAE,UAAU,CAAC,kBAAkB,GAAG,SAAS,CAAC;QACpD,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAC;KACzC;CACF,GACA,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAE3B;AAUD;;;;;;;;GAQG;AACH,wBAAgB,WAAW,CACzB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,YAAY,CAAC,EAAE;QACb,QAAQ,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,SAAS,CAAC;QACtC,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,SAAS,CAAC;QACxC,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAC;KACzC;CACF,GACA,OAAO,CAAC,UAAU,CAAC,kBAAkB,CAAC,CAExC"}
|
|
@@ -19,7 +19,7 @@ const _get = [0, "/v2/aipAgents/agents/{0}", 2];
|
|
|
19
19
|
/**
|
|
20
20
|
* Get details for an AIP Agent.
|
|
21
21
|
*
|
|
22
|
-
* @
|
|
22
|
+
* @beta
|
|
23
23
|
*
|
|
24
24
|
* Required Scopes: [api:aip-agents-read]
|
|
25
25
|
* URL: /v2/aipAgents/agents/{agentRid}
|
|
@@ -29,11 +29,10 @@ export function get($ctx, ...args) {
|
|
|
29
29
|
}
|
|
30
30
|
const _allSessions = [0, "/v2/aipAgents/agents/allSessions", 2];
|
|
31
31
|
/**
|
|
32
|
-
* List all conversation sessions between the calling user
|
|
33
|
-
* by this client.
|
|
32
|
+
* List all conversation sessions between the calling user and all accessible Agents that were created by this client.
|
|
34
33
|
* Sessions are returned in order of most recently updated first.
|
|
35
34
|
*
|
|
36
|
-
* @
|
|
35
|
+
* @beta
|
|
37
36
|
*
|
|
38
37
|
* Required Scopes: [api:aip-agents-write]
|
|
39
38
|
* URL: /v2/aipAgents/agents/allSessions
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Agent.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_get","get","$ctx","args","_allSessions","allSessions"],"sources":["Agent.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\nconst _get = [0, \"/v2/aipAgents/agents/{0}\", 2];\n/**\n * Get details for an AIP Agent.\n *\n * @
|
|
1
|
+
{"version":3,"file":"Agent.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_get","get","$ctx","args","_allSessions","allSessions"],"sources":["Agent.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\nconst _get = [0, \"/v2/aipAgents/agents/{0}\", 2];\n/**\n * Get details for an AIP Agent.\n *\n * @beta\n *\n * Required Scopes: [api:aip-agents-read]\n * URL: /v2/aipAgents/agents/{agentRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _allSessions = [0, \"/v2/aipAgents/agents/allSessions\", 2];\n/**\n * List all conversation sessions between the calling user and all accessible Agents that were created by this client.\n * Sessions are returned in order of most recently updated first.\n *\n * @beta\n *\n * Required Scopes: [api:aip-agents-write]\n * URL: /v2/aipAgents/agents/allSessions\n */\nexport function allSessions($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _allSessions, ...args);\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,oBAAoB,IAAIC,qBAAqB,QAAQ,8BAA8B;AAC5F;AACA,MAAMC,IAAI,GAAG,CAAC,CAAC,EAAE,0BAA0B,EAAE,CAAC,CAAC;AAC/C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC/B,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,IAAI,EAAE,GAAGG,IAAI,CAAC;AACrD;AACA,MAAMC,YAAY,GAAG,CAAC,CAAC,EAAE,kCAAkC,EAAE,CAAC,CAAC;AAC/D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,WAAWA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EACvC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,YAAY,EAAE,GAAGD,IAAI,CAAC;AAC7D","ignoreList":[]}
|
|
@@ -6,7 +6,7 @@ import type * as _AipAgents from "../_components.js";
|
|
|
6
6
|
* List all versions for an AIP Agent.
|
|
7
7
|
* Versions are returned in descending order, by most recent versions first.
|
|
8
8
|
*
|
|
9
|
-
* @
|
|
9
|
+
* @beta
|
|
10
10
|
*
|
|
11
11
|
* Required Scopes: [api:aip-agents-read]
|
|
12
12
|
* URL: /v2/aipAgents/agents/{agentRid}/agentVersions
|
|
@@ -22,7 +22,7 @@ export declare function list($ctx: $Client | $ClientContext | $OldClient | $OldC
|
|
|
22
22
|
/**
|
|
23
23
|
* Get version details for an AIP Agent.
|
|
24
24
|
*
|
|
25
|
-
* @
|
|
25
|
+
* @beta
|
|
26
26
|
*
|
|
27
27
|
* Required Scopes: [api:aip-agents-read]
|
|
28
28
|
* URL: /v2/aipAgents/agents/{agentRid}/agentVersions/{agentVersionString}
|
|
@@ -20,7 +20,7 @@ const _list = [0, "/v2/aipAgents/agents/{0}/agentVersions", 2];
|
|
|
20
20
|
* List all versions for an AIP Agent.
|
|
21
21
|
* Versions are returned in descending order, by most recent versions first.
|
|
22
22
|
*
|
|
23
|
-
* @
|
|
23
|
+
* @beta
|
|
24
24
|
*
|
|
25
25
|
* Required Scopes: [api:aip-agents-read]
|
|
26
26
|
* URL: /v2/aipAgents/agents/{agentRid}/agentVersions
|
|
@@ -32,7 +32,7 @@ const _get = [0, "/v2/aipAgents/agents/{0}/agentVersions/{1}", 2];
|
|
|
32
32
|
/**
|
|
33
33
|
* Get version details for an AIP Agent.
|
|
34
34
|
*
|
|
35
|
-
* @
|
|
35
|
+
* @beta
|
|
36
36
|
*
|
|
37
37
|
* Required Scopes: [api:aip-agents-read]
|
|
38
38
|
* URL: /v2/aipAgents/agents/{agentRid}/agentVersions/{agentVersionString}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AgentVersion.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_list","list","$ctx","args","_get","get"],"sources":["AgentVersion.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\nconst _list = [0, \"/v2/aipAgents/agents/{0}/agentVersions\", 2];\n/**\n * List all versions for an AIP Agent.\n * Versions are returned in descending order, by most recent versions first.\n *\n * @
|
|
1
|
+
{"version":3,"file":"AgentVersion.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_list","list","$ctx","args","_get","get"],"sources":["AgentVersion.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\nconst _list = [0, \"/v2/aipAgents/agents/{0}/agentVersions\", 2];\n/**\n * List all versions for an AIP Agent.\n * Versions are returned in descending order, by most recent versions first.\n *\n * @beta\n *\n * Required Scopes: [api:aip-agents-read]\n * URL: /v2/aipAgents/agents/{agentRid}/agentVersions\n */\nexport function list($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _list, ...args);\n}\nconst _get = [0, \"/v2/aipAgents/agents/{0}/agentVersions/{1}\", 2];\n/**\n * Get version details for an AIP Agent.\n *\n * @beta\n *\n * Required Scopes: [api:aip-agents-read]\n * URL: /v2/aipAgents/agents/{agentRid}/agentVersions/{agentVersionString}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,oBAAoB,IAAIC,qBAAqB,QAAQ,8BAA8B;AAC5F;AACA,MAAMC,KAAK,GAAG,CAAC,CAAC,EAAE,wCAAwC,EAAE,CAAC,CAAC;AAC9D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,IAAIA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EAChC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,KAAK,EAAE,GAAGG,IAAI,CAAC;AACtD;AACA,MAAMC,IAAI,GAAG,CAAC,CAAC,EAAE,4CAA4C,EAAE,CAAC,CAAC;AACjE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC/B,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,IAAI,EAAE,GAAGD,IAAI,CAAC;AACrD","ignoreList":[]}
|
|
@@ -5,7 +5,7 @@ import type * as _AipAgents from "../_components.js";
|
|
|
5
5
|
/**
|
|
6
6
|
* Get the conversation content for a session between the calling user and an Agent.
|
|
7
7
|
*
|
|
8
|
-
* @
|
|
8
|
+
* @beta
|
|
9
9
|
*
|
|
10
10
|
* Required Scopes: [api:aip-agents-read]
|
|
11
11
|
* URL: /v2/aipAgents/agents/{agentRid}/sessions/{sessionRid}/content
|
|
@@ -19,7 +19,7 @@ const _get = [0, "/v2/aipAgents/agents/{0}/sessions/{1}/content", 2];
|
|
|
19
19
|
/**
|
|
20
20
|
* Get the conversation content for a session between the calling user and an Agent.
|
|
21
21
|
*
|
|
22
|
-
* @
|
|
22
|
+
* @beta
|
|
23
23
|
*
|
|
24
24
|
* Required Scopes: [api:aip-agents-read]
|
|
25
25
|
* URL: /v2/aipAgents/agents/{agentRid}/sessions/{sessionRid}/content
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Content.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_get","get","$ctx","args"],"sources":["Content.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\nconst _get = [0, \"/v2/aipAgents/agents/{0}/sessions/{1}/content\", 2];\n/**\n * Get the conversation content for a session between the calling user and an Agent.\n *\n * @
|
|
1
|
+
{"version":3,"file":"Content.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_get","get","$ctx","args"],"sources":["Content.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\nconst _get = [0, \"/v2/aipAgents/agents/{0}/sessions/{1}/content\", 2];\n/**\n * Get the conversation content for a session between the calling user and an Agent.\n *\n * @beta\n *\n * Required Scopes: [api:aip-agents-read]\n * URL: /v2/aipAgents/agents/{agentRid}/sessions/{sessionRid}/content\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,oBAAoB,IAAIC,qBAAqB,QAAQ,8BAA8B;AAC5F;AACA,MAAMC,IAAI,GAAG,CAAC,CAAC,EAAE,+CAA+C,EAAE,CAAC,CAAC;AACpE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC/B,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,IAAI,EAAE,GAAGG,IAAI,CAAC;AACrD","ignoreList":[]}
|