@orq-ai/node 4.0.0-rc.67 → 4.0.0-rc.68
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/README.md +23 -18
- package/bin/mcp-server.js +2320 -1152
- package/bin/mcp-server.js.map +49 -46
- package/docs/sdks/responses/README.md +139 -0
- package/examples/package-lock.json +1 -1
- package/funcs/agentsResponsesCreate.d.ts +17 -0
- package/funcs/agentsResponsesCreate.d.ts.map +1 -0
- package/funcs/agentsResponsesCreate.js +120 -0
- package/funcs/agentsResponsesCreate.js.map +1 -0
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.d.ts.map +1 -1
- package/mcp-server/server.js +3 -1
- package/mcp-server/server.js.map +1 -1
- package/mcp-server/tools/agentsResponsesCreate.d.ts +8 -0
- package/mcp-server/tools/agentsResponsesCreate.d.ts.map +1 -0
- package/mcp-server/tools/agentsResponsesCreate.js +64 -0
- package/mcp-server/tools/agentsResponsesCreate.js.map +1 -0
- package/models/operations/createagent.js +4 -4
- package/models/operations/createagent.js.map +1 -1
- package/models/operations/createagentresponse.d.ts +564 -0
- package/models/operations/createagentresponse.d.ts.map +1 -0
- package/models/operations/createagentresponse.js +605 -0
- package/models/operations/createagentresponse.js.map +1 -0
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +12 -12
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getagent.js +2 -2
- package/models/operations/getagent.js.map +1 -1
- package/models/operations/getagenttask.d.ts +32 -32
- package/models/operations/getagenttask.d.ts.map +1 -1
- package/models/operations/getagenttask.js +50 -50
- package/models/operations/getagenttask.js.map +1 -1
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/index.d.ts +1 -0
- package/models/operations/index.d.ts.map +1 -1
- package/models/operations/index.js +1 -0
- package/models/operations/index.js.map +1 -1
- package/models/operations/invokeagent.d.ts +95 -95
- package/models/operations/invokeagent.d.ts.map +1 -1
- package/models/operations/invokeagent.js +143 -134
- package/models/operations/invokeagent.js.map +1 -1
- package/models/operations/listagents.js +2 -2
- package/models/operations/listagents.js.map +1 -1
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.d.ts +54 -54
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +90 -90
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamagent.d.ts +541 -68
- package/models/operations/streamagent.d.ts.map +1 -1
- package/models/operations/streamagent.js +649 -118
- package/models/operations/streamagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +541 -68
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +657 -127
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/updateagent.js +4 -4
- package/models/operations/updateagent.js.map +1 -1
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/sdk/agents.d.ts +3 -0
- package/sdk/agents.d.ts.map +1 -1
- package/sdk/agents.js +4 -0
- package/sdk/agents.js.map +1 -1
- package/sdk/responses.d.ts +12 -0
- package/sdk/responses.d.ts.map +1 -0
- package/sdk/responses.js +22 -0
- package/sdk/responses.js.map +1 -0
- package/src/funcs/agentsResponsesCreate.ts +168 -0
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +3 -1
- package/src/mcp-server/tools/agentsResponsesCreate.ts +37 -0
- package/src/models/operations/createagent.ts +4 -4
- package/src/models/operations/createagentresponse.ts +1339 -0
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +12 -12
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getagent.ts +2 -2
- package/src/models/operations/getagenttask.ts +94 -94
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/index.ts +1 -0
- package/src/models/operations/invokeagent.ts +322 -246
- package/src/models/operations/listagents.ts +2 -2
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +174 -157
- package/src/models/operations/streamagent.ts +1739 -297
- package/src/models/operations/streamrunagent.ts +1742 -307
- package/src/models/operations/updateagent.ts +4 -4
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
- package/src/sdk/agents.ts +6 -0
- package/src/sdk/responses.ts +27 -0
|
@@ -0,0 +1,564 @@
|
|
|
1
|
+
import * as z from "zod/v3";
|
|
2
|
+
import { ClosedEnum } from "../../types/enums.js";
|
|
3
|
+
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
4
|
+
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
5
|
+
/**
|
|
6
|
+
* Message containing tool execution results
|
|
7
|
+
*/
|
|
8
|
+
export declare const RoleToolMessage: {
|
|
9
|
+
readonly Tool: "tool";
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* Message containing tool execution results
|
|
13
|
+
*/
|
|
14
|
+
export type RoleToolMessage = ClosedEnum<typeof RoleToolMessage>;
|
|
15
|
+
/**
|
|
16
|
+
* Message from the end user
|
|
17
|
+
*/
|
|
18
|
+
export declare const RoleUserMessage: {
|
|
19
|
+
readonly User: "user";
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Message from the end user
|
|
23
|
+
*/
|
|
24
|
+
export type RoleUserMessage = ClosedEnum<typeof RoleUserMessage>;
|
|
25
|
+
/**
|
|
26
|
+
* Message role (user or tool for continuing executions)
|
|
27
|
+
*/
|
|
28
|
+
export type CreateAgentResponseRole = RoleUserMessage | RoleToolMessage;
|
|
29
|
+
export declare const CreateAgentResponsePublicMessagePartKind: {
|
|
30
|
+
readonly ToolResult: "tool_result";
|
|
31
|
+
};
|
|
32
|
+
export type CreateAgentResponsePublicMessagePartKind = ClosedEnum<typeof CreateAgentResponsePublicMessagePartKind>;
|
|
33
|
+
/**
|
|
34
|
+
* Tool execution result part. Use this ONLY when providing results for a pending tool call from the agent. The tool_call_id must match the ID from the agent's tool call request.
|
|
35
|
+
*/
|
|
36
|
+
export type ToolResultPart = {
|
|
37
|
+
kind: CreateAgentResponsePublicMessagePartKind;
|
|
38
|
+
toolCallId: string;
|
|
39
|
+
result?: any | undefined;
|
|
40
|
+
metadata?: {
|
|
41
|
+
[k: string]: any;
|
|
42
|
+
} | undefined;
|
|
43
|
+
};
|
|
44
|
+
export declare const PublicMessagePartKind: {
|
|
45
|
+
readonly File: "file";
|
|
46
|
+
};
|
|
47
|
+
export type PublicMessagePartKind = ClosedEnum<typeof PublicMessagePartKind>;
|
|
48
|
+
/**
|
|
49
|
+
* File in URI format. Check in the model's documentation for the supported mime types for the URI format
|
|
50
|
+
*/
|
|
51
|
+
export type FileInURIFormat = {
|
|
52
|
+
/**
|
|
53
|
+
* URL for the File content
|
|
54
|
+
*/
|
|
55
|
+
uri: string;
|
|
56
|
+
/**
|
|
57
|
+
* Optional mimeType for the file
|
|
58
|
+
*/
|
|
59
|
+
mimeType?: string | undefined;
|
|
60
|
+
/**
|
|
61
|
+
* Optional name for the file
|
|
62
|
+
*/
|
|
63
|
+
name?: string | undefined;
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* Binary in base64 format. Check in the model's documentation for the supported mime types for the binary format.
|
|
67
|
+
*/
|
|
68
|
+
export type BinaryFormat = {
|
|
69
|
+
/**
|
|
70
|
+
* base64 encoded content of the file
|
|
71
|
+
*/
|
|
72
|
+
bytes: string;
|
|
73
|
+
/**
|
|
74
|
+
* Optional mimeType for the file
|
|
75
|
+
*/
|
|
76
|
+
mimeType?: string | undefined;
|
|
77
|
+
/**
|
|
78
|
+
* Optional name for the file
|
|
79
|
+
*/
|
|
80
|
+
name?: string | undefined;
|
|
81
|
+
};
|
|
82
|
+
export type PublicMessagePartFile = BinaryFormat | FileInURIFormat;
|
|
83
|
+
/**
|
|
84
|
+
* File attachment part. Use this to send files (images, documents, etc.) to the agent for processing.
|
|
85
|
+
*/
|
|
86
|
+
export type FilePart = {
|
|
87
|
+
kind: PublicMessagePartKind;
|
|
88
|
+
file: BinaryFormat | FileInURIFormat;
|
|
89
|
+
metadata?: {
|
|
90
|
+
[k: string]: any;
|
|
91
|
+
} | undefined;
|
|
92
|
+
};
|
|
93
|
+
export declare const Kind: {
|
|
94
|
+
readonly Text: "text";
|
|
95
|
+
};
|
|
96
|
+
export type Kind = ClosedEnum<typeof Kind>;
|
|
97
|
+
/**
|
|
98
|
+
* Text content part. Use this to send text messages to the agent.
|
|
99
|
+
*/
|
|
100
|
+
export type TextPart = {
|
|
101
|
+
kind: Kind;
|
|
102
|
+
text: string;
|
|
103
|
+
};
|
|
104
|
+
/**
|
|
105
|
+
* Message part that can be provided by users. Use "text" for regular messages, "file" for attachments, or "tool_result" when responding to tool call requests.
|
|
106
|
+
*/
|
|
107
|
+
export type PublicMessagePart = TextPart | FilePart | ToolResultPart;
|
|
108
|
+
/**
|
|
109
|
+
* The A2A message to send to the agent (user input or tool results)
|
|
110
|
+
*/
|
|
111
|
+
export type A2AMessage = {
|
|
112
|
+
/**
|
|
113
|
+
* Optional A2A message ID in ULID format
|
|
114
|
+
*/
|
|
115
|
+
messageId?: string | undefined;
|
|
116
|
+
/**
|
|
117
|
+
* Message role (user or tool for continuing executions)
|
|
118
|
+
*/
|
|
119
|
+
role: RoleUserMessage | RoleToolMessage;
|
|
120
|
+
/**
|
|
121
|
+
* A2A message parts (text, file, or tool_result only)
|
|
122
|
+
*/
|
|
123
|
+
parts: Array<TextPart | FilePart | ToolResultPart>;
|
|
124
|
+
};
|
|
125
|
+
/**
|
|
126
|
+
* Information about the contact making the request. If the contact does not exist, it will be created automatically.
|
|
127
|
+
*/
|
|
128
|
+
export type Contact = {
|
|
129
|
+
/**
|
|
130
|
+
* Unique identifier for the contact
|
|
131
|
+
*/
|
|
132
|
+
id: string;
|
|
133
|
+
/**
|
|
134
|
+
* Display name of the contact
|
|
135
|
+
*/
|
|
136
|
+
displayName?: string | undefined;
|
|
137
|
+
/**
|
|
138
|
+
* Email address of the contact
|
|
139
|
+
*/
|
|
140
|
+
email?: string | undefined;
|
|
141
|
+
/**
|
|
142
|
+
* A hash of key/value pairs containing any other data about the contact
|
|
143
|
+
*/
|
|
144
|
+
metadata?: Array<{
|
|
145
|
+
[k: string]: any;
|
|
146
|
+
}> | undefined;
|
|
147
|
+
/**
|
|
148
|
+
* URL to the contact's avatar or logo
|
|
149
|
+
*/
|
|
150
|
+
logoUrl?: string | undefined;
|
|
151
|
+
/**
|
|
152
|
+
* A list of tags associated with the contact
|
|
153
|
+
*/
|
|
154
|
+
tags?: Array<string> | undefined;
|
|
155
|
+
};
|
|
156
|
+
/**
|
|
157
|
+
* Thread information to group related requests
|
|
158
|
+
*/
|
|
159
|
+
export type CreateAgentResponseThread = {
|
|
160
|
+
/**
|
|
161
|
+
* Unique thread identifier to group related invocations.
|
|
162
|
+
*/
|
|
163
|
+
id: string;
|
|
164
|
+
/**
|
|
165
|
+
* Optional tags to differentiate or categorize threads
|
|
166
|
+
*/
|
|
167
|
+
tags?: Array<string> | undefined;
|
|
168
|
+
};
|
|
169
|
+
/**
|
|
170
|
+
* Memory configuration for the agent execution. Used to associate memory stores with specific entities like users or sessions.
|
|
171
|
+
*/
|
|
172
|
+
export type Memory = {
|
|
173
|
+
/**
|
|
174
|
+
* An entity ID used to link memory stores to a specific user, session, or conversation. This ID is used to isolate and retrieve memories specific to the entity across agent executions.
|
|
175
|
+
*/
|
|
176
|
+
entityId: string;
|
|
177
|
+
};
|
|
178
|
+
export type CreateAgentResponseRequestBody = {
|
|
179
|
+
/**
|
|
180
|
+
* Optional task ID to continue an existing agent execution. When provided, the agent will continue the conversation from the existing task state. The task must be in an inactive state to continue.
|
|
181
|
+
*/
|
|
182
|
+
taskId?: string | undefined;
|
|
183
|
+
/**
|
|
184
|
+
* The A2A message to send to the agent (user input or tool results)
|
|
185
|
+
*/
|
|
186
|
+
message: A2AMessage;
|
|
187
|
+
/**
|
|
188
|
+
* Optional variables for template replacement in system prompt, instructions, and messages
|
|
189
|
+
*/
|
|
190
|
+
variables?: {
|
|
191
|
+
[k: string]: any;
|
|
192
|
+
} | undefined;
|
|
193
|
+
/**
|
|
194
|
+
* Information about the contact making the request. If the contact does not exist, it will be created automatically.
|
|
195
|
+
*/
|
|
196
|
+
contact?: Contact | undefined;
|
|
197
|
+
/**
|
|
198
|
+
* Thread information to group related requests
|
|
199
|
+
*/
|
|
200
|
+
thread?: CreateAgentResponseThread | undefined;
|
|
201
|
+
/**
|
|
202
|
+
* Memory configuration for the agent execution. Used to associate memory stores with specific entities like users or sessions.
|
|
203
|
+
*/
|
|
204
|
+
memory?: Memory | undefined;
|
|
205
|
+
/**
|
|
206
|
+
* Optional metadata for the agent invocation as key-value pairs that will be included in traces
|
|
207
|
+
*/
|
|
208
|
+
metadata?: {
|
|
209
|
+
[k: string]: any;
|
|
210
|
+
} | undefined;
|
|
211
|
+
/**
|
|
212
|
+
* If true, returns immediately without waiting for completion. If false (default), waits until the agent becomes inactive or errors.
|
|
213
|
+
*/
|
|
214
|
+
background?: boolean | undefined;
|
|
215
|
+
};
|
|
216
|
+
export type CreateAgentResponseRequest = {
|
|
217
|
+
/**
|
|
218
|
+
* The key or ID of the agent to invoke
|
|
219
|
+
*/
|
|
220
|
+
agentKey: string;
|
|
221
|
+
requestBody?: CreateAgentResponseRequestBody | undefined;
|
|
222
|
+
};
|
|
223
|
+
export declare const CreateAgentResponseAgentsResponsesRole: {
|
|
224
|
+
readonly User: "user";
|
|
225
|
+
readonly Agent: "agent";
|
|
226
|
+
readonly Tool: "tool";
|
|
227
|
+
readonly System: "system";
|
|
228
|
+
};
|
|
229
|
+
export type CreateAgentResponseAgentsResponsesRole = ClosedEnum<typeof CreateAgentResponseAgentsResponsesRole>;
|
|
230
|
+
export type Output = {
|
|
231
|
+
messageId: string;
|
|
232
|
+
role: CreateAgentResponseAgentsResponsesRole;
|
|
233
|
+
parts: Array<any>;
|
|
234
|
+
metadata?: {
|
|
235
|
+
[k: string]: any;
|
|
236
|
+
} | undefined;
|
|
237
|
+
};
|
|
238
|
+
export type PromptTokensDetails = {
|
|
239
|
+
cachedTokens?: number | null | undefined;
|
|
240
|
+
/**
|
|
241
|
+
* The number of audio input tokens consumed by the request.
|
|
242
|
+
*/
|
|
243
|
+
audioTokens?: number | null | undefined;
|
|
244
|
+
};
|
|
245
|
+
export type CompletionTokensDetails = {
|
|
246
|
+
reasoningTokens?: number | null | undefined;
|
|
247
|
+
acceptedPredictionTokens?: number | null | undefined;
|
|
248
|
+
rejectedPredictionTokens?: number | null | undefined;
|
|
249
|
+
/**
|
|
250
|
+
* The number of audio output tokens produced by the response.
|
|
251
|
+
*/
|
|
252
|
+
audioTokens?: number | null | undefined;
|
|
253
|
+
};
|
|
254
|
+
/**
|
|
255
|
+
* Token usage from the agent execution
|
|
256
|
+
*/
|
|
257
|
+
export type CreateAgentResponseUsage = {
|
|
258
|
+
/**
|
|
259
|
+
* Number of tokens in the generated completion.
|
|
260
|
+
*/
|
|
261
|
+
completionTokens?: number | undefined;
|
|
262
|
+
/**
|
|
263
|
+
* Number of tokens in the prompt.
|
|
264
|
+
*/
|
|
265
|
+
promptTokens?: number | undefined;
|
|
266
|
+
/**
|
|
267
|
+
* Total number of tokens used in the request (prompt + completion).
|
|
268
|
+
*/
|
|
269
|
+
totalTokens?: number | undefined;
|
|
270
|
+
promptTokensDetails?: PromptTokensDetails | null | undefined;
|
|
271
|
+
completionTokensDetails?: CompletionTokensDetails | null | undefined;
|
|
272
|
+
};
|
|
273
|
+
/**
|
|
274
|
+
* Agent response created successfully
|
|
275
|
+
*/
|
|
276
|
+
export type CreateAgentResponseResponseBody = {
|
|
277
|
+
/**
|
|
278
|
+
* The unique response ID
|
|
279
|
+
*/
|
|
280
|
+
id: string;
|
|
281
|
+
/**
|
|
282
|
+
* The agent execution task ID
|
|
283
|
+
*/
|
|
284
|
+
taskId: string;
|
|
285
|
+
/**
|
|
286
|
+
* Array of messages from the agent execution
|
|
287
|
+
*/
|
|
288
|
+
output: Array<Output>;
|
|
289
|
+
/**
|
|
290
|
+
* ISO timestamp of response creation
|
|
291
|
+
*/
|
|
292
|
+
createdAt: string;
|
|
293
|
+
/**
|
|
294
|
+
* Model used in provider/model format
|
|
295
|
+
*/
|
|
296
|
+
model: string;
|
|
297
|
+
/**
|
|
298
|
+
* Token usage from the agent execution
|
|
299
|
+
*/
|
|
300
|
+
usage?: CreateAgentResponseUsage | null | undefined;
|
|
301
|
+
};
|
|
302
|
+
/** @internal */
|
|
303
|
+
export declare const RoleToolMessage$inboundSchema: z.ZodNativeEnum<typeof RoleToolMessage>;
|
|
304
|
+
/** @internal */
|
|
305
|
+
export declare const RoleToolMessage$outboundSchema: z.ZodNativeEnum<typeof RoleToolMessage>;
|
|
306
|
+
/** @internal */
|
|
307
|
+
export declare const RoleUserMessage$inboundSchema: z.ZodNativeEnum<typeof RoleUserMessage>;
|
|
308
|
+
/** @internal */
|
|
309
|
+
export declare const RoleUserMessage$outboundSchema: z.ZodNativeEnum<typeof RoleUserMessage>;
|
|
310
|
+
/** @internal */
|
|
311
|
+
export declare const CreateAgentResponseRole$inboundSchema: z.ZodType<CreateAgentResponseRole, z.ZodTypeDef, unknown>;
|
|
312
|
+
/** @internal */
|
|
313
|
+
export type CreateAgentResponseRole$Outbound = string | string;
|
|
314
|
+
/** @internal */
|
|
315
|
+
export declare const CreateAgentResponseRole$outboundSchema: z.ZodType<CreateAgentResponseRole$Outbound, z.ZodTypeDef, CreateAgentResponseRole>;
|
|
316
|
+
export declare function createAgentResponseRoleToJSON(createAgentResponseRole: CreateAgentResponseRole): string;
|
|
317
|
+
export declare function createAgentResponseRoleFromJSON(jsonString: string): SafeParseResult<CreateAgentResponseRole, SDKValidationError>;
|
|
318
|
+
/** @internal */
|
|
319
|
+
export declare const CreateAgentResponsePublicMessagePartKind$inboundSchema: z.ZodNativeEnum<typeof CreateAgentResponsePublicMessagePartKind>;
|
|
320
|
+
/** @internal */
|
|
321
|
+
export declare const CreateAgentResponsePublicMessagePartKind$outboundSchema: z.ZodNativeEnum<typeof CreateAgentResponsePublicMessagePartKind>;
|
|
322
|
+
/** @internal */
|
|
323
|
+
export declare const ToolResultPart$inboundSchema: z.ZodType<ToolResultPart, z.ZodTypeDef, unknown>;
|
|
324
|
+
/** @internal */
|
|
325
|
+
export type ToolResultPart$Outbound = {
|
|
326
|
+
kind: string;
|
|
327
|
+
tool_call_id: string;
|
|
328
|
+
result?: any | undefined;
|
|
329
|
+
metadata?: {
|
|
330
|
+
[k: string]: any;
|
|
331
|
+
} | undefined;
|
|
332
|
+
};
|
|
333
|
+
/** @internal */
|
|
334
|
+
export declare const ToolResultPart$outboundSchema: z.ZodType<ToolResultPart$Outbound, z.ZodTypeDef, ToolResultPart>;
|
|
335
|
+
export declare function toolResultPartToJSON(toolResultPart: ToolResultPart): string;
|
|
336
|
+
export declare function toolResultPartFromJSON(jsonString: string): SafeParseResult<ToolResultPart, SDKValidationError>;
|
|
337
|
+
/** @internal */
|
|
338
|
+
export declare const PublicMessagePartKind$inboundSchema: z.ZodNativeEnum<typeof PublicMessagePartKind>;
|
|
339
|
+
/** @internal */
|
|
340
|
+
export declare const PublicMessagePartKind$outboundSchema: z.ZodNativeEnum<typeof PublicMessagePartKind>;
|
|
341
|
+
/** @internal */
|
|
342
|
+
export declare const FileInURIFormat$inboundSchema: z.ZodType<FileInURIFormat, z.ZodTypeDef, unknown>;
|
|
343
|
+
/** @internal */
|
|
344
|
+
export type FileInURIFormat$Outbound = {
|
|
345
|
+
uri: string;
|
|
346
|
+
mimeType?: string | undefined;
|
|
347
|
+
name?: string | undefined;
|
|
348
|
+
};
|
|
349
|
+
/** @internal */
|
|
350
|
+
export declare const FileInURIFormat$outboundSchema: z.ZodType<FileInURIFormat$Outbound, z.ZodTypeDef, FileInURIFormat>;
|
|
351
|
+
export declare function fileInURIFormatToJSON(fileInURIFormat: FileInURIFormat): string;
|
|
352
|
+
export declare function fileInURIFormatFromJSON(jsonString: string): SafeParseResult<FileInURIFormat, SDKValidationError>;
|
|
353
|
+
/** @internal */
|
|
354
|
+
export declare const BinaryFormat$inboundSchema: z.ZodType<BinaryFormat, z.ZodTypeDef, unknown>;
|
|
355
|
+
/** @internal */
|
|
356
|
+
export type BinaryFormat$Outbound = {
|
|
357
|
+
bytes: string;
|
|
358
|
+
mimeType?: string | undefined;
|
|
359
|
+
name?: string | undefined;
|
|
360
|
+
};
|
|
361
|
+
/** @internal */
|
|
362
|
+
export declare const BinaryFormat$outboundSchema: z.ZodType<BinaryFormat$Outbound, z.ZodTypeDef, BinaryFormat>;
|
|
363
|
+
export declare function binaryFormatToJSON(binaryFormat: BinaryFormat): string;
|
|
364
|
+
export declare function binaryFormatFromJSON(jsonString: string): SafeParseResult<BinaryFormat, SDKValidationError>;
|
|
365
|
+
/** @internal */
|
|
366
|
+
export declare const PublicMessagePartFile$inboundSchema: z.ZodType<PublicMessagePartFile, z.ZodTypeDef, unknown>;
|
|
367
|
+
/** @internal */
|
|
368
|
+
export type PublicMessagePartFile$Outbound = BinaryFormat$Outbound | FileInURIFormat$Outbound;
|
|
369
|
+
/** @internal */
|
|
370
|
+
export declare const PublicMessagePartFile$outboundSchema: z.ZodType<PublicMessagePartFile$Outbound, z.ZodTypeDef, PublicMessagePartFile>;
|
|
371
|
+
export declare function publicMessagePartFileToJSON(publicMessagePartFile: PublicMessagePartFile): string;
|
|
372
|
+
export declare function publicMessagePartFileFromJSON(jsonString: string): SafeParseResult<PublicMessagePartFile, SDKValidationError>;
|
|
373
|
+
/** @internal */
|
|
374
|
+
export declare const FilePart$inboundSchema: z.ZodType<FilePart, z.ZodTypeDef, unknown>;
|
|
375
|
+
/** @internal */
|
|
376
|
+
export type FilePart$Outbound = {
|
|
377
|
+
kind: string;
|
|
378
|
+
file: BinaryFormat$Outbound | FileInURIFormat$Outbound;
|
|
379
|
+
metadata?: {
|
|
380
|
+
[k: string]: any;
|
|
381
|
+
} | undefined;
|
|
382
|
+
};
|
|
383
|
+
/** @internal */
|
|
384
|
+
export declare const FilePart$outboundSchema: z.ZodType<FilePart$Outbound, z.ZodTypeDef, FilePart>;
|
|
385
|
+
export declare function filePartToJSON(filePart: FilePart): string;
|
|
386
|
+
export declare function filePartFromJSON(jsonString: string): SafeParseResult<FilePart, SDKValidationError>;
|
|
387
|
+
/** @internal */
|
|
388
|
+
export declare const Kind$inboundSchema: z.ZodNativeEnum<typeof Kind>;
|
|
389
|
+
/** @internal */
|
|
390
|
+
export declare const Kind$outboundSchema: z.ZodNativeEnum<typeof Kind>;
|
|
391
|
+
/** @internal */
|
|
392
|
+
export declare const TextPart$inboundSchema: z.ZodType<TextPart, z.ZodTypeDef, unknown>;
|
|
393
|
+
/** @internal */
|
|
394
|
+
export type TextPart$Outbound = {
|
|
395
|
+
kind: string;
|
|
396
|
+
text: string;
|
|
397
|
+
};
|
|
398
|
+
/** @internal */
|
|
399
|
+
export declare const TextPart$outboundSchema: z.ZodType<TextPart$Outbound, z.ZodTypeDef, TextPart>;
|
|
400
|
+
export declare function textPartToJSON(textPart: TextPart): string;
|
|
401
|
+
export declare function textPartFromJSON(jsonString: string): SafeParseResult<TextPart, SDKValidationError>;
|
|
402
|
+
/** @internal */
|
|
403
|
+
export declare const PublicMessagePart$inboundSchema: z.ZodType<PublicMessagePart, z.ZodTypeDef, unknown>;
|
|
404
|
+
/** @internal */
|
|
405
|
+
export type PublicMessagePart$Outbound = TextPart$Outbound | FilePart$Outbound | ToolResultPart$Outbound;
|
|
406
|
+
/** @internal */
|
|
407
|
+
export declare const PublicMessagePart$outboundSchema: z.ZodType<PublicMessagePart$Outbound, z.ZodTypeDef, PublicMessagePart>;
|
|
408
|
+
export declare function publicMessagePartToJSON(publicMessagePart: PublicMessagePart): string;
|
|
409
|
+
export declare function publicMessagePartFromJSON(jsonString: string): SafeParseResult<PublicMessagePart, SDKValidationError>;
|
|
410
|
+
/** @internal */
|
|
411
|
+
export declare const A2AMessage$inboundSchema: z.ZodType<A2AMessage, z.ZodTypeDef, unknown>;
|
|
412
|
+
/** @internal */
|
|
413
|
+
export type A2AMessage$Outbound = {
|
|
414
|
+
messageId?: string | undefined;
|
|
415
|
+
role: string | string;
|
|
416
|
+
parts: Array<TextPart$Outbound | FilePart$Outbound | ToolResultPart$Outbound>;
|
|
417
|
+
};
|
|
418
|
+
/** @internal */
|
|
419
|
+
export declare const A2AMessage$outboundSchema: z.ZodType<A2AMessage$Outbound, z.ZodTypeDef, A2AMessage>;
|
|
420
|
+
export declare function a2AMessageToJSON(a2AMessage: A2AMessage): string;
|
|
421
|
+
export declare function a2AMessageFromJSON(jsonString: string): SafeParseResult<A2AMessage, SDKValidationError>;
|
|
422
|
+
/** @internal */
|
|
423
|
+
export declare const Contact$inboundSchema: z.ZodType<Contact, z.ZodTypeDef, unknown>;
|
|
424
|
+
/** @internal */
|
|
425
|
+
export type Contact$Outbound = {
|
|
426
|
+
id: string;
|
|
427
|
+
display_name?: string | undefined;
|
|
428
|
+
email?: string | undefined;
|
|
429
|
+
metadata?: Array<{
|
|
430
|
+
[k: string]: any;
|
|
431
|
+
}> | undefined;
|
|
432
|
+
logo_url?: string | undefined;
|
|
433
|
+
tags?: Array<string> | undefined;
|
|
434
|
+
};
|
|
435
|
+
/** @internal */
|
|
436
|
+
export declare const Contact$outboundSchema: z.ZodType<Contact$Outbound, z.ZodTypeDef, Contact>;
|
|
437
|
+
export declare function contactToJSON(contact: Contact): string;
|
|
438
|
+
export declare function contactFromJSON(jsonString: string): SafeParseResult<Contact, SDKValidationError>;
|
|
439
|
+
/** @internal */
|
|
440
|
+
export declare const CreateAgentResponseThread$inboundSchema: z.ZodType<CreateAgentResponseThread, z.ZodTypeDef, unknown>;
|
|
441
|
+
/** @internal */
|
|
442
|
+
export type CreateAgentResponseThread$Outbound = {
|
|
443
|
+
id: string;
|
|
444
|
+
tags?: Array<string> | undefined;
|
|
445
|
+
};
|
|
446
|
+
/** @internal */
|
|
447
|
+
export declare const CreateAgentResponseThread$outboundSchema: z.ZodType<CreateAgentResponseThread$Outbound, z.ZodTypeDef, CreateAgentResponseThread>;
|
|
448
|
+
export declare function createAgentResponseThreadToJSON(createAgentResponseThread: CreateAgentResponseThread): string;
|
|
449
|
+
export declare function createAgentResponseThreadFromJSON(jsonString: string): SafeParseResult<CreateAgentResponseThread, SDKValidationError>;
|
|
450
|
+
/** @internal */
|
|
451
|
+
export declare const Memory$inboundSchema: z.ZodType<Memory, z.ZodTypeDef, unknown>;
|
|
452
|
+
/** @internal */
|
|
453
|
+
export type Memory$Outbound = {
|
|
454
|
+
entity_id: string;
|
|
455
|
+
};
|
|
456
|
+
/** @internal */
|
|
457
|
+
export declare const Memory$outboundSchema: z.ZodType<Memory$Outbound, z.ZodTypeDef, Memory>;
|
|
458
|
+
export declare function memoryToJSON(memory: Memory): string;
|
|
459
|
+
export declare function memoryFromJSON(jsonString: string): SafeParseResult<Memory, SDKValidationError>;
|
|
460
|
+
/** @internal */
|
|
461
|
+
export declare const CreateAgentResponseRequestBody$inboundSchema: z.ZodType<CreateAgentResponseRequestBody, z.ZodTypeDef, unknown>;
|
|
462
|
+
/** @internal */
|
|
463
|
+
export type CreateAgentResponseRequestBody$Outbound = {
|
|
464
|
+
task_id?: string | undefined;
|
|
465
|
+
message: A2AMessage$Outbound;
|
|
466
|
+
variables?: {
|
|
467
|
+
[k: string]: any;
|
|
468
|
+
} | undefined;
|
|
469
|
+
contact?: Contact$Outbound | undefined;
|
|
470
|
+
thread?: CreateAgentResponseThread$Outbound | undefined;
|
|
471
|
+
memory?: Memory$Outbound | undefined;
|
|
472
|
+
metadata?: {
|
|
473
|
+
[k: string]: any;
|
|
474
|
+
} | undefined;
|
|
475
|
+
background: boolean;
|
|
476
|
+
};
|
|
477
|
+
/** @internal */
|
|
478
|
+
export declare const CreateAgentResponseRequestBody$outboundSchema: z.ZodType<CreateAgentResponseRequestBody$Outbound, z.ZodTypeDef, CreateAgentResponseRequestBody>;
|
|
479
|
+
export declare function createAgentResponseRequestBodyToJSON(createAgentResponseRequestBody: CreateAgentResponseRequestBody): string;
|
|
480
|
+
export declare function createAgentResponseRequestBodyFromJSON(jsonString: string): SafeParseResult<CreateAgentResponseRequestBody, SDKValidationError>;
|
|
481
|
+
/** @internal */
|
|
482
|
+
export declare const CreateAgentResponseRequest$inboundSchema: z.ZodType<CreateAgentResponseRequest, z.ZodTypeDef, unknown>;
|
|
483
|
+
/** @internal */
|
|
484
|
+
export type CreateAgentResponseRequest$Outbound = {
|
|
485
|
+
agent_key: string;
|
|
486
|
+
RequestBody?: CreateAgentResponseRequestBody$Outbound | undefined;
|
|
487
|
+
};
|
|
488
|
+
/** @internal */
|
|
489
|
+
export declare const CreateAgentResponseRequest$outboundSchema: z.ZodType<CreateAgentResponseRequest$Outbound, z.ZodTypeDef, CreateAgentResponseRequest>;
|
|
490
|
+
export declare function createAgentResponseRequestToJSON(createAgentResponseRequest: CreateAgentResponseRequest): string;
|
|
491
|
+
export declare function createAgentResponseRequestFromJSON(jsonString: string): SafeParseResult<CreateAgentResponseRequest, SDKValidationError>;
|
|
492
|
+
/** @internal */
|
|
493
|
+
export declare const CreateAgentResponseAgentsResponsesRole$inboundSchema: z.ZodNativeEnum<typeof CreateAgentResponseAgentsResponsesRole>;
|
|
494
|
+
/** @internal */
|
|
495
|
+
export declare const CreateAgentResponseAgentsResponsesRole$outboundSchema: z.ZodNativeEnum<typeof CreateAgentResponseAgentsResponsesRole>;
|
|
496
|
+
/** @internal */
|
|
497
|
+
export declare const Output$inboundSchema: z.ZodType<Output, z.ZodTypeDef, unknown>;
|
|
498
|
+
/** @internal */
|
|
499
|
+
export type Output$Outbound = {
|
|
500
|
+
messageId: string;
|
|
501
|
+
role: string;
|
|
502
|
+
parts: Array<any>;
|
|
503
|
+
metadata?: {
|
|
504
|
+
[k: string]: any;
|
|
505
|
+
} | undefined;
|
|
506
|
+
};
|
|
507
|
+
/** @internal */
|
|
508
|
+
export declare const Output$outboundSchema: z.ZodType<Output$Outbound, z.ZodTypeDef, Output>;
|
|
509
|
+
export declare function outputToJSON(output: Output): string;
|
|
510
|
+
export declare function outputFromJSON(jsonString: string): SafeParseResult<Output, SDKValidationError>;
|
|
511
|
+
/** @internal */
|
|
512
|
+
export declare const PromptTokensDetails$inboundSchema: z.ZodType<PromptTokensDetails, z.ZodTypeDef, unknown>;
|
|
513
|
+
/** @internal */
|
|
514
|
+
export type PromptTokensDetails$Outbound = {
|
|
515
|
+
cached_tokens?: number | null | undefined;
|
|
516
|
+
audio_tokens?: number | null | undefined;
|
|
517
|
+
};
|
|
518
|
+
/** @internal */
|
|
519
|
+
export declare const PromptTokensDetails$outboundSchema: z.ZodType<PromptTokensDetails$Outbound, z.ZodTypeDef, PromptTokensDetails>;
|
|
520
|
+
export declare function promptTokensDetailsToJSON(promptTokensDetails: PromptTokensDetails): string;
|
|
521
|
+
export declare function promptTokensDetailsFromJSON(jsonString: string): SafeParseResult<PromptTokensDetails, SDKValidationError>;
|
|
522
|
+
/** @internal */
|
|
523
|
+
export declare const CompletionTokensDetails$inboundSchema: z.ZodType<CompletionTokensDetails, z.ZodTypeDef, unknown>;
|
|
524
|
+
/** @internal */
|
|
525
|
+
export type CompletionTokensDetails$Outbound = {
|
|
526
|
+
reasoning_tokens?: number | null | undefined;
|
|
527
|
+
accepted_prediction_tokens?: number | null | undefined;
|
|
528
|
+
rejected_prediction_tokens?: number | null | undefined;
|
|
529
|
+
audio_tokens?: number | null | undefined;
|
|
530
|
+
};
|
|
531
|
+
/** @internal */
|
|
532
|
+
export declare const CompletionTokensDetails$outboundSchema: z.ZodType<CompletionTokensDetails$Outbound, z.ZodTypeDef, CompletionTokensDetails>;
|
|
533
|
+
export declare function completionTokensDetailsToJSON(completionTokensDetails: CompletionTokensDetails): string;
|
|
534
|
+
export declare function completionTokensDetailsFromJSON(jsonString: string): SafeParseResult<CompletionTokensDetails, SDKValidationError>;
|
|
535
|
+
/** @internal */
|
|
536
|
+
export declare const CreateAgentResponseUsage$inboundSchema: z.ZodType<CreateAgentResponseUsage, z.ZodTypeDef, unknown>;
|
|
537
|
+
/** @internal */
|
|
538
|
+
export type CreateAgentResponseUsage$Outbound = {
|
|
539
|
+
completion_tokens?: number | undefined;
|
|
540
|
+
prompt_tokens?: number | undefined;
|
|
541
|
+
total_tokens?: number | undefined;
|
|
542
|
+
prompt_tokens_details?: PromptTokensDetails$Outbound | null | undefined;
|
|
543
|
+
completion_tokens_details?: CompletionTokensDetails$Outbound | null | undefined;
|
|
544
|
+
};
|
|
545
|
+
/** @internal */
|
|
546
|
+
export declare const CreateAgentResponseUsage$outboundSchema: z.ZodType<CreateAgentResponseUsage$Outbound, z.ZodTypeDef, CreateAgentResponseUsage>;
|
|
547
|
+
export declare function createAgentResponseUsageToJSON(createAgentResponseUsage: CreateAgentResponseUsage): string;
|
|
548
|
+
export declare function createAgentResponseUsageFromJSON(jsonString: string): SafeParseResult<CreateAgentResponseUsage, SDKValidationError>;
|
|
549
|
+
/** @internal */
|
|
550
|
+
export declare const CreateAgentResponseResponseBody$inboundSchema: z.ZodType<CreateAgentResponseResponseBody, z.ZodTypeDef, unknown>;
|
|
551
|
+
/** @internal */
|
|
552
|
+
export type CreateAgentResponseResponseBody$Outbound = {
|
|
553
|
+
_id: string;
|
|
554
|
+
task_id: string;
|
|
555
|
+
output: Array<Output$Outbound>;
|
|
556
|
+
created_at: string;
|
|
557
|
+
model: string;
|
|
558
|
+
usage?: CreateAgentResponseUsage$Outbound | null | undefined;
|
|
559
|
+
};
|
|
560
|
+
/** @internal */
|
|
561
|
+
export declare const CreateAgentResponseResponseBody$outboundSchema: z.ZodType<CreateAgentResponseResponseBody$Outbound, z.ZodTypeDef, CreateAgentResponseResponseBody>;
|
|
562
|
+
export declare function createAgentResponseResponseBodyToJSON(createAgentResponseResponseBody: CreateAgentResponseResponseBody): string;
|
|
563
|
+
export declare function createAgentResponseResponseBodyFromJSON(jsonString: string): SafeParseResult<CreateAgentResponseResponseBody, SDKValidationError>;
|
|
564
|
+
//# sourceMappingURL=createagentresponse.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createagentresponse.d.ts","sourceRoot":"","sources":["../../src/models/operations/createagentresponse.ts"],"names":[],"mappings":"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"}
|