-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathagents.ts
254 lines (213 loc) · 5.45 KB
/
agents.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../resource';
import * as Core from '../../core';
import * as Shared from '../shared';
import * as SessionAPI from './session';
import {
Session,
SessionCreateParams,
SessionCreateResponse,
SessionResource,
SessionRetrieveParams,
} from './session';
import * as StepsAPI from './steps';
import { StepRetrieveResponse, Steps } from './steps';
import * as TurnAPI from './turn';
import {
AgentTurnResponseStreamChunk,
Turn,
TurnCreateParams,
TurnCreateParamsNonStreaming,
TurnCreateParamsStreaming,
TurnResource,
TurnResponseEvent,
TurnResponseEventPayload,
TurnResumeParams,
TurnResumeParamsNonStreaming,
TurnResumeParamsStreaming,
} from './turn';
export class Agents extends APIResource {
session: SessionAPI.SessionResource = new SessionAPI.SessionResource(this._client);
steps: StepsAPI.Steps = new StepsAPI.Steps(this._client);
turn: TurnAPI.TurnResource = new TurnAPI.TurnResource(this._client);
/**
* Create an agent with the given configuration.
*/
create(body: AgentCreateParams, options?: Core.RequestOptions): Core.APIPromise<AgentCreateResponse> {
return this._client.post('/v1/agents', { body, ...options });
}
/**
* Delete an agent by its ID.
*/
delete(agentId: string, options?: Core.RequestOptions): Core.APIPromise<void> {
return this._client.delete(`/v1/agents/${agentId}`, {
...options,
headers: { Accept: '*/*', ...options?.headers },
});
}
}
/**
* An inference step in an agent turn.
*/
export interface InferenceStep {
/**
* The response from the LLM.
*/
model_response: Shared.CompletionMessage;
/**
* The ID of the step.
*/
step_id: string;
step_type: 'inference';
/**
* The ID of the turn.
*/
turn_id: string;
/**
* The time the step completed.
*/
completed_at?: string;
/**
* The time the step started.
*/
started_at?: string;
}
/**
* A memory retrieval step in an agent turn.
*/
export interface MemoryRetrievalStep {
/**
* The context retrieved from the vector databases.
*/
inserted_context: Shared.InterleavedContent;
/**
* The ID of the step.
*/
step_id: string;
step_type: 'memory_retrieval';
/**
* The ID of the turn.
*/
turn_id: string;
/**
* The IDs of the vector databases to retrieve context from.
*/
vector_db_ids: string;
/**
* The time the step completed.
*/
completed_at?: string;
/**
* The time the step started.
*/
started_at?: string;
}
/**
* A shield call step in an agent turn.
*/
export interface ShieldCallStep {
/**
* The ID of the step.
*/
step_id: string;
step_type: 'shield_call';
/**
* The ID of the turn.
*/
turn_id: string;
/**
* The time the step completed.
*/
completed_at?: string;
/**
* The time the step started.
*/
started_at?: string;
/**
* The violation from the shield call.
*/
violation?: Shared.SafetyViolation;
}
/**
* A tool execution step in an agent turn.
*/
export interface ToolExecutionStep {
/**
* The ID of the step.
*/
step_id: string;
step_type: 'tool_execution';
/**
* The tool calls to execute.
*/
tool_calls: Array<Shared.ToolCall>;
/**
* The tool responses from the tool calls.
*/
tool_responses: Array<ToolResponse>;
/**
* The ID of the turn.
*/
turn_id: string;
/**
* The time the step completed.
*/
completed_at?: string;
/**
* The time the step started.
*/
started_at?: string;
}
export interface ToolResponse {
call_id: string;
/**
* A image content item
*/
content: Shared.InterleavedContent;
tool_name: 'brave_search' | 'wolfram_alpha' | 'photogen' | 'code_interpreter' | (string & {});
metadata?: Record<string, boolean | number | string | Array<unknown> | unknown | null>;
}
export interface AgentCreateResponse {
agent_id: string;
}
export interface AgentCreateParams {
/**
* The configuration for the agent.
*/
agent_config: Shared.AgentConfig;
}
Agents.SessionResource = SessionResource;
Agents.Steps = Steps;
Agents.TurnResource = TurnResource;
export declare namespace Agents {
export {
type InferenceStep as InferenceStep,
type MemoryRetrievalStep as MemoryRetrievalStep,
type ShieldCallStep as ShieldCallStep,
type ToolExecutionStep as ToolExecutionStep,
type ToolResponse as ToolResponse,
type AgentCreateResponse as AgentCreateResponse,
type AgentCreateParams as AgentCreateParams,
};
export {
SessionResource as SessionResource,
type Session as Session,
type SessionCreateResponse as SessionCreateResponse,
type SessionCreateParams as SessionCreateParams,
type SessionRetrieveParams as SessionRetrieveParams,
};
export { Steps as Steps, type StepRetrieveResponse as StepRetrieveResponse };
export {
TurnResource as TurnResource,
type AgentTurnResponseStreamChunk as AgentTurnResponseStreamChunk,
type Turn as Turn,
type TurnResponseEvent as TurnResponseEvent,
type TurnResponseEventPayload as TurnResponseEventPayload,
type TurnCreateParams as TurnCreateParams,
type TurnCreateParamsNonStreaming as TurnCreateParamsNonStreaming,
type TurnCreateParamsStreaming as TurnCreateParamsStreaming,
type TurnResumeParams as TurnResumeParams,
type TurnResumeParamsNonStreaming as TurnResumeParamsNonStreaming,
type TurnResumeParamsStreaming as TurnResumeParamsStreaming,
};
}