@or-sdk/agents 4.18.1 → 4.18.2-beta.4012.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.
@@ -8,80 +8,15 @@ export declare class Agents extends Base {
8
8
  constructor(params: AgentsConfig);
9
9
  private makeRequest;
10
10
  parseError(err: unknown): Error;
11
- /**
12
- * Create a new agent.
13
- * @param params - The agent creation parameters.
14
- * @param options - The API call options.
15
- * @returns The created agent.
16
- */
17
11
  createAgent(params: CreateAgent, options?: CallOptions): Promise<Agent>;
18
- /**
19
- * Find agents with optional pagination and query.
20
- * @param params - Optional find parameters.
21
- * @param options - The API call options.
22
- * @returns An array of agents.
23
- */
24
12
  findAgents(params?: FindAgentsOptions, options?: CallOptions): Promise<List<Agent>>;
25
- /**
26
- * Get an agent by its ID.
27
- * @param agentId - The ID of the agent to retrieve.
28
- * @param options - The API call options.
29
- * @returns The retrieved agent.
30
- */
31
13
  getAgent(agentId: string, params?: GetAgentParams, options?: CallOptions): Promise<Agent>;
32
- /**
33
- * Get an agent by its ID.
34
- * @param agentId - The ID of the agent to retrieve.
35
- * @param options - The API call options.
36
- * @returns The retrieved agent.
37
- */
38
14
  getAgentVersions(agentId: string, options?: CallOptions): Promise<AgentVersion[]>;
39
- /**
40
- * Update an agent by its ID.
41
- * @param agentId - The ID of the agent to update.
42
- * @param params - The update agent parameters.
43
- * @param options - The API call options.
44
- * @returns The updated agent.
45
- */
46
15
  updateAgent(agentId: string, params: UpdateAgent, options?: CallOptions): Promise<Agent>;
47
- /**
48
- * Delete an agent by its ID.
49
- * @param agentId - The ID of the agent to delete.
50
- * @param options - The API call options.
51
- * @returns The deleted agent.
52
- */
53
16
  deleteAgent(agentId: string, options?: CallOptions): Promise<Agent>;
54
- /**
55
- * Releases agent's development version by ID.
56
- * @param agentId - The ID of the agent to delete.
57
- * @param data - The release label and notes.
58
- * @param options - The API call options.
59
- */
60
17
  releaseAgent(agentId: string, data: ReleaseVersion, options?: CallOptions): Promise<void>;
61
- /**
62
- * Set an agent action.
63
- * @param agentId - The ID of the agent to delete.
64
- * @param params - Set action params.
65
- * @param options - The API call options.
66
- * @returns The deleted agent.
67
- */
68
18
  setAgentAction(agentId: string, params: AgentAction, options?: CallOptions): Promise<AgentAction>;
69
- /**
70
- * Delete an agent action.
71
- * @param agentId - The ID of the agent to delete.
72
- * @param actionName - Set action params.
73
- * @param options - The API call options.
74
- * @returns The deleted agent.
75
- */
76
19
  deleteAgentAction(agentId: string, actionName: string, options?: CallOptions): Promise<AgentAction>;
77
- /**
78
- * Retrieves a list of agent executions for a given agent.
79
- *
80
- * @param agentId - The ID of the agent.
81
- * @param params - Optional parameters for pagination (size, from etc).
82
- * @param options - Optional call options.
83
- * @returns A promise that resolves to an array of objects.
84
- */
85
20
  getAgentExecutionList(agentId: string, params?: {
86
21
  size?: number;
87
22
  from?: number;
@@ -95,169 +30,38 @@ export declare class Agents extends Base {
95
30
  to?: Date;
96
31
  };
97
32
  }, options?: CallOptions): Promise<ExecutionList>;
98
- /**
99
- * Retrieves the execution details of a specific agent.
100
- *
101
- * @param agentId - The ID of the agent.
102
- * @param executionId - The ID of the execution.
103
- * @param options - Additional options for the API call.
104
- * @returns A Promise that resolves to the AgentExecutionHistory object representing the execution details.
105
- */
106
33
  getAgentExecution(agentId: string, executionId: string, params?: {
107
34
  orderBy?: string;
108
35
  order?: 'ASC' | 'DESC';
109
36
  }, options?: CallOptions): Promise<Execution>;
110
- /**
111
- * Partially updates an execution belonging to an agent.
112
- *
113
- * This method performs a PATCH request and updates only the provided fields.
114
- * Currently, the API supports patching the `summary` field.
115
- *
116
- * @param agentId - The ID of the agent that owns the execution.
117
- * @param executionId - The ID of the execution to patch.
118
- * @param patch - Partial execution data to update (currently: `summary`).
119
- * @param options - Optional request options.
120
- * @returns A promise that resolves when the patch operation completes.
121
- */
122
37
  patchAgentExecution(agentId: string, executionId: string, patch: {
123
38
  summary?: string;
124
39
  }, options?: CallOptions): Promise<unknown>;
125
- /**
126
- * Deletes an agent execution.
127
- * @param agentId - The ID of the agent.
128
- * @param executionId - The ID of the execution.
129
- * @param options - Optional call options.
130
- * @returns A promise that resolves to the deleted agent action.
131
- */
132
40
  deleteAgentExecution(agentId: string, executionId: string, options?: CallOptions): Promise<unknown>;
133
- /**
134
- * Runs an agent with the specified agent ID and parameters.
135
- *
136
- * @param agentId - The ID of the agent to run.
137
- * @param executionId - The execution ID of the agent to run.
138
- * @param params - The parameters for running the agent.
139
- * @param options - The optional call options.
140
- * @returns A promise that resolves to the response of running the agent.
141
- */
142
41
  runAgent(agentId: string, executionId: string, params: RunAgentParams, options?: CallOptions): Promise<RunAgentResponse>;
143
- /**
144
- * Set the session ID.
145
- * @param sessionId - The session ID to set.
146
- * @returns The session ID.
147
- */
148
42
  setSessionId(sessionId: string): string;
149
- /**
150
- * Find agents with optional pagination and query.
151
- * @param params - Optional find parameters.
152
- * @param options - The API call options.
153
- * @returns An array of agents.
154
- */
155
43
  findTemplates(params?: FindTemplatesOptions, options?: CallOptions): Promise<List<Partial<Template>>>;
156
- /**
157
- * Get a template by its ID.
158
- * @param templateId - The ID of the template to retrieve.
159
- * @param options - The API call options.
160
- * @returns The retrieved template.
161
- */
162
44
  getTemplate(templateId: string, options?: CallOptions): Promise<Template>;
163
- /**
164
- * Create a new template.
165
- * @param params - The template creation parameters.
166
- * @param options - The API call options.
167
- * @returns The created template.
168
- */
169
45
  createTemplate(params: CreateTemplateParams, options?: CallOptions): Promise<Template>;
170
- /**
171
- * Delete a template by its ID.
172
- * @param templateId - The ID of the template to update.
173
- * @param params - The update template parameters.
174
- * @param options - The API call options.
175
- * @returns The updated template.
176
- */
177
46
  deleteTemplate(templateId: string, options?: CallOptions): Promise<Template>;
178
- /**
179
- * Get markdown for passed url
180
- * @param url - The web page url.
181
- * @param question - The question to search.
182
- * @param options - The API call options.
183
- * @returns The markdown page passages.
184
- */
185
47
  htmlToPassages(url: string, question: string, options?: CallOptions): Promise<string[]>;
186
- /**
187
- * Creates one or multiple agent test cases by sending a POST request to the 'agents/testing' endpoint.
188
- *
189
- * @param cases - A single test case or an array of test cases to be created.
190
- * @returns A promise that resolves to an array of created test cases.
191
- */
192
48
  createAgentTestCase(cases: CreateTestCase | CreateTestCase[]): Promise<TestCase | TestCase[]>;
193
- /**
194
- * Updates an existing agent test case with the specified parameters.
195
- *
196
- * @param testCaseId - The unique identifier of the test case to update.
197
- * @param params - The updated test case data.
198
- * @param options - Optional call options for the request.
199
- * @returns A promise that resolves to the updated test case.
200
- */
201
49
  updateAgentTestCase(testCaseId: string, params: Partial<CreateTestCase>, options?: CallOptions): Promise<TestCase>;
202
- /**
203
- * Deletes a specific agent test case by its ID.
204
- *
205
- * @param testCaseId - The unique identifier of the test case to delete.
206
- * @param options - Optional call options to customize the request.
207
- * @returns A promise that resolves to the deleted test case object.
208
- */
209
50
  deleteAgentTestCase(testCaseId: string, options?: CallOptions): Promise<TestCase>;
210
- /**
211
- * Fetches the test cases for a specific agent version.
212
- *
213
- * @param agentId - The unique identifier of the agent.
214
- * @param agentVersionId - The unique identifier of the agent version.
215
- * @param params - Optional query parameters to include in the request.
216
- * @param options - Optional call options for the request.
217
- * @returns A promise that resolves to an array of test cases.
218
- */
219
51
  fetchAgentTestCases(params: {
220
52
  agentId: string;
221
53
  agentVersionId: string;
222
54
  }, options?: CallOptions): Promise<TestCase[]>;
223
- /**
224
- * Executes a set of test cases for a specific agent and its version.
225
- *
226
- * @param data - The input data required to run the test cases.
227
- * @param data.agentId - The unique identifier of the agent.
228
- * @param data.agentVersionId - The unique identifier of the agent's version.
229
- * @param data.testCaseIds - An array of test case IDs to be executed.
230
- * @returns A promise that resolves to an array of `TestCase` objects representing the results of the executed test cases.
231
- */
232
55
  runAgentTestCase(data: {
233
56
  agentId: string;
234
57
  agentVersionId: string;
235
58
  testCaseIds: string[];
236
59
  }): Promise<TestCase[]>;
237
- /**
238
- * Terminates one or more agent test cases for a specific agent and version.
239
- *
240
- * @param data - An object containing the following properties:
241
- * - agentId: The unique identifier of the agent.
242
- * - agentVersionId: The unique identifier of the agent version.
243
- * - testCaseIds: An array of test case IDs to terminate.
244
- * @returns A promise that resolves to an array of terminated `TestCase` objects.
245
- */
246
60
  terminateAgentTestCase(data: {
247
61
  agentId: string;
248
62
  agentVersionId: string;
249
63
  testCaseIds: string[];
250
64
  }): Promise<TestCase[]>;
251
- /**
252
- *
253
- * @param agentId Id of an agent to configure
254
- * @param agentVersionId VersionId of the agent
255
- * @param executionId ExecutionId to create a session
256
- * @param flowId FlowId from where session was created
257
- * @param overrides Overrides to merge
258
- * @param option Call options
259
- * @returns Configured agent
260
- */
261
65
  configureAgent(agentId: string, agentVersionId: string, executionId: string, flowId: string, overrides: Partial<Agent>, options?: CallOptions): Promise<Agent>;
262
66
  createResponse(requestBody: OpenAI.Responses.ResponseCreateParamsNonStreaming & Record<string, unknown>, options?: CallOptions): Promise<OpenAI.Responses.Response & {
263
67
  _request_id?: string | null;
@@ -1 +1 @@
1
- {"version":3,"file":"Agents.d.ts","sourceRoot":"","sources":["../../src/Agents.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Agents.d.ts","sourceRoot":"","sources":["../../src/Agents.ts"],"names":[],"mappings":"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"}
@@ -2,251 +2,76 @@ import type { Activity } from '@caretakerai/agent';
2
2
  import { List, OrderDirection, Token } from '@or-sdk/base';
3
3
  import type { Bot } from '@or-sdk/bots';
4
4
  import type { Flow } from '@or-sdk/deployer';
5
- /**
6
- * Represents an activity performed by the agent, such as an observation, thought, or action.
7
- */
8
5
  export type AgentActivity = Pick<Activity, 'input' | 'kind'>;
9
- /**
10
- * Defines call options for asynchronous operations, including the ability to cancel them.
11
- */
12
6
  export type CallOptions = {
13
- /**
14
- * An optional AbortSignal to cancel the request.
15
- */
16
7
  signal?: AbortSignal;
17
8
  };
18
- /**
19
- * Configuration options required for initializing agents, including authentication and service URLs.
20
- */
21
9
  export type AgentsConfig = {
22
- /**
23
- * Authentication token for service access.
24
- */
25
10
  token: Token;
26
- /**
27
- * Optional URL for the OneReach service discovery API.
28
- */
29
11
  discoveryUrl?: string;
30
- /**
31
- * Optional account ID for making cross-account requests. This is typically required for super admin users.
32
- */
33
12
  accountId?: string;
34
- /**
35
- * Optional URL of the OneReach lookup API.
36
- */
37
13
  serviceUrl?: string;
38
- /**
39
- * Optional feature name for the agent. Defaults to 'master' if not provided.
40
- */
41
14
  feature?: string;
42
- /**
43
- * Flow SessionID (Used for correct tracking)
44
- */
45
15
  sessionId?: string;
46
- /**
47
- * Flow beginningSessionId (Used for correct tracking)
48
- */
49
16
  beginningSessionId?: string;
50
17
  };
51
- /**
52
- * Options for configuring the behavior and output of the agent's underlying language model.
53
- */
54
18
  export type AgentModelOptions = {
55
- /**
56
- * Controls the randomness of the output. Higher values may lead to more creative responses.
57
- */
58
19
  temperature: number;
59
- /**
60
- * The maximum length of the output generated by the language model.
61
- */
62
20
  maxTokens: number;
63
- /**
64
- * Adjusts the likelihood of the model repeating the same line of thinking.
65
- */
66
21
  frequencyPenalty: number;
67
- /**
68
- * Discourages the model from using tokens already present in the text.
69
- */
70
22
  presencePenalty: number;
71
- /**
72
- * Specifies the name of the large language model to use.
73
- */
74
23
  modelName: string;
75
- /**
76
- * Specifies the name of the provider to use for the agent.
77
- */
78
24
  provider: string;
79
- /**
80
- * Specifies the name of the token to use for the agent.
81
- */
82
25
  tokenName?: string;
83
- /**
84
- * Specifies the API type to use for the agent.
85
- */
86
26
  apiType?: APIType;
87
27
  };
88
- /**
89
- * Describes an example of how an agent action could be used, including a description and relevant activities.
90
- */
91
28
  export type ActionExample = {
92
- /**
93
- * A brief description of what the example demonstrates.
94
- */
95
29
  description: string;
96
- /**
97
- * A series of activities associated with the example.
98
- */
99
30
  activities: AgentActivity[];
100
31
  };
101
- /**
102
- * Defines an action that an agent can perform, including querying and mutation operations.
103
- */
104
32
  export type AgentAction = {
105
- /**
106
- * The name of the action.
107
- */
108
33
  name: string;
109
- /**
110
- * A detailed description of the action.
111
- */
112
34
  description: string;
113
- /**
114
- * The type definitions associated with the action, described in a schema language.
115
- */
116
35
  typeDefs: string;
117
36
  typeDefsCodeMode?: boolean;
118
- /**
119
- * Optional examples that illustrate how the action can be used.
120
- */
121
37
  examples?: ActionExample[];
122
- /**
123
- * Allow to disable the action.
124
- */
125
38
  disabled?: boolean;
126
- /**
127
- * Json example of input and result of the action in JSON format
128
- */
129
39
  outputExample: {
130
40
  result: Record<string, unknown>;
131
41
  input: Record<string, unknown>;
132
42
  };
133
43
  };
134
- /**
135
- * Represents a digital agent capable of performing actions and processing information based on a given model.
136
- */
137
44
  export type Agent = {
138
- /**
139
- * Unique identifier for the agent.
140
- */
141
45
  id: string;
142
- /**
143
- * The account ID associated with the agent.
144
- */
145
46
  accountId: string;
146
- /**
147
- * The name of the agent, which must start with a capital letter.
148
- */
149
47
  name: string;
150
- /**
151
- * Optional description of the agent's purpose and capabilities.
152
- */
153
48
  description: string;
154
- /**
155
- * URL to an image representing the agent.
156
- */
157
49
  image: string;
158
- /**
159
- * Optional metadata associated with the agent.
160
- */
161
50
  meta?: Record<string, unknown>;
162
- /**
163
- * A list of actions the agent is capable of performing.
164
- */
165
51
  actions: AgentAction[];
166
- /**
167
- * The readonly definitions associated with the all the actions, described in a schema language.
168
- */
169
52
  typeDefs: string;
170
- /**
171
- * A description of the objective or goal the agent is designed to achieve.
172
- */
173
53
  objective: string;
174
- /**
175
- * Configuration options for the agent's model, affecting performance and output.
176
- */
177
54
  model: AgentModelOptions;
178
- /**
179
- * The date and time when the agent was created.
180
- */
181
55
  createdAt: string | Date;
182
- /**
183
- * The date and time when the agent was last updated.
184
- */
185
56
  updatedAt: string | Date;
186
- /**
187
- * A starter history of historical interactions or activities for the agent, which can influence its behavior.
188
- */
189
57
  starterHistory: AgentActivity[];
190
- /**
191
- * Knowledge lookup collections
192
- */
193
58
  collections?: {
194
59
  id: string;
195
60
  name: string;
196
61
  }[];
197
- /**
198
- * Allow to use web search
199
- */
200
62
  webSearch?: boolean;
201
- /**
202
- * Scenario Graph source
203
- */
204
63
  scenarioGraphSource: ScenarioGraph;
205
- /**
206
- * Scenario Graph code in GraphViz
207
- */
208
64
  scenarioGraphCode: string;
209
- /**
210
- * Agent's memory definitions
211
- */
212
65
  memoryDefs: string;
213
66
  memoryCodeMode: boolean;
214
- /**
215
- * Agent's memory example in JSON format, generated from memoryDefs
216
- */
217
67
  memoryExample: Record<string, unknown>;
218
- /**
219
- * Agent version's release notes
220
- */
221
68
  releaseNotes?: string;
222
- /**
223
- * Agent version's release date
224
- */
225
69
  releasedAt?: string | Date;
226
- /**
227
- * Agent version's date of creation
228
- */
229
70
  versionCreatedAt: string | Date;
230
- /**
231
- * Agent version's ID
232
- */
233
71
  versionId: string;
234
- /**
235
- * Agent version's label
236
- */
237
72
  versionLabel: string;
238
- /**
239
- * Agent version's date of update
240
- */
241
73
  versionUpdatedAt: string | Date;
242
- /**
243
- * List of available agent versions meta info
244
- */
245
74
  versions: VersionMeta[];
246
- /**
247
- * Collaboration agents
248
- * version ID is optional for use the latest development version
249
- */
250
75
  collaborationAgents: {
251
76
  id: string;
252
77
  name: string;
@@ -254,244 +79,82 @@ export type Agent = {
254
79
  flowId?: string;
255
80
  disabled: boolean;
256
81
  }[];
257
- /**
258
- * Collaboration definitions
259
- */
260
82
  collaborationDefs: string;
261
- /**
262
- * Collaboration example in JSON format, generated from collaborationDefs
263
- */
264
83
  collaborationExample: {
265
84
  result: Record<string, unknown>;
266
85
  input: Record<string, unknown>;
267
86
  };
268
- /**
269
- * The maximum number of iterations the agent can perform.
270
- */
271
87
  maxIterations?: number;
272
- /**
273
- * The maximum number of retries for actions.
274
- */
275
88
  maxRetries?: number;
276
- /**
277
- * The maximum number of activities present in LLM prompt.
278
- */
279
89
  historyLength?: number;
280
90
  };
281
91
  export type VersionMeta = {
282
- /**
283
- * Agent version's release date
284
- */
285
92
  releasedAt?: string | Date;
286
- /**
287
- * Agent version's release notes
288
- */
289
93
  releaseNotes?: string;
290
- /**
291
- * Agent version's date of update
292
- */
293
94
  updatedBy: string;
294
- /**
295
- * Agent version's ID
296
- */
297
95
  versionId: string;
298
- /**
299
- * Agent version's label
300
- */
301
96
  versionLabel: string;
302
- /**
303
- * Agent version's date of update
304
- */
305
97
  versionUpdatedAt: string | Date;
306
98
  };
307
- /**
308
- * Defines the properties that can be modified when updating an existing agent.
309
- */
310
99
  export type UpdateAgent = Partial<Omit<Agent, 'id' | 'createdAt' | 'updatedAt' | 'accountId' | 'typeDefs'>>;
311
- /**
312
- * Defines the properties required to create a new agent, excluding those automatically assigned upon creation.
313
- */
314
100
  export type CreateAgent = Pick<Agent, 'name'> & UpdateAgent;
315
- /**
316
- * Options for querying the list of agents, including search parameters and pagination controls.
317
- */
318
101
  export type FindAgentsOptions = {
319
- /**
320
- * Pagination offset for retrieving a subset of agents.
321
- */
322
102
  from?: number;
323
- /**
324
- * Maximum number of agents to retrieve per page.
325
- */
326
103
  size?: number;
327
- /**
328
- * Text query for searching agents by name, description, or other attributes.
329
- */
330
104
  query?: string | {
331
105
  meta: Record<string, unknown>;
332
106
  };
333
- /**
334
- * The property name by which to order the results.
335
- */
336
107
  orderProperty?: string;
337
- /**
338
- * The direction in which to order the results, either ascending or descending.
339
- */
340
108
  orderDirection?: OrderDirection;
341
109
  };
342
- /**
343
- * Represents a list of executions, including metadata for pagination and record retrieval.
344
- */
345
110
  export type ExecutionList = List<{
346
- /**
347
- * Unique identifier for the agent execution.
348
- */
349
111
  id: string;
350
- /**
351
- * Summary from first user message
352
- */
353
112
  summary?: string;
354
- /**
355
- * Flow ID
356
- */
357
113
  flowId?: string;
358
- /**
359
- * Agent ID
360
- */
361
114
  agentId: string;
362
- /**
363
- * Used completion tokens
364
- */
365
115
  totalCompletionTokens: number;
366
- /**
367
- * Used prompt tokens
368
- */
369
116
  totalPromptTokens: number;
370
- /**
371
- * Created date
372
- */
373
117
  createdAt: string;
374
- /**
375
- * Updated date
376
- */
377
118
  updatedAt: string;
378
119
  }>;
379
120
  export type Execution = {
380
121
  history: (AgentActivity & {
381
- /**
382
- * Sequence number of the activity in the execution.
383
- */
384
122
  id?: number;
385
- /**
386
- * Created date
387
- */
388
123
  createdAt: string;
389
- /**
390
- * Updated date
391
- */
392
124
  updatedAt: string;
393
- /**
394
- * Agent overrides
395
- */
396
125
  overrides: Partial<Agent> & {
397
126
  memory: Record<string, unknown>;
398
127
  task: Record<string, unknown>;
399
128
  };
400
- /**
401
- * Model params
402
- */
403
129
  model: Partial<AgentModelOptions>;
404
130
  })[];
405
- /**
406
- * Used completion tokens
407
- */
408
131
  totalCompletionTokens: number;
409
- /**
410
- * Used prompt tokens
411
- */
412
132
  totalPromptTokens: number;
413
- /**
414
- * Flow ID
415
- */
416
133
  flowId?: string;
417
134
  };
418
- /**
419
- * Parameters for running an agent, including optional agent properties and execution context.
420
- */
421
135
  export type RunAgentParams = Partial<Agent> & {
422
- /**
423
- * A list of activities or events that have occurred prior to running the agent, influencing its behavior.
424
- */
425
136
  history: AgentActivity[];
426
- /**
427
- * Optional identifier for the event triggering the agent execution.
428
- */
429
137
  eventId?: string;
430
- /**
431
- * Optional objective or goal for the agent to achieve during execution.
432
- */
433
138
  objective?: string;
434
- /**
435
- * Optional version ID of the agent to run.
436
- */
437
139
  versionId?: string;
438
- /**
439
- * Optional context for the agent execution.
440
- */
441
140
  memory?: Record<string, unknown>;
442
- /**
443
- * Optional context for collaboration.
444
- */
445
141
  task?: Record<string, unknown>;
446
142
  };
447
- /**
448
- * Response from running an agent, including execution results and metadata.
449
- */
450
143
  export type RunAgentResponse = {
451
- /**
452
- * Results of the agent execution, organized by action name and containing input data.
453
- */
454
144
  results: {
455
- /**
456
- * Data generated by the agent execution, keyed by action name.
457
- */
458
145
  data: {
459
146
  [actionName: string]: {
460
- /**
461
- * Name of the action performed by the agent.
462
- */
463
147
  action: string;
464
- /**
465
- * Input data provided to the agent for the action.
466
- */
467
148
  input: object;
468
149
  };
469
150
  };
470
151
  };
471
- /**
472
- * Unique identifier for the agent execution.
473
- */
474
152
  executionId: string;
475
- /**
476
- * Optional identifier for the event triggering the agent execution.
477
- */
478
153
  eventId?: string;
479
- /**
480
- * All history of run agent during execution
481
- **/
482
154
  history: Execution['history'];
483
155
  };
484
- /**
485
- * Defines the type of API to use for agent interactions.
486
- */
487
156
  export declare enum APIType {
488
- /**
489
- * Use the Responses API.
490
- */
491
157
  Responses = "Responses",
492
- /**
493
- * Use the ChatCompletion API.
494
- */
495
158
  ChatCompletion = "ChatCompletion"
496
159
  }
497
160
  export declare enum TemplateTypeEnum {
@@ -550,9 +213,6 @@ export type CreateTemplateParams = {
550
213
  }[];
551
214
  type?: TemplateTypeEnum;
552
215
  };
553
- /**
554
- * Represents a node in a scenario graph.
555
- */
556
216
  export type Node = {
557
217
  id: string;
558
218
  label: string;
@@ -568,9 +228,6 @@ export type Node = {
568
228
  y: number;
569
229
  };
570
230
  };
571
- /**
572
- * Represents a connection between two nodes in a scenario graph.
573
- */
574
231
  export type Connection = {
575
232
  id: string;
576
233
  source: string;
@@ -578,110 +235,40 @@ export type Connection = {
578
235
  target: string;
579
236
  targetInput: string;
580
237
  };
581
- /**
582
- * Represents a scenario graph, consisting of nodes and connections.
583
- */
584
238
  export type ScenarioGraph = {
585
239
  nodes?: Node[];
586
240
  connections?: Connection[];
587
241
  };
588
- /**
589
- * Represents required meta information for the version to be released
590
- */
591
242
  export type ReleaseVersion = {
592
- /**
593
- * Released version label
594
- */
595
243
  label: string;
596
- /**
597
- * Release notes
598
- */
599
244
  notes: string;
600
245
  };
601
246
  export type GetAgentParams = {
602
- /**
603
- * Id of agent version, if absent, development version will be used.
604
- */
605
247
  versionId?: string;
606
- /**
607
- * Available accounts to switch to if agent is found there
608
- */
609
248
  availableAccounts?: string[];
610
249
  };
611
250
  export type AgentVersion = {
612
- /**
613
- * Agent version's ID
614
- */
615
251
  versionId: string;
616
- /**
617
- * Agent version's release date
618
- */
619
252
  releasedAt: string | null;
620
- /**
621
- * Agent version's label
622
- */
623
253
  versionLabel: string;
624
- /**
625
- * Release notes for the agent version
626
- */
627
254
  releaseNotes: string;
628
- /**
629
- * Agent version's date of creation
630
- */
631
255
  versionUpdatedAt: string;
632
- /**
633
- * Updated by user
634
- */
635
256
  updatedBy: string | null;
636
257
  };
637
258
  export type TestCase = {
638
- /**
639
- * Unique identifier for the test case.
640
- */
641
259
  id: string;
642
- /**
643
- * Created date
644
- */
645
260
  updatedAt?: Date;
646
- /**
647
- * Updated date
648
- */
649
261
  createdAt?: Date;
650
- /**
651
- * The ID of the agent associated with the test case.
652
- */
653
262
  agentId: string;
654
- /**
655
- * The ID of the agent version associated with the test case.
656
- */
657
263
  agentVersionId: string;
658
- /**
659
- * estimated history example
660
- */
661
264
  steps: AgentActivity[];
662
- /**
663
- * short summary of the test case
664
- */
665
265
  summary: string;
666
- /**
667
- * detailed description of the test case
668
- */
669
266
  description: string;
670
- /**
671
- * number of retries for the test case
672
- */
673
267
  retries: number;
674
- /**
675
- * context for the test case
676
- * this context will be used to run the test case
677
- */
678
268
  context?: {
679
269
  memory?: Record<string, unknown>;
680
270
  task?: Record<string, unknown>;
681
271
  };
682
- /**
683
- * The expected output of the test case.
684
- */
685
272
  testResults?: TestResult[];
686
273
  };
687
274
  export type CreateTestCase = Omit<TestCase, 'id' | 'createdAt' | 'updatedAt' | 'testResults'>;
@@ -696,41 +283,13 @@ export declare enum TestResultVerdict {
696
283
  TERMINATED = "TERMINATED"
697
284
  }
698
285
  export type TestResult = {
699
- /**
700
- * Unique identifier for the test result.
701
- */
702
286
  id: string;
703
- /**
704
- * The ID of the test case associated with the test result.
705
- */
706
287
  testCaseId: string;
707
- /**
708
- * Created date
709
- */
710
288
  updatedAt?: Date;
711
- /**
712
- * Updated date
713
- */
714
289
  createdAt?: Date;
715
- /**
716
- * execution ID of the test case
717
- */
718
290
  executionId?: string;
719
- /**
720
- * Current status of the test result.
721
- * Possible values include 'PENDING', 'PASSED', and 'FAILED'.
722
- * 'PENDING' indicates that the test case is still running.
723
- * 'PASSED' indicates that the test case has passed successfully.
724
- * 'FAILED' indicates that the test case has failed.
725
- */
726
291
  status: TestResultVerdict;
727
- /**
728
- * Prompt that will be used for agent improvements based on testing results.
729
- */
730
292
  improvePrompt?: string;
731
- /**
732
- * The expected output of the test case.
733
- */
734
293
  result?: {
735
294
  executions: {
736
295
  executionId: string;
@@ -748,9 +307,6 @@ export type TestResult = {
748
307
  overallVerdict: TestResultVerdict;
749
308
  overallScore: number;
750
309
  };
751
- /**
752
- * The actual output of the test case.
753
- */
754
310
  error?: Record<string, unknown>;
755
311
  };
756
312
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@or-sdk/agents",
3
- "version": "4.18.1",
3
+ "version": "4.18.2-beta.4012.0",
4
4
  "license": "Apache-2.0",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@graphql-tools/merge": "^9.0.7",
23
23
  "@graphql-tools/schema": "^10.0.6",
24
- "@or-sdk/base": "^0.43.0",
25
- "@or-sdk/bots": "^1.6.0",
26
- "@or-sdk/deployer": "^1.7.0",
24
+ "@or-sdk/base": "^0.44.0-beta.4012.0",
25
+ "@or-sdk/bots": "^1.6.1-beta.4012.0",
26
+ "@or-sdk/deployer": "^1.7.1-beta.4012.0",
27
27
  "dedent": "^1.5.1",
28
28
  "graphql": "^16.8.1",
29
29
  "graphql-tag": "^2.12.6",
@@ -39,6 +39,5 @@
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
42
- },
43
- "gitHead": "480349cb6b36e66aea6b9b63b93ed61c95497f94"
42
+ }
44
43
  }