@agent-factory-platform/client 0.2.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/dist/document-assistant-model.d.ts +50 -0
- package/dist/document-assistant-model.d.ts.map +1 -0
- package/dist/document-assistant-model.js +104 -0
- package/dist/document-assistant-model.js.map +1 -0
- package/dist/gen/agentfactory/agent/v1/agent_pb.d.ts +2242 -0
- package/dist/gen/agentfactory/agent/v1/agent_pb.d.ts.map +1 -0
- package/dist/gen/agentfactory/agent/v1/agent_pb.js +457 -0
- package/dist/gen/agentfactory/agent/v1/agent_pb.js.map +1 -0
- package/dist/gen/agentfactory/docs/v1/docs_pb.d.ts +1172 -0
- package/dist/gen/agentfactory/docs/v1/docs_pb.d.ts.map +1 -0
- package/dist/gen/agentfactory/docs/v1/docs_pb.js +287 -0
- package/dist/gen/agentfactory/docs/v1/docs_pb.js.map +1 -0
- package/dist/index.d.ts +453 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +46 -0
- package/dist/index.js.map +1 -0
- package/dist/session-model.d.ts +122 -0
- package/dist/session-model.d.ts.map +1 -0
- package/dist/session-model.js +343 -0
- package/dist/session-model.js.map +1 -0
- package/package.json +43 -0
|
@@ -0,0 +1,2242 @@
|
|
|
1
|
+
import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { EmptySchema, Timestamp, Value } from "@bufbuild/protobuf/wkt";
|
|
3
|
+
import type { JsonObject, Message } from "@bufbuild/protobuf";
|
|
4
|
+
/**
|
|
5
|
+
* Describes the file agentfactory/agent/v1/agent.proto.
|
|
6
|
+
*/
|
|
7
|
+
export declare const file_agentfactory_agent_v1_agent: GenFile;
|
|
8
|
+
/**
|
|
9
|
+
* @generated from message agentfactory.agent.v1.Session
|
|
10
|
+
*/
|
|
11
|
+
export type Session = Message<"agentfactory.agent.v1.Session"> & {
|
|
12
|
+
/**
|
|
13
|
+
* @generated from field: string id = 1;
|
|
14
|
+
*/
|
|
15
|
+
id: string;
|
|
16
|
+
/**
|
|
17
|
+
* @generated from field: string profile_revision_id = 2;
|
|
18
|
+
*/
|
|
19
|
+
profileRevisionId: string;
|
|
20
|
+
/**
|
|
21
|
+
* @generated from field: uint64 last_event_seq = 3;
|
|
22
|
+
*/
|
|
23
|
+
lastEventSeq: bigint;
|
|
24
|
+
/**
|
|
25
|
+
* @generated from field: string active_run_id = 4;
|
|
26
|
+
*/
|
|
27
|
+
activeRunId: string;
|
|
28
|
+
/**
|
|
29
|
+
* @generated from field: google.protobuf.Timestamp created_at = 5;
|
|
30
|
+
*/
|
|
31
|
+
createdAt?: Timestamp;
|
|
32
|
+
/**
|
|
33
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 6;
|
|
34
|
+
*/
|
|
35
|
+
updatedAt?: Timestamp;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* Describes the message agentfactory.agent.v1.Session.
|
|
39
|
+
* Use `create(SessionSchema)` to create a new message.
|
|
40
|
+
*/
|
|
41
|
+
export declare const SessionSchema: GenMessage<Session>;
|
|
42
|
+
/**
|
|
43
|
+
* @generated from message agentfactory.agent.v1.CreateSessionRequest
|
|
44
|
+
*/
|
|
45
|
+
export type CreateSessionRequest = Message<"agentfactory.agent.v1.CreateSessionRequest"> & {
|
|
46
|
+
/**
|
|
47
|
+
* @generated from field: string profile_revision_id = 1;
|
|
48
|
+
*/
|
|
49
|
+
profileRevisionId: string;
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* Describes the message agentfactory.agent.v1.CreateSessionRequest.
|
|
53
|
+
* Use `create(CreateSessionRequestSchema)` to create a new message.
|
|
54
|
+
*/
|
|
55
|
+
export declare const CreateSessionRequestSchema: GenMessage<CreateSessionRequest>;
|
|
56
|
+
/**
|
|
57
|
+
* @generated from message agentfactory.agent.v1.ListSessionsRequest
|
|
58
|
+
*/
|
|
59
|
+
export type ListSessionsRequest = Message<"agentfactory.agent.v1.ListSessionsRequest"> & {
|
|
60
|
+
/**
|
|
61
|
+
* @generated from field: uint32 page_size = 1;
|
|
62
|
+
*/
|
|
63
|
+
pageSize: number;
|
|
64
|
+
/**
|
|
65
|
+
* @generated from field: string page_token = 2;
|
|
66
|
+
*/
|
|
67
|
+
pageToken: string;
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* Describes the message agentfactory.agent.v1.ListSessionsRequest.
|
|
71
|
+
* Use `create(ListSessionsRequestSchema)` to create a new message.
|
|
72
|
+
*/
|
|
73
|
+
export declare const ListSessionsRequestSchema: GenMessage<ListSessionsRequest>;
|
|
74
|
+
/**
|
|
75
|
+
* @generated from message agentfactory.agent.v1.ListSessionsResponse
|
|
76
|
+
*/
|
|
77
|
+
export type ListSessionsResponse = Message<"agentfactory.agent.v1.ListSessionsResponse"> & {
|
|
78
|
+
/**
|
|
79
|
+
* @generated from field: repeated agentfactory.agent.v1.Session sessions = 1;
|
|
80
|
+
*/
|
|
81
|
+
sessions: Session[];
|
|
82
|
+
/**
|
|
83
|
+
* @generated from field: string next_page_token = 2;
|
|
84
|
+
*/
|
|
85
|
+
nextPageToken: string;
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* Describes the message agentfactory.agent.v1.ListSessionsResponse.
|
|
89
|
+
* Use `create(ListSessionsResponseSchema)` to create a new message.
|
|
90
|
+
*/
|
|
91
|
+
export declare const ListSessionsResponseSchema: GenMessage<ListSessionsResponse>;
|
|
92
|
+
/**
|
|
93
|
+
* @generated from message agentfactory.agent.v1.GetSessionRequest
|
|
94
|
+
*/
|
|
95
|
+
export type GetSessionRequest = Message<"agentfactory.agent.v1.GetSessionRequest"> & {
|
|
96
|
+
/**
|
|
97
|
+
* @generated from field: string session_id = 1;
|
|
98
|
+
*/
|
|
99
|
+
sessionId: string;
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* Describes the message agentfactory.agent.v1.GetSessionRequest.
|
|
103
|
+
* Use `create(GetSessionRequestSchema)` to create a new message.
|
|
104
|
+
*/
|
|
105
|
+
export declare const GetSessionRequestSchema: GenMessage<GetSessionRequest>;
|
|
106
|
+
/**
|
|
107
|
+
* @generated from message agentfactory.agent.v1.DeleteSessionRequest
|
|
108
|
+
*/
|
|
109
|
+
export type DeleteSessionRequest = Message<"agentfactory.agent.v1.DeleteSessionRequest"> & {
|
|
110
|
+
/**
|
|
111
|
+
* @generated from field: string session_id = 1;
|
|
112
|
+
*/
|
|
113
|
+
sessionId: string;
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* Describes the message agentfactory.agent.v1.DeleteSessionRequest.
|
|
117
|
+
* Use `create(DeleteSessionRequestSchema)` to create a new message.
|
|
118
|
+
*/
|
|
119
|
+
export declare const DeleteSessionRequestSchema: GenMessage<DeleteSessionRequest>;
|
|
120
|
+
/**
|
|
121
|
+
* @generated from message agentfactory.agent.v1.ForkSessionRequest
|
|
122
|
+
*/
|
|
123
|
+
export type ForkSessionRequest = Message<"agentfactory.agent.v1.ForkSessionRequest"> & {
|
|
124
|
+
/**
|
|
125
|
+
* @generated from field: string session_id = 1;
|
|
126
|
+
*/
|
|
127
|
+
sessionId: string;
|
|
128
|
+
/**
|
|
129
|
+
* @generated from field: uint64 through_seq = 2;
|
|
130
|
+
*/
|
|
131
|
+
throughSeq: bigint;
|
|
132
|
+
};
|
|
133
|
+
/**
|
|
134
|
+
* Describes the message agentfactory.agent.v1.ForkSessionRequest.
|
|
135
|
+
* Use `create(ForkSessionRequestSchema)` to create a new message.
|
|
136
|
+
*/
|
|
137
|
+
export declare const ForkSessionRequestSchema: GenMessage<ForkSessionRequest>;
|
|
138
|
+
/**
|
|
139
|
+
* @generated from message agentfactory.agent.v1.ContentBlock
|
|
140
|
+
*/
|
|
141
|
+
export type ContentBlock = Message<"agentfactory.agent.v1.ContentBlock"> & {
|
|
142
|
+
/**
|
|
143
|
+
* @generated from oneof agentfactory.agent.v1.ContentBlock.block
|
|
144
|
+
*/
|
|
145
|
+
block: {
|
|
146
|
+
/**
|
|
147
|
+
* @generated from field: agentfactory.agent.v1.TextBlock text = 1;
|
|
148
|
+
*/
|
|
149
|
+
value: TextBlock;
|
|
150
|
+
case: "text";
|
|
151
|
+
} | {
|
|
152
|
+
/**
|
|
153
|
+
* @generated from field: agentfactory.agent.v1.ResourceBlock resource = 2;
|
|
154
|
+
*/
|
|
155
|
+
value: ResourceBlock;
|
|
156
|
+
case: "resource";
|
|
157
|
+
} | {
|
|
158
|
+
/**
|
|
159
|
+
* @generated from field: agentfactory.agent.v1.DataBlock data = 3;
|
|
160
|
+
*/
|
|
161
|
+
value: DataBlock;
|
|
162
|
+
case: "data";
|
|
163
|
+
} | {
|
|
164
|
+
/**
|
|
165
|
+
* @generated from field: agentfactory.agent.v1.CitationBlock citation = 4;
|
|
166
|
+
*/
|
|
167
|
+
value: CitationBlock;
|
|
168
|
+
case: "citation";
|
|
169
|
+
} | {
|
|
170
|
+
case: undefined;
|
|
171
|
+
value?: undefined;
|
|
172
|
+
};
|
|
173
|
+
};
|
|
174
|
+
/**
|
|
175
|
+
* Describes the message agentfactory.agent.v1.ContentBlock.
|
|
176
|
+
* Use `create(ContentBlockSchema)` to create a new message.
|
|
177
|
+
*/
|
|
178
|
+
export declare const ContentBlockSchema: GenMessage<ContentBlock>;
|
|
179
|
+
/**
|
|
180
|
+
* @generated from message agentfactory.agent.v1.TextBlock
|
|
181
|
+
*/
|
|
182
|
+
export type TextBlock = Message<"agentfactory.agent.v1.TextBlock"> & {
|
|
183
|
+
/**
|
|
184
|
+
* @generated from field: string text = 1;
|
|
185
|
+
*/
|
|
186
|
+
text: string;
|
|
187
|
+
};
|
|
188
|
+
/**
|
|
189
|
+
* Describes the message agentfactory.agent.v1.TextBlock.
|
|
190
|
+
* Use `create(TextBlockSchema)` to create a new message.
|
|
191
|
+
*/
|
|
192
|
+
export declare const TextBlockSchema: GenMessage<TextBlock>;
|
|
193
|
+
/**
|
|
194
|
+
* @generated from message agentfactory.agent.v1.ResourceBlock
|
|
195
|
+
*/
|
|
196
|
+
export type ResourceBlock = Message<"agentfactory.agent.v1.ResourceBlock"> & {
|
|
197
|
+
/**
|
|
198
|
+
* @generated from field: string resource_id = 1;
|
|
199
|
+
*/
|
|
200
|
+
resourceId: string;
|
|
201
|
+
/**
|
|
202
|
+
* @generated from field: string media_type = 2;
|
|
203
|
+
*/
|
|
204
|
+
mediaType: string;
|
|
205
|
+
};
|
|
206
|
+
/**
|
|
207
|
+
* Describes the message agentfactory.agent.v1.ResourceBlock.
|
|
208
|
+
* Use `create(ResourceBlockSchema)` to create a new message.
|
|
209
|
+
*/
|
|
210
|
+
export declare const ResourceBlockSchema: GenMessage<ResourceBlock>;
|
|
211
|
+
/**
|
|
212
|
+
* @generated from message agentfactory.agent.v1.DataBlock
|
|
213
|
+
*/
|
|
214
|
+
export type DataBlock = Message<"agentfactory.agent.v1.DataBlock"> & {
|
|
215
|
+
/**
|
|
216
|
+
* @generated from field: string slot = 1;
|
|
217
|
+
*/
|
|
218
|
+
slot: string;
|
|
219
|
+
/**
|
|
220
|
+
* @generated from field: google.protobuf.Value value = 2;
|
|
221
|
+
*/
|
|
222
|
+
value?: Value;
|
|
223
|
+
};
|
|
224
|
+
/**
|
|
225
|
+
* Describes the message agentfactory.agent.v1.DataBlock.
|
|
226
|
+
* Use `create(DataBlockSchema)` to create a new message.
|
|
227
|
+
*/
|
|
228
|
+
export declare const DataBlockSchema: GenMessage<DataBlock>;
|
|
229
|
+
/**
|
|
230
|
+
* @generated from message agentfactory.agent.v1.CitationBlock
|
|
231
|
+
*/
|
|
232
|
+
export type CitationBlock = Message<"agentfactory.agent.v1.CitationBlock"> & {
|
|
233
|
+
/**
|
|
234
|
+
* @generated from field: string resource_id = 1;
|
|
235
|
+
*/
|
|
236
|
+
resourceId: string;
|
|
237
|
+
/**
|
|
238
|
+
* @generated from field: string label = 2;
|
|
239
|
+
*/
|
|
240
|
+
label: string;
|
|
241
|
+
/**
|
|
242
|
+
* @generated from field: string uri = 3;
|
|
243
|
+
*/
|
|
244
|
+
uri: string;
|
|
245
|
+
/**
|
|
246
|
+
* @generated from field: string excerpt = 4;
|
|
247
|
+
*/
|
|
248
|
+
excerpt: string;
|
|
249
|
+
};
|
|
250
|
+
/**
|
|
251
|
+
* Describes the message agentfactory.agent.v1.CitationBlock.
|
|
252
|
+
* Use `create(CitationBlockSchema)` to create a new message.
|
|
253
|
+
*/
|
|
254
|
+
export declare const CitationBlockSchema: GenMessage<CitationBlock>;
|
|
255
|
+
/**
|
|
256
|
+
* @generated from message agentfactory.agent.v1.SubmitInputRequest
|
|
257
|
+
*/
|
|
258
|
+
export type SubmitInputRequest = Message<"agentfactory.agent.v1.SubmitInputRequest"> & {
|
|
259
|
+
/**
|
|
260
|
+
* @generated from field: string session_id = 1;
|
|
261
|
+
*/
|
|
262
|
+
sessionId: string;
|
|
263
|
+
/**
|
|
264
|
+
* @generated from field: repeated agentfactory.agent.v1.ContentBlock content = 2;
|
|
265
|
+
*/
|
|
266
|
+
content: ContentBlock[];
|
|
267
|
+
/**
|
|
268
|
+
* [valid: followup | steer | inject]
|
|
269
|
+
*
|
|
270
|
+
* @generated from field: string delivery_mode = 3;
|
|
271
|
+
*/
|
|
272
|
+
deliveryMode: string;
|
|
273
|
+
/**
|
|
274
|
+
* @generated from field: string explicit_skill_slug = 4;
|
|
275
|
+
*/
|
|
276
|
+
explicitSkillSlug: string;
|
|
277
|
+
/**
|
|
278
|
+
* @generated from field: string idempotency_key = 5;
|
|
279
|
+
*/
|
|
280
|
+
idempotencyKey: string;
|
|
281
|
+
};
|
|
282
|
+
/**
|
|
283
|
+
* Describes the message agentfactory.agent.v1.SubmitInputRequest.
|
|
284
|
+
* Use `create(SubmitInputRequestSchema)` to create a new message.
|
|
285
|
+
*/
|
|
286
|
+
export declare const SubmitInputRequestSchema: GenMessage<SubmitInputRequest>;
|
|
287
|
+
/**
|
|
288
|
+
* @generated from message agentfactory.agent.v1.InputReceipt
|
|
289
|
+
*/
|
|
290
|
+
export type InputReceipt = Message<"agentfactory.agent.v1.InputReceipt"> & {
|
|
291
|
+
/**
|
|
292
|
+
* @generated from field: string input_id = 1;
|
|
293
|
+
*/
|
|
294
|
+
inputId: string;
|
|
295
|
+
/**
|
|
296
|
+
* @generated from field: string run_id = 2;
|
|
297
|
+
*/
|
|
298
|
+
runId: string;
|
|
299
|
+
/**
|
|
300
|
+
* @generated from field: uint64 accepted_seq = 3;
|
|
301
|
+
*/
|
|
302
|
+
acceptedSeq: bigint;
|
|
303
|
+
};
|
|
304
|
+
/**
|
|
305
|
+
* Describes the message agentfactory.agent.v1.InputReceipt.
|
|
306
|
+
* Use `create(InputReceiptSchema)` to create a new message.
|
|
307
|
+
*/
|
|
308
|
+
export declare const InputReceiptSchema: GenMessage<InputReceipt>;
|
|
309
|
+
/**
|
|
310
|
+
* @generated from message agentfactory.agent.v1.CancelRunRequest
|
|
311
|
+
*/
|
|
312
|
+
export type CancelRunRequest = Message<"agentfactory.agent.v1.CancelRunRequest"> & {
|
|
313
|
+
/**
|
|
314
|
+
* @generated from field: string session_id = 1;
|
|
315
|
+
*/
|
|
316
|
+
sessionId: string;
|
|
317
|
+
/**
|
|
318
|
+
* @generated from field: string run_id = 2;
|
|
319
|
+
*/
|
|
320
|
+
runId: string;
|
|
321
|
+
};
|
|
322
|
+
/**
|
|
323
|
+
* Describes the message agentfactory.agent.v1.CancelRunRequest.
|
|
324
|
+
* Use `create(CancelRunRequestSchema)` to create a new message.
|
|
325
|
+
*/
|
|
326
|
+
export declare const CancelRunRequestSchema: GenMessage<CancelRunRequest>;
|
|
327
|
+
/**
|
|
328
|
+
* @generated from message agentfactory.agent.v1.GetRunRequest
|
|
329
|
+
*/
|
|
330
|
+
export type GetRunRequest = Message<"agentfactory.agent.v1.GetRunRequest"> & {
|
|
331
|
+
/**
|
|
332
|
+
* @generated from field: string session_id = 1;
|
|
333
|
+
*/
|
|
334
|
+
sessionId: string;
|
|
335
|
+
/**
|
|
336
|
+
* @generated from field: string run_id = 2;
|
|
337
|
+
*/
|
|
338
|
+
runId: string;
|
|
339
|
+
};
|
|
340
|
+
/**
|
|
341
|
+
* Describes the message agentfactory.agent.v1.GetRunRequest.
|
|
342
|
+
* Use `create(GetRunRequestSchema)` to create a new message.
|
|
343
|
+
*/
|
|
344
|
+
export declare const GetRunRequestSchema: GenMessage<GetRunRequest>;
|
|
345
|
+
/**
|
|
346
|
+
* @generated from message agentfactory.agent.v1.FollowEventsRequest
|
|
347
|
+
*/
|
|
348
|
+
export type FollowEventsRequest = Message<"agentfactory.agent.v1.FollowEventsRequest"> & {
|
|
349
|
+
/**
|
|
350
|
+
* @generated from field: string session_id = 1;
|
|
351
|
+
*/
|
|
352
|
+
sessionId: string;
|
|
353
|
+
/**
|
|
354
|
+
* @generated from field: uint64 after_seq = 2;
|
|
355
|
+
*/
|
|
356
|
+
afterSeq: bigint;
|
|
357
|
+
};
|
|
358
|
+
/**
|
|
359
|
+
* Describes the message agentfactory.agent.v1.FollowEventsRequest.
|
|
360
|
+
* Use `create(FollowEventsRequestSchema)` to create a new message.
|
|
361
|
+
*/
|
|
362
|
+
export declare const FollowEventsRequestSchema: GenMessage<FollowEventsRequest>;
|
|
363
|
+
/**
|
|
364
|
+
* @generated from message agentfactory.agent.v1.Run
|
|
365
|
+
*/
|
|
366
|
+
export type Run = Message<"agentfactory.agent.v1.Run"> & {
|
|
367
|
+
/**
|
|
368
|
+
* @generated from field: string id = 1;
|
|
369
|
+
*/
|
|
370
|
+
id: string;
|
|
371
|
+
/**
|
|
372
|
+
* @generated from field: string session_id = 2;
|
|
373
|
+
*/
|
|
374
|
+
sessionId: string;
|
|
375
|
+
/**
|
|
376
|
+
* [valid: queued | running | waiting_for_input | completed | failed | cancelled | max_steps_reached]
|
|
377
|
+
*
|
|
378
|
+
* @generated from field: string status = 3;
|
|
379
|
+
*/
|
|
380
|
+
status: string;
|
|
381
|
+
/**
|
|
382
|
+
* @generated from field: string usage_reservation_id = 4;
|
|
383
|
+
*/
|
|
384
|
+
usageReservationId: string;
|
|
385
|
+
/**
|
|
386
|
+
* @generated from field: uint64 prompt_tokens = 5;
|
|
387
|
+
*/
|
|
388
|
+
promptTokens: bigint;
|
|
389
|
+
/**
|
|
390
|
+
* @generated from field: uint64 completion_tokens = 6;
|
|
391
|
+
*/
|
|
392
|
+
completionTokens: bigint;
|
|
393
|
+
/**
|
|
394
|
+
* @generated from field: string error_code = 7;
|
|
395
|
+
*/
|
|
396
|
+
errorCode: string;
|
|
397
|
+
/**
|
|
398
|
+
* @generated from field: google.protobuf.Timestamp created_at = 8;
|
|
399
|
+
*/
|
|
400
|
+
createdAt?: Timestamp;
|
|
401
|
+
/**
|
|
402
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 9;
|
|
403
|
+
*/
|
|
404
|
+
updatedAt?: Timestamp;
|
|
405
|
+
};
|
|
406
|
+
/**
|
|
407
|
+
* Describes the message agentfactory.agent.v1.Run.
|
|
408
|
+
* Use `create(RunSchema)` to create a new message.
|
|
409
|
+
*/
|
|
410
|
+
export declare const RunSchema: GenMessage<Run>;
|
|
411
|
+
/**
|
|
412
|
+
* @generated from message agentfactory.agent.v1.SessionEvent
|
|
413
|
+
*/
|
|
414
|
+
export type SessionEvent = Message<"agentfactory.agent.v1.SessionEvent"> & {
|
|
415
|
+
/**
|
|
416
|
+
* @generated from field: string session_id = 1;
|
|
417
|
+
*/
|
|
418
|
+
sessionId: string;
|
|
419
|
+
/**
|
|
420
|
+
* @generated from field: uint64 seq = 2;
|
|
421
|
+
*/
|
|
422
|
+
seq: bigint;
|
|
423
|
+
/**
|
|
424
|
+
* @generated from field: google.protobuf.Timestamp occurred_at = 3;
|
|
425
|
+
*/
|
|
426
|
+
occurredAt?: Timestamp;
|
|
427
|
+
/**
|
|
428
|
+
* @generated from field: string run_id = 4;
|
|
429
|
+
*/
|
|
430
|
+
runId: string;
|
|
431
|
+
/**
|
|
432
|
+
* @generated from field: uint32 format_version = 5;
|
|
433
|
+
*/
|
|
434
|
+
formatVersion: number;
|
|
435
|
+
/**
|
|
436
|
+
* @generated from field: string event_type = 6;
|
|
437
|
+
*/
|
|
438
|
+
eventType: string;
|
|
439
|
+
/**
|
|
440
|
+
* @generated from field: bool ignorable = 7;
|
|
441
|
+
*/
|
|
442
|
+
ignorable: boolean;
|
|
443
|
+
/**
|
|
444
|
+
* @generated from oneof agentfactory.agent.v1.SessionEvent.event
|
|
445
|
+
*/
|
|
446
|
+
event: {
|
|
447
|
+
/**
|
|
448
|
+
* @generated from field: agentfactory.agent.v1.LifecycleEvent lifecycle = 10;
|
|
449
|
+
*/
|
|
450
|
+
value: LifecycleEvent;
|
|
451
|
+
case: "lifecycle";
|
|
452
|
+
} | {
|
|
453
|
+
/**
|
|
454
|
+
* @generated from field: agentfactory.agent.v1.MessageEvent message = 11;
|
|
455
|
+
*/
|
|
456
|
+
value: MessageEvent;
|
|
457
|
+
case: "message";
|
|
458
|
+
} | {
|
|
459
|
+
/**
|
|
460
|
+
* @generated from field: agentfactory.agent.v1.ToolEvent tool = 12;
|
|
461
|
+
*/
|
|
462
|
+
value: ToolEvent;
|
|
463
|
+
case: "tool";
|
|
464
|
+
} | {
|
|
465
|
+
/**
|
|
466
|
+
* @generated from field: agentfactory.agent.v1.InteractionEvent interaction = 13;
|
|
467
|
+
*/
|
|
468
|
+
value: InteractionEvent;
|
|
469
|
+
case: "interaction";
|
|
470
|
+
} | {
|
|
471
|
+
/**
|
|
472
|
+
* @generated from field: agentfactory.agent.v1.UsageEvent usage = 14;
|
|
473
|
+
*/
|
|
474
|
+
value: UsageEvent;
|
|
475
|
+
case: "usage";
|
|
476
|
+
} | {
|
|
477
|
+
/**
|
|
478
|
+
* @generated from field: agentfactory.agent.v1.CompactionEvent compaction = 15;
|
|
479
|
+
*/
|
|
480
|
+
value: CompactionEvent;
|
|
481
|
+
case: "compaction";
|
|
482
|
+
} | {
|
|
483
|
+
/**
|
|
484
|
+
* @generated from field: agentfactory.agent.v1.ExtensionEvent extension = 16;
|
|
485
|
+
*/
|
|
486
|
+
value: ExtensionEvent;
|
|
487
|
+
case: "extension";
|
|
488
|
+
} | {
|
|
489
|
+
/**
|
|
490
|
+
* @generated from field: agentfactory.agent.v1.ModelEvent model = 17;
|
|
491
|
+
*/
|
|
492
|
+
value: ModelEvent;
|
|
493
|
+
case: "model";
|
|
494
|
+
} | {
|
|
495
|
+
/**
|
|
496
|
+
* @generated from field: agentfactory.agent.v1.OpaqueEvent opaque = 18;
|
|
497
|
+
*/
|
|
498
|
+
value: OpaqueEvent;
|
|
499
|
+
case: "opaque";
|
|
500
|
+
} | {
|
|
501
|
+
/**
|
|
502
|
+
* @generated from field: agentfactory.agent.v1.ContextEvent context = 19;
|
|
503
|
+
*/
|
|
504
|
+
value: ContextEvent;
|
|
505
|
+
case: "context";
|
|
506
|
+
} | {
|
|
507
|
+
case: undefined;
|
|
508
|
+
value?: undefined;
|
|
509
|
+
};
|
|
510
|
+
};
|
|
511
|
+
/**
|
|
512
|
+
* Describes the message agentfactory.agent.v1.SessionEvent.
|
|
513
|
+
* Use `create(SessionEventSchema)` to create a new message.
|
|
514
|
+
*/
|
|
515
|
+
export declare const SessionEventSchema: GenMessage<SessionEvent>;
|
|
516
|
+
/**
|
|
517
|
+
* @generated from message agentfactory.agent.v1.LifecycleEvent
|
|
518
|
+
*/
|
|
519
|
+
export type LifecycleEvent = Message<"agentfactory.agent.v1.LifecycleEvent"> & {
|
|
520
|
+
/**
|
|
521
|
+
* @generated from field: string kind = 1;
|
|
522
|
+
*/
|
|
523
|
+
kind: string;
|
|
524
|
+
/**
|
|
525
|
+
* @generated from field: string status = 2;
|
|
526
|
+
*/
|
|
527
|
+
status: string;
|
|
528
|
+
/**
|
|
529
|
+
* @generated from field: uint32 turn = 3;
|
|
530
|
+
*/
|
|
531
|
+
turn: number;
|
|
532
|
+
/**
|
|
533
|
+
* @generated from field: uint32 step = 4;
|
|
534
|
+
*/
|
|
535
|
+
step: number;
|
|
536
|
+
};
|
|
537
|
+
/**
|
|
538
|
+
* Describes the message agentfactory.agent.v1.LifecycleEvent.
|
|
539
|
+
* Use `create(LifecycleEventSchema)` to create a new message.
|
|
540
|
+
*/
|
|
541
|
+
export declare const LifecycleEventSchema: GenMessage<LifecycleEvent>;
|
|
542
|
+
/**
|
|
543
|
+
* @generated from message agentfactory.agent.v1.MessageEvent
|
|
544
|
+
*/
|
|
545
|
+
export type MessageEvent = Message<"agentfactory.agent.v1.MessageEvent"> & {
|
|
546
|
+
/**
|
|
547
|
+
* @generated from field: string role = 1;
|
|
548
|
+
*/
|
|
549
|
+
role: string;
|
|
550
|
+
/**
|
|
551
|
+
* @generated from field: repeated agentfactory.agent.v1.ContentBlock content = 2;
|
|
552
|
+
*/
|
|
553
|
+
content: ContentBlock[];
|
|
554
|
+
/**
|
|
555
|
+
* @generated from field: bool delta = 3;
|
|
556
|
+
*/
|
|
557
|
+
delta: boolean;
|
|
558
|
+
/**
|
|
559
|
+
* @generated from field: uint32 step = 4;
|
|
560
|
+
*/
|
|
561
|
+
step: number;
|
|
562
|
+
/**
|
|
563
|
+
* @generated from field: uint32 attempt = 5;
|
|
564
|
+
*/
|
|
565
|
+
attempt: number;
|
|
566
|
+
};
|
|
567
|
+
/**
|
|
568
|
+
* Describes the message agentfactory.agent.v1.MessageEvent.
|
|
569
|
+
* Use `create(MessageEventSchema)` to create a new message.
|
|
570
|
+
*/
|
|
571
|
+
export declare const MessageEventSchema: GenMessage<MessageEvent>;
|
|
572
|
+
/**
|
|
573
|
+
* @generated from message agentfactory.agent.v1.ToolEvent
|
|
574
|
+
*/
|
|
575
|
+
export type ToolEvent = Message<"agentfactory.agent.v1.ToolEvent"> & {
|
|
576
|
+
/**
|
|
577
|
+
* @generated from field: string phase = 1;
|
|
578
|
+
*/
|
|
579
|
+
phase: string;
|
|
580
|
+
/**
|
|
581
|
+
* @generated from field: string call_id = 2;
|
|
582
|
+
*/
|
|
583
|
+
callId: string;
|
|
584
|
+
/**
|
|
585
|
+
* @generated from field: string name = 3;
|
|
586
|
+
*/
|
|
587
|
+
name: string;
|
|
588
|
+
/**
|
|
589
|
+
* @generated from field: google.protobuf.Value arguments = 4;
|
|
590
|
+
*/
|
|
591
|
+
arguments?: Value;
|
|
592
|
+
/**
|
|
593
|
+
* @generated from field: google.protobuf.Value result = 5;
|
|
594
|
+
*/
|
|
595
|
+
result?: Value;
|
|
596
|
+
/**
|
|
597
|
+
* @generated from field: bool is_error = 6;
|
|
598
|
+
*/
|
|
599
|
+
isError: boolean;
|
|
600
|
+
};
|
|
601
|
+
/**
|
|
602
|
+
* Describes the message agentfactory.agent.v1.ToolEvent.
|
|
603
|
+
* Use `create(ToolEventSchema)` to create a new message.
|
|
604
|
+
*/
|
|
605
|
+
export declare const ToolEventSchema: GenMessage<ToolEvent>;
|
|
606
|
+
/**
|
|
607
|
+
* @generated from message agentfactory.agent.v1.InteractionEvent
|
|
608
|
+
*/
|
|
609
|
+
export type InteractionEvent = Message<"agentfactory.agent.v1.InteractionEvent"> & {
|
|
610
|
+
/**
|
|
611
|
+
* @generated from field: string phase = 1;
|
|
612
|
+
*/
|
|
613
|
+
phase: string;
|
|
614
|
+
/**
|
|
615
|
+
* @generated from field: string interaction_id = 2;
|
|
616
|
+
*/
|
|
617
|
+
interactionId: string;
|
|
618
|
+
/**
|
|
619
|
+
* @generated from field: string kind = 3;
|
|
620
|
+
*/
|
|
621
|
+
kind: string;
|
|
622
|
+
/**
|
|
623
|
+
* @generated from field: google.protobuf.Value payload = 4;
|
|
624
|
+
*/
|
|
625
|
+
payload?: Value;
|
|
626
|
+
/**
|
|
627
|
+
* @generated from field: string resolution = 5;
|
|
628
|
+
*/
|
|
629
|
+
resolution: string;
|
|
630
|
+
};
|
|
631
|
+
/**
|
|
632
|
+
* Describes the message agentfactory.agent.v1.InteractionEvent.
|
|
633
|
+
* Use `create(InteractionEventSchema)` to create a new message.
|
|
634
|
+
*/
|
|
635
|
+
export declare const InteractionEventSchema: GenMessage<InteractionEvent>;
|
|
636
|
+
/**
|
|
637
|
+
* @generated from message agentfactory.agent.v1.UsageEvent
|
|
638
|
+
*/
|
|
639
|
+
export type UsageEvent = Message<"agentfactory.agent.v1.UsageEvent"> & {
|
|
640
|
+
/**
|
|
641
|
+
* @generated from field: string operation_id = 1;
|
|
642
|
+
*/
|
|
643
|
+
operationId: string;
|
|
644
|
+
/**
|
|
645
|
+
* @generated from field: uint64 prompt_tokens = 2;
|
|
646
|
+
*/
|
|
647
|
+
promptTokens: bigint;
|
|
648
|
+
/**
|
|
649
|
+
* @generated from field: uint64 completion_tokens = 3;
|
|
650
|
+
*/
|
|
651
|
+
completionTokens: bigint;
|
|
652
|
+
};
|
|
653
|
+
/**
|
|
654
|
+
* Describes the message agentfactory.agent.v1.UsageEvent.
|
|
655
|
+
* Use `create(UsageEventSchema)` to create a new message.
|
|
656
|
+
*/
|
|
657
|
+
export declare const UsageEventSchema: GenMessage<UsageEvent>;
|
|
658
|
+
/**
|
|
659
|
+
* @generated from message agentfactory.agent.v1.CompactionEvent
|
|
660
|
+
*/
|
|
661
|
+
export type CompactionEvent = Message<"agentfactory.agent.v1.CompactionEvent"> & {
|
|
662
|
+
/**
|
|
663
|
+
* @generated from field: string phase = 1;
|
|
664
|
+
*/
|
|
665
|
+
phase: string;
|
|
666
|
+
/**
|
|
667
|
+
* @generated from field: uint64 through_seq = 2;
|
|
668
|
+
*/
|
|
669
|
+
throughSeq: bigint;
|
|
670
|
+
/**
|
|
671
|
+
* @generated from field: string summary = 3;
|
|
672
|
+
*/
|
|
673
|
+
summary: string;
|
|
674
|
+
};
|
|
675
|
+
/**
|
|
676
|
+
* Describes the message agentfactory.agent.v1.CompactionEvent.
|
|
677
|
+
* Use `create(CompactionEventSchema)` to create a new message.
|
|
678
|
+
*/
|
|
679
|
+
export declare const CompactionEventSchema: GenMessage<CompactionEvent>;
|
|
680
|
+
/**
|
|
681
|
+
* @generated from message agentfactory.agent.v1.ExtensionEvent
|
|
682
|
+
*/
|
|
683
|
+
export type ExtensionEvent = Message<"agentfactory.agent.v1.ExtensionEvent"> & {
|
|
684
|
+
/**
|
|
685
|
+
* @generated from field: string plugin_id = 1;
|
|
686
|
+
*/
|
|
687
|
+
pluginId: string;
|
|
688
|
+
/**
|
|
689
|
+
* @generated from field: string event_type = 2;
|
|
690
|
+
*/
|
|
691
|
+
eventType: string;
|
|
692
|
+
/**
|
|
693
|
+
* @generated from field: google.protobuf.Value payload = 3;
|
|
694
|
+
*/
|
|
695
|
+
payload?: Value;
|
|
696
|
+
};
|
|
697
|
+
/**
|
|
698
|
+
* Describes the message agentfactory.agent.v1.ExtensionEvent.
|
|
699
|
+
* Use `create(ExtensionEventSchema)` to create a new message.
|
|
700
|
+
*/
|
|
701
|
+
export declare const ExtensionEventSchema: GenMessage<ExtensionEvent>;
|
|
702
|
+
/**
|
|
703
|
+
* @generated from message agentfactory.agent.v1.ModelEvent
|
|
704
|
+
*/
|
|
705
|
+
export type ModelEvent = Message<"agentfactory.agent.v1.ModelEvent"> & {
|
|
706
|
+
/**
|
|
707
|
+
* @generated from field: string phase = 1;
|
|
708
|
+
*/
|
|
709
|
+
phase: string;
|
|
710
|
+
/**
|
|
711
|
+
* @generated from field: uint32 step = 2;
|
|
712
|
+
*/
|
|
713
|
+
step: number;
|
|
714
|
+
/**
|
|
715
|
+
* @generated from field: uint32 attempt = 3;
|
|
716
|
+
*/
|
|
717
|
+
attempt: number;
|
|
718
|
+
/**
|
|
719
|
+
* @generated from field: string error = 4;
|
|
720
|
+
*/
|
|
721
|
+
error: string;
|
|
722
|
+
/**
|
|
723
|
+
* @generated from field: bool retryable = 5;
|
|
724
|
+
*/
|
|
725
|
+
retryable: boolean;
|
|
726
|
+
/**
|
|
727
|
+
* @generated from field: string request_fingerprint = 6;
|
|
728
|
+
*/
|
|
729
|
+
requestFingerprint: string;
|
|
730
|
+
/**
|
|
731
|
+
* @generated from field: string model = 7;
|
|
732
|
+
*/
|
|
733
|
+
model: string;
|
|
734
|
+
/**
|
|
735
|
+
* @generated from field: uint32 message_count = 8;
|
|
736
|
+
*/
|
|
737
|
+
messageCount: number;
|
|
738
|
+
/**
|
|
739
|
+
* @generated from field: repeated string tool_names = 9;
|
|
740
|
+
*/
|
|
741
|
+
toolNames: string[];
|
|
742
|
+
/**
|
|
743
|
+
* @generated from field: repeated agentfactory.agent.v1.PromptSectionTrace prompt_sections = 10;
|
|
744
|
+
*/
|
|
745
|
+
promptSections: PromptSectionTrace[];
|
|
746
|
+
};
|
|
747
|
+
/**
|
|
748
|
+
* Describes the message agentfactory.agent.v1.ModelEvent.
|
|
749
|
+
* Use `create(ModelEventSchema)` to create a new message.
|
|
750
|
+
*/
|
|
751
|
+
export declare const ModelEventSchema: GenMessage<ModelEvent>;
|
|
752
|
+
/**
|
|
753
|
+
* @generated from message agentfactory.agent.v1.PromptSectionTrace
|
|
754
|
+
*/
|
|
755
|
+
export type PromptSectionTrace = Message<"agentfactory.agent.v1.PromptSectionTrace"> & {
|
|
756
|
+
/**
|
|
757
|
+
* @generated from field: string id = 1;
|
|
758
|
+
*/
|
|
759
|
+
id: string;
|
|
760
|
+
/**
|
|
761
|
+
* @generated from field: int32 order = 2;
|
|
762
|
+
*/
|
|
763
|
+
order: number;
|
|
764
|
+
/**
|
|
765
|
+
* @generated from field: string authority = 3;
|
|
766
|
+
*/
|
|
767
|
+
authority: string;
|
|
768
|
+
/**
|
|
769
|
+
* @generated from field: string source = 4;
|
|
770
|
+
*/
|
|
771
|
+
source: string;
|
|
772
|
+
/**
|
|
773
|
+
* @generated from field: string version = 5;
|
|
774
|
+
*/
|
|
775
|
+
version: string;
|
|
776
|
+
/**
|
|
777
|
+
* @generated from field: string content_hash = 6;
|
|
778
|
+
*/
|
|
779
|
+
contentHash: string;
|
|
780
|
+
};
|
|
781
|
+
/**
|
|
782
|
+
* Describes the message agentfactory.agent.v1.PromptSectionTrace.
|
|
783
|
+
* Use `create(PromptSectionTraceSchema)` to create a new message.
|
|
784
|
+
*/
|
|
785
|
+
export declare const PromptSectionTraceSchema: GenMessage<PromptSectionTrace>;
|
|
786
|
+
/**
|
|
787
|
+
* @generated from message agentfactory.agent.v1.OpaqueEvent
|
|
788
|
+
*/
|
|
789
|
+
export type OpaqueEvent = Message<"agentfactory.agent.v1.OpaqueEvent"> & {
|
|
790
|
+
/**
|
|
791
|
+
* @generated from field: google.protobuf.Value payload = 1;
|
|
792
|
+
*/
|
|
793
|
+
payload?: Value;
|
|
794
|
+
};
|
|
795
|
+
/**
|
|
796
|
+
* Describes the message agentfactory.agent.v1.OpaqueEvent.
|
|
797
|
+
* Use `create(OpaqueEventSchema)` to create a new message.
|
|
798
|
+
*/
|
|
799
|
+
export declare const OpaqueEventSchema: GenMessage<OpaqueEvent>;
|
|
800
|
+
/**
|
|
801
|
+
* @generated from message agentfactory.agent.v1.ContextEvent
|
|
802
|
+
*/
|
|
803
|
+
export type ContextEvent = Message<"agentfactory.agent.v1.ContextEvent"> & {
|
|
804
|
+
/**
|
|
805
|
+
* @generated from field: uint32 step = 1;
|
|
806
|
+
*/
|
|
807
|
+
step: number;
|
|
808
|
+
/**
|
|
809
|
+
* @generated from field: string contribution_id = 2;
|
|
810
|
+
*/
|
|
811
|
+
contributionId: string;
|
|
812
|
+
/**
|
|
813
|
+
* @generated from field: string source = 3;
|
|
814
|
+
*/
|
|
815
|
+
source: string;
|
|
816
|
+
/**
|
|
817
|
+
* @generated from field: string version = 4;
|
|
818
|
+
*/
|
|
819
|
+
version: string;
|
|
820
|
+
/**
|
|
821
|
+
* @generated from field: string authority = 5;
|
|
822
|
+
*/
|
|
823
|
+
authority: string;
|
|
824
|
+
/**
|
|
825
|
+
* @generated from field: string form = 6;
|
|
826
|
+
*/
|
|
827
|
+
form: string;
|
|
828
|
+
/**
|
|
829
|
+
* @generated from field: repeated agentfactory.agent.v1.ContentBlock content = 7;
|
|
830
|
+
*/
|
|
831
|
+
content: ContentBlock[];
|
|
832
|
+
};
|
|
833
|
+
/**
|
|
834
|
+
* Describes the message agentfactory.agent.v1.ContextEvent.
|
|
835
|
+
* Use `create(ContextEventSchema)` to create a new message.
|
|
836
|
+
*/
|
|
837
|
+
export declare const ContextEventSchema: GenMessage<ContextEvent>;
|
|
838
|
+
/**
|
|
839
|
+
* @generated from message agentfactory.agent.v1.AgentProfile
|
|
840
|
+
*/
|
|
841
|
+
export type AgentProfile = Message<"agentfactory.agent.v1.AgentProfile"> & {
|
|
842
|
+
/**
|
|
843
|
+
* @generated from field: string id = 1;
|
|
844
|
+
*/
|
|
845
|
+
id: string;
|
|
846
|
+
/**
|
|
847
|
+
* @generated from field: string current_revision_id = 2;
|
|
848
|
+
*/
|
|
849
|
+
currentRevisionId: string;
|
|
850
|
+
/**
|
|
851
|
+
* @generated from field: bool archived = 3;
|
|
852
|
+
*/
|
|
853
|
+
archived: boolean;
|
|
854
|
+
};
|
|
855
|
+
/**
|
|
856
|
+
* Describes the message agentfactory.agent.v1.AgentProfile.
|
|
857
|
+
* Use `create(AgentProfileSchema)` to create a new message.
|
|
858
|
+
*/
|
|
859
|
+
export declare const AgentProfileSchema: GenMessage<AgentProfile>;
|
|
860
|
+
/**
|
|
861
|
+
* @generated from message agentfactory.agent.v1.AgentProfileRevision
|
|
862
|
+
*/
|
|
863
|
+
export type AgentProfileRevision = Message<"agentfactory.agent.v1.AgentProfileRevision"> & {
|
|
864
|
+
/**
|
|
865
|
+
* @generated from field: string id = 1;
|
|
866
|
+
*/
|
|
867
|
+
id: string;
|
|
868
|
+
/**
|
|
869
|
+
* @generated from field: string profile_id = 2;
|
|
870
|
+
*/
|
|
871
|
+
profileId: string;
|
|
872
|
+
/**
|
|
873
|
+
* @generated from field: uint64 revision = 3;
|
|
874
|
+
*/
|
|
875
|
+
revision: bigint;
|
|
876
|
+
/**
|
|
877
|
+
* @generated from field: string persona = 4;
|
|
878
|
+
*/
|
|
879
|
+
persona: string;
|
|
880
|
+
/**
|
|
881
|
+
* @generated from field: string purpose = 5;
|
|
882
|
+
*/
|
|
883
|
+
purpose: string;
|
|
884
|
+
/**
|
|
885
|
+
* @generated from field: google.protobuf.Struct output_policy = 6;
|
|
886
|
+
*/
|
|
887
|
+
outputPolicy?: JsonObject;
|
|
888
|
+
/**
|
|
889
|
+
* @generated from field: agentfactory.agent.v1.RuntimePolicy runtime_policy = 7;
|
|
890
|
+
*/
|
|
891
|
+
runtimePolicy?: RuntimePolicy;
|
|
892
|
+
/**
|
|
893
|
+
* @generated from field: map<string, string> skills = 8;
|
|
894
|
+
*/
|
|
895
|
+
skills: {
|
|
896
|
+
[key: string]: string;
|
|
897
|
+
};
|
|
898
|
+
/**
|
|
899
|
+
* @generated from field: map<string, string> skill_packs = 9;
|
|
900
|
+
*/
|
|
901
|
+
skillPacks: {
|
|
902
|
+
[key: string]: string;
|
|
903
|
+
};
|
|
904
|
+
/**
|
|
905
|
+
* @generated from field: map<string, agentfactory.agent.v1.PluginConfig> plugins = 10;
|
|
906
|
+
*/
|
|
907
|
+
plugins: {
|
|
908
|
+
[key: string]: PluginConfig;
|
|
909
|
+
};
|
|
910
|
+
/**
|
|
911
|
+
* @generated from field: agentfactory.agent.v1.MemoryPolicy memory = 11;
|
|
912
|
+
*/
|
|
913
|
+
memory?: MemoryPolicy;
|
|
914
|
+
/**
|
|
915
|
+
* @generated from field: repeated agentfactory.agent.v1.KnowledgeBinding knowledge_bindings = 12;
|
|
916
|
+
*/
|
|
917
|
+
knowledgeBindings: KnowledgeBinding[];
|
|
918
|
+
/**
|
|
919
|
+
* @generated from field: agentfactory.agent.v1.CapabilityPolicy subagent = 13;
|
|
920
|
+
*/
|
|
921
|
+
subagent?: CapabilityPolicy;
|
|
922
|
+
/**
|
|
923
|
+
* @generated from field: agentfactory.agent.v1.CapabilityPolicy collaboration = 14;
|
|
924
|
+
*/
|
|
925
|
+
collaboration?: CapabilityPolicy;
|
|
926
|
+
/**
|
|
927
|
+
* @generated from field: string name = 15;
|
|
928
|
+
*/
|
|
929
|
+
name: string;
|
|
930
|
+
/**
|
|
931
|
+
* @generated from field: string avatar = 16;
|
|
932
|
+
*/
|
|
933
|
+
avatar: string;
|
|
934
|
+
/**
|
|
935
|
+
* @generated from field: string description = 17;
|
|
936
|
+
*/
|
|
937
|
+
description: string;
|
|
938
|
+
};
|
|
939
|
+
/**
|
|
940
|
+
* Describes the message agentfactory.agent.v1.AgentProfileRevision.
|
|
941
|
+
* Use `create(AgentProfileRevisionSchema)` to create a new message.
|
|
942
|
+
*/
|
|
943
|
+
export declare const AgentProfileRevisionSchema: GenMessage<AgentProfileRevision>;
|
|
944
|
+
/**
|
|
945
|
+
* @generated from message agentfactory.agent.v1.AgentProfileView
|
|
946
|
+
*/
|
|
947
|
+
export type AgentProfileView = Message<"agentfactory.agent.v1.AgentProfileView"> & {
|
|
948
|
+
/**
|
|
949
|
+
* @generated from field: agentfactory.agent.v1.AgentProfile profile = 1;
|
|
950
|
+
*/
|
|
951
|
+
profile?: AgentProfile;
|
|
952
|
+
/**
|
|
953
|
+
* @generated from field: agentfactory.agent.v1.AgentProfileRevision revision = 2;
|
|
954
|
+
*/
|
|
955
|
+
revision?: AgentProfileRevision;
|
|
956
|
+
};
|
|
957
|
+
/**
|
|
958
|
+
* Describes the message agentfactory.agent.v1.AgentProfileView.
|
|
959
|
+
* Use `create(AgentProfileViewSchema)` to create a new message.
|
|
960
|
+
*/
|
|
961
|
+
export declare const AgentProfileViewSchema: GenMessage<AgentProfileView>;
|
|
962
|
+
/**
|
|
963
|
+
* @generated from message agentfactory.agent.v1.RuntimePolicy
|
|
964
|
+
*/
|
|
965
|
+
export type RuntimePolicy = Message<"agentfactory.agent.v1.RuntimePolicy"> & {
|
|
966
|
+
/**
|
|
967
|
+
* @generated from field: agentfactory.agent.v1.ModelPolicy model = 1;
|
|
968
|
+
*/
|
|
969
|
+
model?: ModelPolicy;
|
|
970
|
+
/**
|
|
971
|
+
* @generated from field: string reasoning = 2;
|
|
972
|
+
*/
|
|
973
|
+
reasoning: string;
|
|
974
|
+
/**
|
|
975
|
+
* @generated from field: agentfactory.agent.v1.ProfileLimits limits = 3;
|
|
976
|
+
*/
|
|
977
|
+
limits?: ProfileLimits;
|
|
978
|
+
/**
|
|
979
|
+
* @generated from field: agentfactory.agent.v1.ToolPolicy tools = 4;
|
|
980
|
+
*/
|
|
981
|
+
tools?: ToolPolicy;
|
|
982
|
+
};
|
|
983
|
+
/**
|
|
984
|
+
* Describes the message agentfactory.agent.v1.RuntimePolicy.
|
|
985
|
+
* Use `create(RuntimePolicySchema)` to create a new message.
|
|
986
|
+
*/
|
|
987
|
+
export declare const RuntimePolicySchema: GenMessage<RuntimePolicy>;
|
|
988
|
+
/**
|
|
989
|
+
* @generated from message agentfactory.agent.v1.ModelPolicy
|
|
990
|
+
*/
|
|
991
|
+
export type ModelPolicy = Message<"agentfactory.agent.v1.ModelPolicy"> & {
|
|
992
|
+
/**
|
|
993
|
+
* @generated from field: string preferred = 1;
|
|
994
|
+
*/
|
|
995
|
+
preferred: string;
|
|
996
|
+
/**
|
|
997
|
+
* @generated from field: repeated string allowed = 2;
|
|
998
|
+
*/
|
|
999
|
+
allowed: string[];
|
|
1000
|
+
};
|
|
1001
|
+
/**
|
|
1002
|
+
* Describes the message agentfactory.agent.v1.ModelPolicy.
|
|
1003
|
+
* Use `create(ModelPolicySchema)` to create a new message.
|
|
1004
|
+
*/
|
|
1005
|
+
export declare const ModelPolicySchema: GenMessage<ModelPolicy>;
|
|
1006
|
+
/**
|
|
1007
|
+
* @generated from message agentfactory.agent.v1.ProfileLimits
|
|
1008
|
+
*/
|
|
1009
|
+
export type ProfileLimits = Message<"agentfactory.agent.v1.ProfileLimits"> & {
|
|
1010
|
+
/**
|
|
1011
|
+
* @generated from field: uint32 max_steps = 1;
|
|
1012
|
+
*/
|
|
1013
|
+
maxSteps: number;
|
|
1014
|
+
/**
|
|
1015
|
+
* @generated from field: uint32 max_tool_calls = 2;
|
|
1016
|
+
*/
|
|
1017
|
+
maxToolCalls: number;
|
|
1018
|
+
/**
|
|
1019
|
+
* @generated from field: uint64 max_tokens = 3;
|
|
1020
|
+
*/
|
|
1021
|
+
maxTokens: bigint;
|
|
1022
|
+
};
|
|
1023
|
+
/**
|
|
1024
|
+
* Describes the message agentfactory.agent.v1.ProfileLimits.
|
|
1025
|
+
* Use `create(ProfileLimitsSchema)` to create a new message.
|
|
1026
|
+
*/
|
|
1027
|
+
export declare const ProfileLimitsSchema: GenMessage<ProfileLimits>;
|
|
1028
|
+
/**
|
|
1029
|
+
* @generated from message agentfactory.agent.v1.ToolPolicy
|
|
1030
|
+
*/
|
|
1031
|
+
export type ToolPolicy = Message<"agentfactory.agent.v1.ToolPolicy"> & {
|
|
1032
|
+
/**
|
|
1033
|
+
* @generated from field: bool allow_all = 1;
|
|
1034
|
+
*/
|
|
1035
|
+
allowAll: boolean;
|
|
1036
|
+
/**
|
|
1037
|
+
* @generated from field: repeated string allowed = 2;
|
|
1038
|
+
*/
|
|
1039
|
+
allowed: string[];
|
|
1040
|
+
/**
|
|
1041
|
+
* @generated from field: repeated string require_confirmation = 3;
|
|
1042
|
+
*/
|
|
1043
|
+
requireConfirmation: string[];
|
|
1044
|
+
};
|
|
1045
|
+
/**
|
|
1046
|
+
* Describes the message agentfactory.agent.v1.ToolPolicy.
|
|
1047
|
+
* Use `create(ToolPolicySchema)` to create a new message.
|
|
1048
|
+
*/
|
|
1049
|
+
export declare const ToolPolicySchema: GenMessage<ToolPolicy>;
|
|
1050
|
+
/**
|
|
1051
|
+
* @generated from message agentfactory.agent.v1.PluginConfig
|
|
1052
|
+
*/
|
|
1053
|
+
export type PluginConfig = Message<"agentfactory.agent.v1.PluginConfig"> & {
|
|
1054
|
+
/**
|
|
1055
|
+
* @generated from field: string version = 1;
|
|
1056
|
+
*/
|
|
1057
|
+
version: string;
|
|
1058
|
+
/**
|
|
1059
|
+
* @generated from field: google.protobuf.Struct config = 2;
|
|
1060
|
+
*/
|
|
1061
|
+
config?: JsonObject;
|
|
1062
|
+
};
|
|
1063
|
+
/**
|
|
1064
|
+
* Describes the message agentfactory.agent.v1.PluginConfig.
|
|
1065
|
+
* Use `create(PluginConfigSchema)` to create a new message.
|
|
1066
|
+
*/
|
|
1067
|
+
export declare const PluginConfigSchema: GenMessage<PluginConfig>;
|
|
1068
|
+
/**
|
|
1069
|
+
* @generated from message agentfactory.agent.v1.MemoryPolicy
|
|
1070
|
+
*/
|
|
1071
|
+
export type MemoryPolicy = Message<"agentfactory.agent.v1.MemoryPolicy"> & {
|
|
1072
|
+
/**
|
|
1073
|
+
* @generated from field: string mode = 1;
|
|
1074
|
+
*/
|
|
1075
|
+
mode: string;
|
|
1076
|
+
/**
|
|
1077
|
+
* @generated from field: int64 ttl_days = 2;
|
|
1078
|
+
*/
|
|
1079
|
+
ttlDays: bigint;
|
|
1080
|
+
};
|
|
1081
|
+
/**
|
|
1082
|
+
* Describes the message agentfactory.agent.v1.MemoryPolicy.
|
|
1083
|
+
* Use `create(MemoryPolicySchema)` to create a new message.
|
|
1084
|
+
*/
|
|
1085
|
+
export declare const MemoryPolicySchema: GenMessage<MemoryPolicy>;
|
|
1086
|
+
/**
|
|
1087
|
+
* @generated from message agentfactory.agent.v1.KnowledgeBinding
|
|
1088
|
+
*/
|
|
1089
|
+
export type KnowledgeBinding = Message<"agentfactory.agent.v1.KnowledgeBinding"> & {
|
|
1090
|
+
/**
|
|
1091
|
+
* @generated from field: string resource_id = 1;
|
|
1092
|
+
*/
|
|
1093
|
+
resourceId: string;
|
|
1094
|
+
/**
|
|
1095
|
+
* @generated from field: string role = 2;
|
|
1096
|
+
*/
|
|
1097
|
+
role: string;
|
|
1098
|
+
};
|
|
1099
|
+
/**
|
|
1100
|
+
* Describes the message agentfactory.agent.v1.KnowledgeBinding.
|
|
1101
|
+
* Use `create(KnowledgeBindingSchema)` to create a new message.
|
|
1102
|
+
*/
|
|
1103
|
+
export declare const KnowledgeBindingSchema: GenMessage<KnowledgeBinding>;
|
|
1104
|
+
/**
|
|
1105
|
+
* @generated from message agentfactory.agent.v1.CapabilityPolicy
|
|
1106
|
+
*/
|
|
1107
|
+
export type CapabilityPolicy = Message<"agentfactory.agent.v1.CapabilityPolicy"> & {
|
|
1108
|
+
/**
|
|
1109
|
+
* @generated from field: bool enabled = 1;
|
|
1110
|
+
*/
|
|
1111
|
+
enabled: boolean;
|
|
1112
|
+
/**
|
|
1113
|
+
* @generated from field: repeated string providers = 2;
|
|
1114
|
+
*/
|
|
1115
|
+
providers: string[];
|
|
1116
|
+
};
|
|
1117
|
+
/**
|
|
1118
|
+
* Describes the message agentfactory.agent.v1.CapabilityPolicy.
|
|
1119
|
+
* Use `create(CapabilityPolicySchema)` to create a new message.
|
|
1120
|
+
*/
|
|
1121
|
+
export declare const CapabilityPolicySchema: GenMessage<CapabilityPolicy>;
|
|
1122
|
+
/**
|
|
1123
|
+
* @generated from message agentfactory.agent.v1.CreateProfileRequest
|
|
1124
|
+
*/
|
|
1125
|
+
export type CreateProfileRequest = Message<"agentfactory.agent.v1.CreateProfileRequest"> & {
|
|
1126
|
+
/**
|
|
1127
|
+
* @generated from field: agentfactory.agent.v1.AgentProfile profile = 1;
|
|
1128
|
+
*/
|
|
1129
|
+
profile?: AgentProfile;
|
|
1130
|
+
/**
|
|
1131
|
+
* @generated from field: agentfactory.agent.v1.AgentProfileRevision revision = 2;
|
|
1132
|
+
*/
|
|
1133
|
+
revision?: AgentProfileRevision;
|
|
1134
|
+
};
|
|
1135
|
+
/**
|
|
1136
|
+
* Describes the message agentfactory.agent.v1.CreateProfileRequest.
|
|
1137
|
+
* Use `create(CreateProfileRequestSchema)` to create a new message.
|
|
1138
|
+
*/
|
|
1139
|
+
export declare const CreateProfileRequestSchema: GenMessage<CreateProfileRequest>;
|
|
1140
|
+
/**
|
|
1141
|
+
* @generated from message agentfactory.agent.v1.ListProfilesRequest
|
|
1142
|
+
*/
|
|
1143
|
+
export type ListProfilesRequest = Message<"agentfactory.agent.v1.ListProfilesRequest"> & {
|
|
1144
|
+
/**
|
|
1145
|
+
* @generated from field: uint32 page_size = 1;
|
|
1146
|
+
*/
|
|
1147
|
+
pageSize: number;
|
|
1148
|
+
/**
|
|
1149
|
+
* @generated from field: string page_token = 2;
|
|
1150
|
+
*/
|
|
1151
|
+
pageToken: string;
|
|
1152
|
+
};
|
|
1153
|
+
/**
|
|
1154
|
+
* Describes the message agentfactory.agent.v1.ListProfilesRequest.
|
|
1155
|
+
* Use `create(ListProfilesRequestSchema)` to create a new message.
|
|
1156
|
+
*/
|
|
1157
|
+
export declare const ListProfilesRequestSchema: GenMessage<ListProfilesRequest>;
|
|
1158
|
+
/**
|
|
1159
|
+
* @generated from message agentfactory.agent.v1.ListProfilesResponse
|
|
1160
|
+
*/
|
|
1161
|
+
export type ListProfilesResponse = Message<"agentfactory.agent.v1.ListProfilesResponse"> & {
|
|
1162
|
+
/**
|
|
1163
|
+
* @generated from field: repeated agentfactory.agent.v1.AgentProfileView profiles = 1;
|
|
1164
|
+
*/
|
|
1165
|
+
profiles: AgentProfileView[];
|
|
1166
|
+
/**
|
|
1167
|
+
* @generated from field: string next_page_token = 2;
|
|
1168
|
+
*/
|
|
1169
|
+
nextPageToken: string;
|
|
1170
|
+
};
|
|
1171
|
+
/**
|
|
1172
|
+
* Describes the message agentfactory.agent.v1.ListProfilesResponse.
|
|
1173
|
+
* Use `create(ListProfilesResponseSchema)` to create a new message.
|
|
1174
|
+
*/
|
|
1175
|
+
export declare const ListProfilesResponseSchema: GenMessage<ListProfilesResponse>;
|
|
1176
|
+
/**
|
|
1177
|
+
* @generated from message agentfactory.agent.v1.GetProfileRequest
|
|
1178
|
+
*/
|
|
1179
|
+
export type GetProfileRequest = Message<"agentfactory.agent.v1.GetProfileRequest"> & {
|
|
1180
|
+
/**
|
|
1181
|
+
* @generated from field: string profile_id = 1;
|
|
1182
|
+
*/
|
|
1183
|
+
profileId: string;
|
|
1184
|
+
/**
|
|
1185
|
+
* @generated from field: string revision_id = 2;
|
|
1186
|
+
*/
|
|
1187
|
+
revisionId: string;
|
|
1188
|
+
};
|
|
1189
|
+
/**
|
|
1190
|
+
* Describes the message agentfactory.agent.v1.GetProfileRequest.
|
|
1191
|
+
* Use `create(GetProfileRequestSchema)` to create a new message.
|
|
1192
|
+
*/
|
|
1193
|
+
export declare const GetProfileRequestSchema: GenMessage<GetProfileRequest>;
|
|
1194
|
+
/**
|
|
1195
|
+
* @generated from message agentfactory.agent.v1.UpdateProfileRequest
|
|
1196
|
+
*/
|
|
1197
|
+
export type UpdateProfileRequest = Message<"agentfactory.agent.v1.UpdateProfileRequest"> & {
|
|
1198
|
+
/**
|
|
1199
|
+
* @generated from field: agentfactory.agent.v1.AgentProfile profile = 1;
|
|
1200
|
+
*/
|
|
1201
|
+
profile?: AgentProfile;
|
|
1202
|
+
/**
|
|
1203
|
+
* @generated from field: agentfactory.agent.v1.AgentProfileRevision revision = 2;
|
|
1204
|
+
*/
|
|
1205
|
+
revision?: AgentProfileRevision;
|
|
1206
|
+
};
|
|
1207
|
+
/**
|
|
1208
|
+
* Describes the message agentfactory.agent.v1.UpdateProfileRequest.
|
|
1209
|
+
* Use `create(UpdateProfileRequestSchema)` to create a new message.
|
|
1210
|
+
*/
|
|
1211
|
+
export declare const UpdateProfileRequestSchema: GenMessage<UpdateProfileRequest>;
|
|
1212
|
+
/**
|
|
1213
|
+
* @generated from message agentfactory.agent.v1.DeleteProfileRequest
|
|
1214
|
+
*/
|
|
1215
|
+
export type DeleteProfileRequest = Message<"agentfactory.agent.v1.DeleteProfileRequest"> & {
|
|
1216
|
+
/**
|
|
1217
|
+
* @generated from field: string profile_id = 1;
|
|
1218
|
+
*/
|
|
1219
|
+
profileId: string;
|
|
1220
|
+
};
|
|
1221
|
+
/**
|
|
1222
|
+
* Describes the message agentfactory.agent.v1.DeleteProfileRequest.
|
|
1223
|
+
* Use `create(DeleteProfileRequestSchema)` to create a new message.
|
|
1224
|
+
*/
|
|
1225
|
+
export declare const DeleteProfileRequestSchema: GenMessage<DeleteProfileRequest>;
|
|
1226
|
+
/**
|
|
1227
|
+
* @generated from message agentfactory.agent.v1.ListProfileRevisionsRequest
|
|
1228
|
+
*/
|
|
1229
|
+
export type ListProfileRevisionsRequest = Message<"agentfactory.agent.v1.ListProfileRevisionsRequest"> & {
|
|
1230
|
+
/**
|
|
1231
|
+
* @generated from field: string profile_id = 1;
|
|
1232
|
+
*/
|
|
1233
|
+
profileId: string;
|
|
1234
|
+
/**
|
|
1235
|
+
* @generated from field: uint32 page_size = 2;
|
|
1236
|
+
*/
|
|
1237
|
+
pageSize: number;
|
|
1238
|
+
/**
|
|
1239
|
+
* @generated from field: string page_token = 3;
|
|
1240
|
+
*/
|
|
1241
|
+
pageToken: string;
|
|
1242
|
+
};
|
|
1243
|
+
/**
|
|
1244
|
+
* Describes the message agentfactory.agent.v1.ListProfileRevisionsRequest.
|
|
1245
|
+
* Use `create(ListProfileRevisionsRequestSchema)` to create a new message.
|
|
1246
|
+
*/
|
|
1247
|
+
export declare const ListProfileRevisionsRequestSchema: GenMessage<ListProfileRevisionsRequest>;
|
|
1248
|
+
/**
|
|
1249
|
+
* @generated from message agentfactory.agent.v1.ListProfileRevisionsResponse
|
|
1250
|
+
*/
|
|
1251
|
+
export type ListProfileRevisionsResponse = Message<"agentfactory.agent.v1.ListProfileRevisionsResponse"> & {
|
|
1252
|
+
/**
|
|
1253
|
+
* @generated from field: repeated agentfactory.agent.v1.AgentProfileRevision revisions = 1;
|
|
1254
|
+
*/
|
|
1255
|
+
revisions: AgentProfileRevision[];
|
|
1256
|
+
/**
|
|
1257
|
+
* @generated from field: string next_page_token = 2;
|
|
1258
|
+
*/
|
|
1259
|
+
nextPageToken: string;
|
|
1260
|
+
};
|
|
1261
|
+
/**
|
|
1262
|
+
* Describes the message agentfactory.agent.v1.ListProfileRevisionsResponse.
|
|
1263
|
+
* Use `create(ListProfileRevisionsResponseSchema)` to create a new message.
|
|
1264
|
+
*/
|
|
1265
|
+
export declare const ListProfileRevisionsResponseSchema: GenMessage<ListProfileRevisionsResponse>;
|
|
1266
|
+
/**
|
|
1267
|
+
* @generated from message agentfactory.agent.v1.SkillSummary
|
|
1268
|
+
*/
|
|
1269
|
+
export type SkillSummary = Message<"agentfactory.agent.v1.SkillSummary"> & {
|
|
1270
|
+
/**
|
|
1271
|
+
* @generated from field: string provider = 1;
|
|
1272
|
+
*/
|
|
1273
|
+
provider: string;
|
|
1274
|
+
/**
|
|
1275
|
+
* @generated from field: string kind = 2;
|
|
1276
|
+
*/
|
|
1277
|
+
kind: string;
|
|
1278
|
+
/**
|
|
1279
|
+
* @generated from field: string slug = 3;
|
|
1280
|
+
*/
|
|
1281
|
+
slug: string;
|
|
1282
|
+
/**
|
|
1283
|
+
* @generated from field: string version = 4;
|
|
1284
|
+
*/
|
|
1285
|
+
version: string;
|
|
1286
|
+
/**
|
|
1287
|
+
* @generated from field: string title = 5;
|
|
1288
|
+
*/
|
|
1289
|
+
title: string;
|
|
1290
|
+
/**
|
|
1291
|
+
* @generated from field: string description = 6;
|
|
1292
|
+
*/
|
|
1293
|
+
description: string;
|
|
1294
|
+
/**
|
|
1295
|
+
* @generated from field: string trust = 7;
|
|
1296
|
+
*/
|
|
1297
|
+
trust: string;
|
|
1298
|
+
/**
|
|
1299
|
+
* @generated from field: string capability_id = 8;
|
|
1300
|
+
*/
|
|
1301
|
+
capabilityId: string;
|
|
1302
|
+
};
|
|
1303
|
+
/**
|
|
1304
|
+
* Describes the message agentfactory.agent.v1.SkillSummary.
|
|
1305
|
+
* Use `create(SkillSummarySchema)` to create a new message.
|
|
1306
|
+
*/
|
|
1307
|
+
export declare const SkillSummarySchema: GenMessage<SkillSummary>;
|
|
1308
|
+
/**
|
|
1309
|
+
* @generated from message agentfactory.agent.v1.SkillBody
|
|
1310
|
+
*/
|
|
1311
|
+
export type SkillBody = Message<"agentfactory.agent.v1.SkillBody"> & {
|
|
1312
|
+
/**
|
|
1313
|
+
* @generated from field: agentfactory.agent.v1.SkillSummary summary = 1;
|
|
1314
|
+
*/
|
|
1315
|
+
summary?: SkillSummary;
|
|
1316
|
+
/**
|
|
1317
|
+
* @generated from field: string instructions = 2;
|
|
1318
|
+
*/
|
|
1319
|
+
instructions: string;
|
|
1320
|
+
/**
|
|
1321
|
+
* @generated from field: repeated string skills = 3;
|
|
1322
|
+
*/
|
|
1323
|
+
skills: string[];
|
|
1324
|
+
/**
|
|
1325
|
+
* @generated from field: repeated string tool_allowlist = 4;
|
|
1326
|
+
*/
|
|
1327
|
+
toolAllowlist: string[];
|
|
1328
|
+
};
|
|
1329
|
+
/**
|
|
1330
|
+
* Describes the message agentfactory.agent.v1.SkillBody.
|
|
1331
|
+
* Use `create(SkillBodySchema)` to create a new message.
|
|
1332
|
+
*/
|
|
1333
|
+
export declare const SkillBodySchema: GenMessage<SkillBody>;
|
|
1334
|
+
/**
|
|
1335
|
+
* @generated from message agentfactory.agent.v1.CapabilityInstall
|
|
1336
|
+
*/
|
|
1337
|
+
export type CapabilityInstall = Message<"agentfactory.agent.v1.CapabilityInstall"> & {
|
|
1338
|
+
/**
|
|
1339
|
+
* @generated from field: string provider = 1;
|
|
1340
|
+
*/
|
|
1341
|
+
provider: string;
|
|
1342
|
+
/**
|
|
1343
|
+
* @generated from field: string kind = 2;
|
|
1344
|
+
*/
|
|
1345
|
+
kind: string;
|
|
1346
|
+
/**
|
|
1347
|
+
* @generated from field: string slug = 3;
|
|
1348
|
+
*/
|
|
1349
|
+
slug: string;
|
|
1350
|
+
/**
|
|
1351
|
+
* @generated from field: string version = 4;
|
|
1352
|
+
*/
|
|
1353
|
+
version: string;
|
|
1354
|
+
/**
|
|
1355
|
+
* @generated from field: bool enabled = 5;
|
|
1356
|
+
*/
|
|
1357
|
+
enabled: boolean;
|
|
1358
|
+
/**
|
|
1359
|
+
* @generated from field: string capability_id = 6;
|
|
1360
|
+
*/
|
|
1361
|
+
capabilityId: string;
|
|
1362
|
+
};
|
|
1363
|
+
/**
|
|
1364
|
+
* Describes the message agentfactory.agent.v1.CapabilityInstall.
|
|
1365
|
+
* Use `create(CapabilityInstallSchema)` to create a new message.
|
|
1366
|
+
*/
|
|
1367
|
+
export declare const CapabilityInstallSchema: GenMessage<CapabilityInstall>;
|
|
1368
|
+
/**
|
|
1369
|
+
* @generated from message agentfactory.agent.v1.ListSkillsRequest
|
|
1370
|
+
*/
|
|
1371
|
+
export type ListSkillsRequest = Message<"agentfactory.agent.v1.ListSkillsRequest"> & {
|
|
1372
|
+
/**
|
|
1373
|
+
* @generated from field: bool installed_only = 1;
|
|
1374
|
+
*/
|
|
1375
|
+
installedOnly: boolean;
|
|
1376
|
+
};
|
|
1377
|
+
/**
|
|
1378
|
+
* Describes the message agentfactory.agent.v1.ListSkillsRequest.
|
|
1379
|
+
* Use `create(ListSkillsRequestSchema)` to create a new message.
|
|
1380
|
+
*/
|
|
1381
|
+
export declare const ListSkillsRequestSchema: GenMessage<ListSkillsRequest>;
|
|
1382
|
+
/**
|
|
1383
|
+
* @generated from message agentfactory.agent.v1.ListSkillsResponse
|
|
1384
|
+
*/
|
|
1385
|
+
export type ListSkillsResponse = Message<"agentfactory.agent.v1.ListSkillsResponse"> & {
|
|
1386
|
+
/**
|
|
1387
|
+
* @generated from field: repeated agentfactory.agent.v1.SkillSummary skills = 1;
|
|
1388
|
+
*/
|
|
1389
|
+
skills: SkillSummary[];
|
|
1390
|
+
/**
|
|
1391
|
+
* @generated from field: string completeness = 2;
|
|
1392
|
+
*/
|
|
1393
|
+
completeness: string;
|
|
1394
|
+
};
|
|
1395
|
+
/**
|
|
1396
|
+
* Describes the message agentfactory.agent.v1.ListSkillsResponse.
|
|
1397
|
+
* Use `create(ListSkillsResponseSchema)` to create a new message.
|
|
1398
|
+
*/
|
|
1399
|
+
export declare const ListSkillsResponseSchema: GenMessage<ListSkillsResponse>;
|
|
1400
|
+
/**
|
|
1401
|
+
* @generated from message agentfactory.agent.v1.GetSkillRequest
|
|
1402
|
+
*/
|
|
1403
|
+
export type GetSkillRequest = Message<"agentfactory.agent.v1.GetSkillRequest"> & {
|
|
1404
|
+
/**
|
|
1405
|
+
* @generated from field: string capability_id = 1;
|
|
1406
|
+
*/
|
|
1407
|
+
capabilityId: string;
|
|
1408
|
+
/**
|
|
1409
|
+
* @generated from field: string provider = 2;
|
|
1410
|
+
*/
|
|
1411
|
+
provider: string;
|
|
1412
|
+
/**
|
|
1413
|
+
* @generated from field: string kind = 3;
|
|
1414
|
+
*/
|
|
1415
|
+
kind: string;
|
|
1416
|
+
/**
|
|
1417
|
+
* @generated from field: string slug = 4;
|
|
1418
|
+
*/
|
|
1419
|
+
slug: string;
|
|
1420
|
+
/**
|
|
1421
|
+
* @generated from field: string version = 5;
|
|
1422
|
+
*/
|
|
1423
|
+
version: string;
|
|
1424
|
+
};
|
|
1425
|
+
/**
|
|
1426
|
+
* Describes the message agentfactory.agent.v1.GetSkillRequest.
|
|
1427
|
+
* Use `create(GetSkillRequestSchema)` to create a new message.
|
|
1428
|
+
*/
|
|
1429
|
+
export declare const GetSkillRequestSchema: GenMessage<GetSkillRequest>;
|
|
1430
|
+
/**
|
|
1431
|
+
* @generated from message agentfactory.agent.v1.UpsertSkillRequest
|
|
1432
|
+
*/
|
|
1433
|
+
export type UpsertSkillRequest = Message<"agentfactory.agent.v1.UpsertSkillRequest"> & {
|
|
1434
|
+
/**
|
|
1435
|
+
* @generated from field: agentfactory.agent.v1.SkillBody skill = 1;
|
|
1436
|
+
*/
|
|
1437
|
+
skill?: SkillBody;
|
|
1438
|
+
};
|
|
1439
|
+
/**
|
|
1440
|
+
* Describes the message agentfactory.agent.v1.UpsertSkillRequest.
|
|
1441
|
+
* Use `create(UpsertSkillRequestSchema)` to create a new message.
|
|
1442
|
+
*/
|
|
1443
|
+
export declare const UpsertSkillRequestSchema: GenMessage<UpsertSkillRequest>;
|
|
1444
|
+
/**
|
|
1445
|
+
* @generated from message agentfactory.agent.v1.DeleteSkillRequest
|
|
1446
|
+
*/
|
|
1447
|
+
export type DeleteSkillRequest = Message<"agentfactory.agent.v1.DeleteSkillRequest"> & {
|
|
1448
|
+
/**
|
|
1449
|
+
* @generated from field: string capability_id = 1;
|
|
1450
|
+
*/
|
|
1451
|
+
capabilityId: string;
|
|
1452
|
+
/**
|
|
1453
|
+
* @generated from field: string kind = 2;
|
|
1454
|
+
*/
|
|
1455
|
+
kind: string;
|
|
1456
|
+
};
|
|
1457
|
+
/**
|
|
1458
|
+
* Describes the message agentfactory.agent.v1.DeleteSkillRequest.
|
|
1459
|
+
* Use `create(DeleteSkillRequestSchema)` to create a new message.
|
|
1460
|
+
*/
|
|
1461
|
+
export declare const DeleteSkillRequestSchema: GenMessage<DeleteSkillRequest>;
|
|
1462
|
+
/**
|
|
1463
|
+
* @generated from message agentfactory.agent.v1.InstallSkillRequest
|
|
1464
|
+
*/
|
|
1465
|
+
export type InstallSkillRequest = Message<"agentfactory.agent.v1.InstallSkillRequest"> & {
|
|
1466
|
+
/**
|
|
1467
|
+
* @generated from field: agentfactory.agent.v1.CapabilityInstall install = 1;
|
|
1468
|
+
*/
|
|
1469
|
+
install?: CapabilityInstall;
|
|
1470
|
+
};
|
|
1471
|
+
/**
|
|
1472
|
+
* Describes the message agentfactory.agent.v1.InstallSkillRequest.
|
|
1473
|
+
* Use `create(InstallSkillRequestSchema)` to create a new message.
|
|
1474
|
+
*/
|
|
1475
|
+
export declare const InstallSkillRequestSchema: GenMessage<InstallSkillRequest>;
|
|
1476
|
+
/**
|
|
1477
|
+
* @generated from message agentfactory.agent.v1.UninstallSkillRequest
|
|
1478
|
+
*/
|
|
1479
|
+
export type UninstallSkillRequest = Message<"agentfactory.agent.v1.UninstallSkillRequest"> & {
|
|
1480
|
+
/**
|
|
1481
|
+
* @generated from field: string kind = 1;
|
|
1482
|
+
*/
|
|
1483
|
+
kind: string;
|
|
1484
|
+
/**
|
|
1485
|
+
* @generated from field: string slug = 2;
|
|
1486
|
+
*/
|
|
1487
|
+
slug: string;
|
|
1488
|
+
};
|
|
1489
|
+
/**
|
|
1490
|
+
* Describes the message agentfactory.agent.v1.UninstallSkillRequest.
|
|
1491
|
+
* Use `create(UninstallSkillRequestSchema)` to create a new message.
|
|
1492
|
+
*/
|
|
1493
|
+
export declare const UninstallSkillRequestSchema: GenMessage<UninstallSkillRequest>;
|
|
1494
|
+
/**
|
|
1495
|
+
* @generated from message agentfactory.agent.v1.ShareSkillRequest
|
|
1496
|
+
*/
|
|
1497
|
+
export type ShareSkillRequest = Message<"agentfactory.agent.v1.ShareSkillRequest"> & {
|
|
1498
|
+
/**
|
|
1499
|
+
* @generated from field: string capability_id = 1;
|
|
1500
|
+
*/
|
|
1501
|
+
capabilityId: string;
|
|
1502
|
+
/**
|
|
1503
|
+
* @generated from field: string kind = 2;
|
|
1504
|
+
*/
|
|
1505
|
+
kind: string;
|
|
1506
|
+
/**
|
|
1507
|
+
* @generated from field: string target_subject_id = 3;
|
|
1508
|
+
*/
|
|
1509
|
+
targetSubjectId: string;
|
|
1510
|
+
/**
|
|
1511
|
+
* @generated from field: string role = 4;
|
|
1512
|
+
*/
|
|
1513
|
+
role: string;
|
|
1514
|
+
};
|
|
1515
|
+
/**
|
|
1516
|
+
* Describes the message agentfactory.agent.v1.ShareSkillRequest.
|
|
1517
|
+
* Use `create(ShareSkillRequestSchema)` to create a new message.
|
|
1518
|
+
*/
|
|
1519
|
+
export declare const ShareSkillRequestSchema: GenMessage<ShareSkillRequest>;
|
|
1520
|
+
/**
|
|
1521
|
+
* @generated from message agentfactory.agent.v1.MemorySettings
|
|
1522
|
+
*/
|
|
1523
|
+
export type MemorySettings = Message<"agentfactory.agent.v1.MemorySettings"> & {
|
|
1524
|
+
/**
|
|
1525
|
+
* @generated from field: string mode = 1;
|
|
1526
|
+
*/
|
|
1527
|
+
mode: string;
|
|
1528
|
+
/**
|
|
1529
|
+
* @generated from field: int64 ttl_days = 2;
|
|
1530
|
+
*/
|
|
1531
|
+
ttlDays: bigint;
|
|
1532
|
+
};
|
|
1533
|
+
/**
|
|
1534
|
+
* Describes the message agentfactory.agent.v1.MemorySettings.
|
|
1535
|
+
* Use `create(MemorySettingsSchema)` to create a new message.
|
|
1536
|
+
*/
|
|
1537
|
+
export declare const MemorySettingsSchema: GenMessage<MemorySettings>;
|
|
1538
|
+
/**
|
|
1539
|
+
* @generated from message agentfactory.agent.v1.Memory
|
|
1540
|
+
*/
|
|
1541
|
+
export type Memory = Message<"agentfactory.agent.v1.Memory"> & {
|
|
1542
|
+
/**
|
|
1543
|
+
* @generated from field: string id = 1;
|
|
1544
|
+
*/
|
|
1545
|
+
id: string;
|
|
1546
|
+
/**
|
|
1547
|
+
* @generated from field: string content = 2;
|
|
1548
|
+
*/
|
|
1549
|
+
content: string;
|
|
1550
|
+
/**
|
|
1551
|
+
* @generated from field: string status = 3;
|
|
1552
|
+
*/
|
|
1553
|
+
status: string;
|
|
1554
|
+
/**
|
|
1555
|
+
* @generated from field: string risk = 4;
|
|
1556
|
+
*/
|
|
1557
|
+
risk: string;
|
|
1558
|
+
/**
|
|
1559
|
+
* @generated from field: string source_session_id = 5;
|
|
1560
|
+
*/
|
|
1561
|
+
sourceSessionId: string;
|
|
1562
|
+
/**
|
|
1563
|
+
* @generated from field: uint64 source_event_seq = 6;
|
|
1564
|
+
*/
|
|
1565
|
+
sourceEventSeq: bigint;
|
|
1566
|
+
/**
|
|
1567
|
+
* @generated from field: string replaces_id = 7;
|
|
1568
|
+
*/
|
|
1569
|
+
replacesId: string;
|
|
1570
|
+
/**
|
|
1571
|
+
* @generated from field: google.protobuf.Timestamp expires_at = 8;
|
|
1572
|
+
*/
|
|
1573
|
+
expiresAt?: Timestamp;
|
|
1574
|
+
/**
|
|
1575
|
+
* @generated from field: google.protobuf.Timestamp created_at = 9;
|
|
1576
|
+
*/
|
|
1577
|
+
createdAt?: Timestamp;
|
|
1578
|
+
};
|
|
1579
|
+
/**
|
|
1580
|
+
* Describes the message agentfactory.agent.v1.Memory.
|
|
1581
|
+
* Use `create(MemorySchema)` to create a new message.
|
|
1582
|
+
*/
|
|
1583
|
+
export declare const MemorySchema: GenMessage<Memory>;
|
|
1584
|
+
/**
|
|
1585
|
+
* @generated from message agentfactory.agent.v1.GetMemorySettingsRequest
|
|
1586
|
+
*/
|
|
1587
|
+
export type GetMemorySettingsRequest = Message<"agentfactory.agent.v1.GetMemorySettingsRequest"> & {};
|
|
1588
|
+
/**
|
|
1589
|
+
* Describes the message agentfactory.agent.v1.GetMemorySettingsRequest.
|
|
1590
|
+
* Use `create(GetMemorySettingsRequestSchema)` to create a new message.
|
|
1591
|
+
*/
|
|
1592
|
+
export declare const GetMemorySettingsRequestSchema: GenMessage<GetMemorySettingsRequest>;
|
|
1593
|
+
/**
|
|
1594
|
+
* @generated from message agentfactory.agent.v1.UpdateMemorySettingsRequest
|
|
1595
|
+
*/
|
|
1596
|
+
export type UpdateMemorySettingsRequest = Message<"agentfactory.agent.v1.UpdateMemorySettingsRequest"> & {
|
|
1597
|
+
/**
|
|
1598
|
+
* @generated from field: agentfactory.agent.v1.MemorySettings settings = 1;
|
|
1599
|
+
*/
|
|
1600
|
+
settings?: MemorySettings;
|
|
1601
|
+
};
|
|
1602
|
+
/**
|
|
1603
|
+
* Describes the message agentfactory.agent.v1.UpdateMemorySettingsRequest.
|
|
1604
|
+
* Use `create(UpdateMemorySettingsRequestSchema)` to create a new message.
|
|
1605
|
+
*/
|
|
1606
|
+
export declare const UpdateMemorySettingsRequestSchema: GenMessage<UpdateMemorySettingsRequest>;
|
|
1607
|
+
/**
|
|
1608
|
+
* @generated from message agentfactory.agent.v1.ListMemoriesRequest
|
|
1609
|
+
*/
|
|
1610
|
+
export type ListMemoriesRequest = Message<"agentfactory.agent.v1.ListMemoriesRequest"> & {
|
|
1611
|
+
/**
|
|
1612
|
+
* @generated from field: string status = 1;
|
|
1613
|
+
*/
|
|
1614
|
+
status: string;
|
|
1615
|
+
/**
|
|
1616
|
+
* @generated from field: uint32 page_size = 2;
|
|
1617
|
+
*/
|
|
1618
|
+
pageSize: number;
|
|
1619
|
+
/**
|
|
1620
|
+
* @generated from field: string page_token = 3;
|
|
1621
|
+
*/
|
|
1622
|
+
pageToken: string;
|
|
1623
|
+
};
|
|
1624
|
+
/**
|
|
1625
|
+
* Describes the message agentfactory.agent.v1.ListMemoriesRequest.
|
|
1626
|
+
* Use `create(ListMemoriesRequestSchema)` to create a new message.
|
|
1627
|
+
*/
|
|
1628
|
+
export declare const ListMemoriesRequestSchema: GenMessage<ListMemoriesRequest>;
|
|
1629
|
+
/**
|
|
1630
|
+
* @generated from message agentfactory.agent.v1.ListMemoriesResponse
|
|
1631
|
+
*/
|
|
1632
|
+
export type ListMemoriesResponse = Message<"agentfactory.agent.v1.ListMemoriesResponse"> & {
|
|
1633
|
+
/**
|
|
1634
|
+
* @generated from field: repeated agentfactory.agent.v1.Memory memories = 1;
|
|
1635
|
+
*/
|
|
1636
|
+
memories: Memory[];
|
|
1637
|
+
/**
|
|
1638
|
+
* @generated from field: string next_page_token = 2;
|
|
1639
|
+
*/
|
|
1640
|
+
nextPageToken: string;
|
|
1641
|
+
};
|
|
1642
|
+
/**
|
|
1643
|
+
* Describes the message agentfactory.agent.v1.ListMemoriesResponse.
|
|
1644
|
+
* Use `create(ListMemoriesResponseSchema)` to create a new message.
|
|
1645
|
+
*/
|
|
1646
|
+
export declare const ListMemoriesResponseSchema: GenMessage<ListMemoriesResponse>;
|
|
1647
|
+
/**
|
|
1648
|
+
* @generated from message agentfactory.agent.v1.ConfirmMemoryRequest
|
|
1649
|
+
*/
|
|
1650
|
+
export type ConfirmMemoryRequest = Message<"agentfactory.agent.v1.ConfirmMemoryRequest"> & {
|
|
1651
|
+
/**
|
|
1652
|
+
* @generated from field: string memory_id = 1;
|
|
1653
|
+
*/
|
|
1654
|
+
memoryId: string;
|
|
1655
|
+
};
|
|
1656
|
+
/**
|
|
1657
|
+
* Describes the message agentfactory.agent.v1.ConfirmMemoryRequest.
|
|
1658
|
+
* Use `create(ConfirmMemoryRequestSchema)` to create a new message.
|
|
1659
|
+
*/
|
|
1660
|
+
export declare const ConfirmMemoryRequestSchema: GenMessage<ConfirmMemoryRequest>;
|
|
1661
|
+
/**
|
|
1662
|
+
* @generated from message agentfactory.agent.v1.DeleteMemoryRequest
|
|
1663
|
+
*/
|
|
1664
|
+
export type DeleteMemoryRequest = Message<"agentfactory.agent.v1.DeleteMemoryRequest"> & {
|
|
1665
|
+
/**
|
|
1666
|
+
* @generated from field: string memory_id = 1;
|
|
1667
|
+
*/
|
|
1668
|
+
memoryId: string;
|
|
1669
|
+
};
|
|
1670
|
+
/**
|
|
1671
|
+
* Describes the message agentfactory.agent.v1.DeleteMemoryRequest.
|
|
1672
|
+
* Use `create(DeleteMemoryRequestSchema)` to create a new message.
|
|
1673
|
+
*/
|
|
1674
|
+
export declare const DeleteMemoryRequestSchema: GenMessage<DeleteMemoryRequest>;
|
|
1675
|
+
/**
|
|
1676
|
+
* @generated from message agentfactory.agent.v1.Interaction
|
|
1677
|
+
*/
|
|
1678
|
+
export type Interaction = Message<"agentfactory.agent.v1.Interaction"> & {
|
|
1679
|
+
/**
|
|
1680
|
+
* @generated from field: string id = 1;
|
|
1681
|
+
*/
|
|
1682
|
+
id: string;
|
|
1683
|
+
/**
|
|
1684
|
+
* @generated from field: string session_id = 2;
|
|
1685
|
+
*/
|
|
1686
|
+
sessionId: string;
|
|
1687
|
+
/**
|
|
1688
|
+
* @generated from field: string run_id = 3;
|
|
1689
|
+
*/
|
|
1690
|
+
runId: string;
|
|
1691
|
+
/**
|
|
1692
|
+
* @generated from field: string kind = 4;
|
|
1693
|
+
*/
|
|
1694
|
+
kind: string;
|
|
1695
|
+
/**
|
|
1696
|
+
* @generated from field: string status = 5;
|
|
1697
|
+
*/
|
|
1698
|
+
status: string;
|
|
1699
|
+
/**
|
|
1700
|
+
* @generated from field: google.protobuf.Value payload = 6;
|
|
1701
|
+
*/
|
|
1702
|
+
payload?: Value;
|
|
1703
|
+
/**
|
|
1704
|
+
* @generated from field: google.protobuf.Value resolution = 7;
|
|
1705
|
+
*/
|
|
1706
|
+
resolution?: Value;
|
|
1707
|
+
/**
|
|
1708
|
+
* @generated from field: google.protobuf.Timestamp created_at = 8;
|
|
1709
|
+
*/
|
|
1710
|
+
createdAt?: Timestamp;
|
|
1711
|
+
/**
|
|
1712
|
+
* @generated from field: google.protobuf.Timestamp resolved_at = 9;
|
|
1713
|
+
*/
|
|
1714
|
+
resolvedAt?: Timestamp;
|
|
1715
|
+
};
|
|
1716
|
+
/**
|
|
1717
|
+
* Describes the message agentfactory.agent.v1.Interaction.
|
|
1718
|
+
* Use `create(InteractionSchema)` to create a new message.
|
|
1719
|
+
*/
|
|
1720
|
+
export declare const InteractionSchema: GenMessage<Interaction>;
|
|
1721
|
+
/**
|
|
1722
|
+
* @generated from message agentfactory.agent.v1.GetInteractionRequest
|
|
1723
|
+
*/
|
|
1724
|
+
export type GetInteractionRequest = Message<"agentfactory.agent.v1.GetInteractionRequest"> & {
|
|
1725
|
+
/**
|
|
1726
|
+
* @generated from field: string interaction_id = 1;
|
|
1727
|
+
*/
|
|
1728
|
+
interactionId: string;
|
|
1729
|
+
};
|
|
1730
|
+
/**
|
|
1731
|
+
* Describes the message agentfactory.agent.v1.GetInteractionRequest.
|
|
1732
|
+
* Use `create(GetInteractionRequestSchema)` to create a new message.
|
|
1733
|
+
*/
|
|
1734
|
+
export declare const GetInteractionRequestSchema: GenMessage<GetInteractionRequest>;
|
|
1735
|
+
/**
|
|
1736
|
+
* @generated from message agentfactory.agent.v1.ListInteractionsRequest
|
|
1737
|
+
*/
|
|
1738
|
+
export type ListInteractionsRequest = Message<"agentfactory.agent.v1.ListInteractionsRequest"> & {
|
|
1739
|
+
/**
|
|
1740
|
+
* @generated from field: string session_id = 1;
|
|
1741
|
+
*/
|
|
1742
|
+
sessionId: string;
|
|
1743
|
+
/**
|
|
1744
|
+
* @generated from field: string status = 2;
|
|
1745
|
+
*/
|
|
1746
|
+
status: string;
|
|
1747
|
+
};
|
|
1748
|
+
/**
|
|
1749
|
+
* Describes the message agentfactory.agent.v1.ListInteractionsRequest.
|
|
1750
|
+
* Use `create(ListInteractionsRequestSchema)` to create a new message.
|
|
1751
|
+
*/
|
|
1752
|
+
export declare const ListInteractionsRequestSchema: GenMessage<ListInteractionsRequest>;
|
|
1753
|
+
/**
|
|
1754
|
+
* @generated from message agentfactory.agent.v1.ListInteractionsResponse
|
|
1755
|
+
*/
|
|
1756
|
+
export type ListInteractionsResponse = Message<"agentfactory.agent.v1.ListInteractionsResponse"> & {
|
|
1757
|
+
/**
|
|
1758
|
+
* @generated from field: repeated agentfactory.agent.v1.Interaction interactions = 1;
|
|
1759
|
+
*/
|
|
1760
|
+
interactions: Interaction[];
|
|
1761
|
+
};
|
|
1762
|
+
/**
|
|
1763
|
+
* Describes the message agentfactory.agent.v1.ListInteractionsResponse.
|
|
1764
|
+
* Use `create(ListInteractionsResponseSchema)` to create a new message.
|
|
1765
|
+
*/
|
|
1766
|
+
export declare const ListInteractionsResponseSchema: GenMessage<ListInteractionsResponse>;
|
|
1767
|
+
/**
|
|
1768
|
+
* @generated from message agentfactory.agent.v1.ResolveInteractionRequest
|
|
1769
|
+
*/
|
|
1770
|
+
export type ResolveInteractionRequest = Message<"agentfactory.agent.v1.ResolveInteractionRequest"> & {
|
|
1771
|
+
/**
|
|
1772
|
+
* @generated from field: string interaction_id = 1;
|
|
1773
|
+
*/
|
|
1774
|
+
interactionId: string;
|
|
1775
|
+
/**
|
|
1776
|
+
* @generated from field: agentfactory.agent.v1.InteractionResolutionKind resolution = 2;
|
|
1777
|
+
*/
|
|
1778
|
+
resolution: InteractionResolutionKind;
|
|
1779
|
+
/**
|
|
1780
|
+
* @generated from field: google.protobuf.Value payload = 3;
|
|
1781
|
+
*/
|
|
1782
|
+
payload?: Value;
|
|
1783
|
+
};
|
|
1784
|
+
/**
|
|
1785
|
+
* Describes the message agentfactory.agent.v1.ResolveInteractionRequest.
|
|
1786
|
+
* Use `create(ResolveInteractionRequestSchema)` to create a new message.
|
|
1787
|
+
*/
|
|
1788
|
+
export declare const ResolveInteractionRequestSchema: GenMessage<ResolveInteractionRequest>;
|
|
1789
|
+
/**
|
|
1790
|
+
* @generated from message agentfactory.agent.v1.Collaboration
|
|
1791
|
+
*/
|
|
1792
|
+
export type Collaboration = Message<"agentfactory.agent.v1.Collaboration"> & {
|
|
1793
|
+
/**
|
|
1794
|
+
* @generated from field: string id = 1;
|
|
1795
|
+
*/
|
|
1796
|
+
id: string;
|
|
1797
|
+
/**
|
|
1798
|
+
* @generated from field: string session_id = 2;
|
|
1799
|
+
*/
|
|
1800
|
+
sessionId: string;
|
|
1801
|
+
/**
|
|
1802
|
+
* @generated from field: string run_id = 3;
|
|
1803
|
+
*/
|
|
1804
|
+
runId: string;
|
|
1805
|
+
/**
|
|
1806
|
+
* @generated from field: string status = 4;
|
|
1807
|
+
*/
|
|
1808
|
+
status: string;
|
|
1809
|
+
/**
|
|
1810
|
+
* @generated from field: bool cancel_requested = 5;
|
|
1811
|
+
*/
|
|
1812
|
+
cancelRequested: boolean;
|
|
1813
|
+
/**
|
|
1814
|
+
* @generated from field: google.protobuf.Timestamp created_at = 6;
|
|
1815
|
+
*/
|
|
1816
|
+
createdAt?: Timestamp;
|
|
1817
|
+
/**
|
|
1818
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 7;
|
|
1819
|
+
*/
|
|
1820
|
+
updatedAt?: Timestamp;
|
|
1821
|
+
};
|
|
1822
|
+
/**
|
|
1823
|
+
* Describes the message agentfactory.agent.v1.Collaboration.
|
|
1824
|
+
* Use `create(CollaborationSchema)` to create a new message.
|
|
1825
|
+
*/
|
|
1826
|
+
export declare const CollaborationSchema: GenMessage<Collaboration>;
|
|
1827
|
+
/**
|
|
1828
|
+
* @generated from message agentfactory.agent.v1.CollaborationTask
|
|
1829
|
+
*/
|
|
1830
|
+
export type CollaborationTask = Message<"agentfactory.agent.v1.CollaborationTask"> & {
|
|
1831
|
+
/**
|
|
1832
|
+
* @generated from field: string id = 1;
|
|
1833
|
+
*/
|
|
1834
|
+
id: string;
|
|
1835
|
+
/**
|
|
1836
|
+
* @generated from field: string child_session_id = 2;
|
|
1837
|
+
*/
|
|
1838
|
+
childSessionId: string;
|
|
1839
|
+
/**
|
|
1840
|
+
* @generated from field: string provider = 3;
|
|
1841
|
+
*/
|
|
1842
|
+
provider: string;
|
|
1843
|
+
/**
|
|
1844
|
+
* @generated from field: string objective = 4;
|
|
1845
|
+
*/
|
|
1846
|
+
objective: string;
|
|
1847
|
+
/**
|
|
1848
|
+
* @generated from field: string status = 5;
|
|
1849
|
+
*/
|
|
1850
|
+
status: string;
|
|
1851
|
+
/**
|
|
1852
|
+
* @generated from field: string result = 6;
|
|
1853
|
+
*/
|
|
1854
|
+
result: string;
|
|
1855
|
+
/**
|
|
1856
|
+
* @generated from field: uint32 attempts = 7;
|
|
1857
|
+
*/
|
|
1858
|
+
attempts: number;
|
|
1859
|
+
};
|
|
1860
|
+
/**
|
|
1861
|
+
* Describes the message agentfactory.agent.v1.CollaborationTask.
|
|
1862
|
+
* Use `create(CollaborationTaskSchema)` to create a new message.
|
|
1863
|
+
*/
|
|
1864
|
+
export declare const CollaborationTaskSchema: GenMessage<CollaborationTask>;
|
|
1865
|
+
/**
|
|
1866
|
+
* @generated from message agentfactory.agent.v1.GetCollaborationRequest
|
|
1867
|
+
*/
|
|
1868
|
+
export type GetCollaborationRequest = Message<"agentfactory.agent.v1.GetCollaborationRequest"> & {
|
|
1869
|
+
/**
|
|
1870
|
+
* @generated from field: string collaboration_id = 1;
|
|
1871
|
+
*/
|
|
1872
|
+
collaborationId: string;
|
|
1873
|
+
};
|
|
1874
|
+
/**
|
|
1875
|
+
* Describes the message agentfactory.agent.v1.GetCollaborationRequest.
|
|
1876
|
+
* Use `create(GetCollaborationRequestSchema)` to create a new message.
|
|
1877
|
+
*/
|
|
1878
|
+
export declare const GetCollaborationRequestSchema: GenMessage<GetCollaborationRequest>;
|
|
1879
|
+
/**
|
|
1880
|
+
* @generated from message agentfactory.agent.v1.ListCollaborationTasksRequest
|
|
1881
|
+
*/
|
|
1882
|
+
export type ListCollaborationTasksRequest = Message<"agentfactory.agent.v1.ListCollaborationTasksRequest"> & {
|
|
1883
|
+
/**
|
|
1884
|
+
* @generated from field: string collaboration_id = 1;
|
|
1885
|
+
*/
|
|
1886
|
+
collaborationId: string;
|
|
1887
|
+
};
|
|
1888
|
+
/**
|
|
1889
|
+
* Describes the message agentfactory.agent.v1.ListCollaborationTasksRequest.
|
|
1890
|
+
* Use `create(ListCollaborationTasksRequestSchema)` to create a new message.
|
|
1891
|
+
*/
|
|
1892
|
+
export declare const ListCollaborationTasksRequestSchema: GenMessage<ListCollaborationTasksRequest>;
|
|
1893
|
+
/**
|
|
1894
|
+
* @generated from message agentfactory.agent.v1.ListCollaborationTasksResponse
|
|
1895
|
+
*/
|
|
1896
|
+
export type ListCollaborationTasksResponse = Message<"agentfactory.agent.v1.ListCollaborationTasksResponse"> & {
|
|
1897
|
+
/**
|
|
1898
|
+
* @generated from field: repeated agentfactory.agent.v1.CollaborationTask tasks = 1;
|
|
1899
|
+
*/
|
|
1900
|
+
tasks: CollaborationTask[];
|
|
1901
|
+
};
|
|
1902
|
+
/**
|
|
1903
|
+
* Describes the message agentfactory.agent.v1.ListCollaborationTasksResponse.
|
|
1904
|
+
* Use `create(ListCollaborationTasksResponseSchema)` to create a new message.
|
|
1905
|
+
*/
|
|
1906
|
+
export declare const ListCollaborationTasksResponseSchema: GenMessage<ListCollaborationTasksResponse>;
|
|
1907
|
+
/**
|
|
1908
|
+
* @generated from message agentfactory.agent.v1.CancelCollaborationRequest
|
|
1909
|
+
*/
|
|
1910
|
+
export type CancelCollaborationRequest = Message<"agentfactory.agent.v1.CancelCollaborationRequest"> & {
|
|
1911
|
+
/**
|
|
1912
|
+
* @generated from field: string collaboration_id = 1;
|
|
1913
|
+
*/
|
|
1914
|
+
collaborationId: string;
|
|
1915
|
+
};
|
|
1916
|
+
/**
|
|
1917
|
+
* Describes the message agentfactory.agent.v1.CancelCollaborationRequest.
|
|
1918
|
+
* Use `create(CancelCollaborationRequestSchema)` to create a new message.
|
|
1919
|
+
*/
|
|
1920
|
+
export declare const CancelCollaborationRequestSchema: GenMessage<CancelCollaborationRequest>;
|
|
1921
|
+
/**
|
|
1922
|
+
* @generated from enum agentfactory.agent.v1.InteractionResolutionKind
|
|
1923
|
+
*/
|
|
1924
|
+
export declare enum InteractionResolutionKind {
|
|
1925
|
+
/**
|
|
1926
|
+
* @generated from enum value: INTERACTION_RESOLUTION_KIND_UNSPECIFIED = 0;
|
|
1927
|
+
*/
|
|
1928
|
+
UNSPECIFIED = 0,
|
|
1929
|
+
/**
|
|
1930
|
+
* @generated from enum value: INTERACTION_RESOLUTION_KIND_CONFIRMED = 1;
|
|
1931
|
+
*/
|
|
1932
|
+
CONFIRMED = 1,
|
|
1933
|
+
/**
|
|
1934
|
+
* @generated from enum value: INTERACTION_RESOLUTION_KIND_REJECTED = 2;
|
|
1935
|
+
*/
|
|
1936
|
+
REJECTED = 2,
|
|
1937
|
+
/**
|
|
1938
|
+
* @generated from enum value: INTERACTION_RESOLUTION_KIND_ANSWERED = 3;
|
|
1939
|
+
*/
|
|
1940
|
+
ANSWERED = 3
|
|
1941
|
+
}
|
|
1942
|
+
/**
|
|
1943
|
+
* Describes the enum agentfactory.agent.v1.InteractionResolutionKind.
|
|
1944
|
+
*/
|
|
1945
|
+
export declare const InteractionResolutionKindSchema: GenEnum<InteractionResolutionKind>;
|
|
1946
|
+
/**
|
|
1947
|
+
* Identity, roles, locale, request id and entitlements are transport metadata.
|
|
1948
|
+
*
|
|
1949
|
+
* @generated from service agentfactory.agent.v1.AgentSessionService
|
|
1950
|
+
*/
|
|
1951
|
+
export declare const AgentSessionService: GenService<{
|
|
1952
|
+
/**
|
|
1953
|
+
* @generated from rpc agentfactory.agent.v1.AgentSessionService.CreateSession
|
|
1954
|
+
*/
|
|
1955
|
+
createSession: {
|
|
1956
|
+
methodKind: "unary";
|
|
1957
|
+
input: typeof CreateSessionRequestSchema;
|
|
1958
|
+
output: typeof SessionSchema;
|
|
1959
|
+
};
|
|
1960
|
+
/**
|
|
1961
|
+
* @generated from rpc agentfactory.agent.v1.AgentSessionService.ListSessions
|
|
1962
|
+
*/
|
|
1963
|
+
listSessions: {
|
|
1964
|
+
methodKind: "unary";
|
|
1965
|
+
input: typeof ListSessionsRequestSchema;
|
|
1966
|
+
output: typeof ListSessionsResponseSchema;
|
|
1967
|
+
};
|
|
1968
|
+
/**
|
|
1969
|
+
* @generated from rpc agentfactory.agent.v1.AgentSessionService.GetSession
|
|
1970
|
+
*/
|
|
1971
|
+
getSession: {
|
|
1972
|
+
methodKind: "unary";
|
|
1973
|
+
input: typeof GetSessionRequestSchema;
|
|
1974
|
+
output: typeof SessionSchema;
|
|
1975
|
+
};
|
|
1976
|
+
/**
|
|
1977
|
+
* @generated from rpc agentfactory.agent.v1.AgentSessionService.DeleteSession
|
|
1978
|
+
*/
|
|
1979
|
+
deleteSession: {
|
|
1980
|
+
methodKind: "unary";
|
|
1981
|
+
input: typeof DeleteSessionRequestSchema;
|
|
1982
|
+
output: typeof EmptySchema;
|
|
1983
|
+
};
|
|
1984
|
+
/**
|
|
1985
|
+
* @generated from rpc agentfactory.agent.v1.AgentSessionService.ForkSession
|
|
1986
|
+
*/
|
|
1987
|
+
forkSession: {
|
|
1988
|
+
methodKind: "unary";
|
|
1989
|
+
input: typeof ForkSessionRequestSchema;
|
|
1990
|
+
output: typeof SessionSchema;
|
|
1991
|
+
};
|
|
1992
|
+
/**
|
|
1993
|
+
* @generated from rpc agentfactory.agent.v1.AgentSessionService.SubmitInput
|
|
1994
|
+
*/
|
|
1995
|
+
submitInput: {
|
|
1996
|
+
methodKind: "unary";
|
|
1997
|
+
input: typeof SubmitInputRequestSchema;
|
|
1998
|
+
output: typeof InputReceiptSchema;
|
|
1999
|
+
};
|
|
2000
|
+
/**
|
|
2001
|
+
* @generated from rpc agentfactory.agent.v1.AgentSessionService.CancelRun
|
|
2002
|
+
*/
|
|
2003
|
+
cancelRun: {
|
|
2004
|
+
methodKind: "unary";
|
|
2005
|
+
input: typeof CancelRunRequestSchema;
|
|
2006
|
+
output: typeof RunSchema;
|
|
2007
|
+
};
|
|
2008
|
+
/**
|
|
2009
|
+
* @generated from rpc agentfactory.agent.v1.AgentSessionService.GetRun
|
|
2010
|
+
*/
|
|
2011
|
+
getRun: {
|
|
2012
|
+
methodKind: "unary";
|
|
2013
|
+
input: typeof GetRunRequestSchema;
|
|
2014
|
+
output: typeof RunSchema;
|
|
2015
|
+
};
|
|
2016
|
+
/**
|
|
2017
|
+
* @generated from rpc agentfactory.agent.v1.AgentSessionService.FollowEvents
|
|
2018
|
+
*/
|
|
2019
|
+
followEvents: {
|
|
2020
|
+
methodKind: "server_streaming";
|
|
2021
|
+
input: typeof FollowEventsRequestSchema;
|
|
2022
|
+
output: typeof SessionEventSchema;
|
|
2023
|
+
};
|
|
2024
|
+
}>;
|
|
2025
|
+
/**
|
|
2026
|
+
* @generated from service agentfactory.agent.v1.AgentProfileService
|
|
2027
|
+
*/
|
|
2028
|
+
export declare const AgentProfileService: GenService<{
|
|
2029
|
+
/**
|
|
2030
|
+
* @generated from rpc agentfactory.agent.v1.AgentProfileService.CreateProfile
|
|
2031
|
+
*/
|
|
2032
|
+
createProfile: {
|
|
2033
|
+
methodKind: "unary";
|
|
2034
|
+
input: typeof CreateProfileRequestSchema;
|
|
2035
|
+
output: typeof AgentProfileViewSchema;
|
|
2036
|
+
};
|
|
2037
|
+
/**
|
|
2038
|
+
* @generated from rpc agentfactory.agent.v1.AgentProfileService.ListProfiles
|
|
2039
|
+
*/
|
|
2040
|
+
listProfiles: {
|
|
2041
|
+
methodKind: "unary";
|
|
2042
|
+
input: typeof ListProfilesRequestSchema;
|
|
2043
|
+
output: typeof ListProfilesResponseSchema;
|
|
2044
|
+
};
|
|
2045
|
+
/**
|
|
2046
|
+
* @generated from rpc agentfactory.agent.v1.AgentProfileService.GetProfile
|
|
2047
|
+
*/
|
|
2048
|
+
getProfile: {
|
|
2049
|
+
methodKind: "unary";
|
|
2050
|
+
input: typeof GetProfileRequestSchema;
|
|
2051
|
+
output: typeof AgentProfileViewSchema;
|
|
2052
|
+
};
|
|
2053
|
+
/**
|
|
2054
|
+
* @generated from rpc agentfactory.agent.v1.AgentProfileService.UpdateProfile
|
|
2055
|
+
*/
|
|
2056
|
+
updateProfile: {
|
|
2057
|
+
methodKind: "unary";
|
|
2058
|
+
input: typeof UpdateProfileRequestSchema;
|
|
2059
|
+
output: typeof AgentProfileViewSchema;
|
|
2060
|
+
};
|
|
2061
|
+
/**
|
|
2062
|
+
* @generated from rpc agentfactory.agent.v1.AgentProfileService.DeleteProfile
|
|
2063
|
+
*/
|
|
2064
|
+
deleteProfile: {
|
|
2065
|
+
methodKind: "unary";
|
|
2066
|
+
input: typeof DeleteProfileRequestSchema;
|
|
2067
|
+
output: typeof EmptySchema;
|
|
2068
|
+
};
|
|
2069
|
+
/**
|
|
2070
|
+
* @generated from rpc agentfactory.agent.v1.AgentProfileService.ListProfileRevisions
|
|
2071
|
+
*/
|
|
2072
|
+
listProfileRevisions: {
|
|
2073
|
+
methodKind: "unary";
|
|
2074
|
+
input: typeof ListProfileRevisionsRequestSchema;
|
|
2075
|
+
output: typeof ListProfileRevisionsResponseSchema;
|
|
2076
|
+
};
|
|
2077
|
+
}>;
|
|
2078
|
+
/**
|
|
2079
|
+
* @generated from service agentfactory.agent.v1.AgentCapabilityService
|
|
2080
|
+
*/
|
|
2081
|
+
export declare const AgentCapabilityService: GenService<{
|
|
2082
|
+
/**
|
|
2083
|
+
* @generated from rpc agentfactory.agent.v1.AgentCapabilityService.ListSkills
|
|
2084
|
+
*/
|
|
2085
|
+
listSkills: {
|
|
2086
|
+
methodKind: "unary";
|
|
2087
|
+
input: typeof ListSkillsRequestSchema;
|
|
2088
|
+
output: typeof ListSkillsResponseSchema;
|
|
2089
|
+
};
|
|
2090
|
+
/**
|
|
2091
|
+
* @generated from rpc agentfactory.agent.v1.AgentCapabilityService.GetSkill
|
|
2092
|
+
*/
|
|
2093
|
+
getSkill: {
|
|
2094
|
+
methodKind: "unary";
|
|
2095
|
+
input: typeof GetSkillRequestSchema;
|
|
2096
|
+
output: typeof SkillBodySchema;
|
|
2097
|
+
};
|
|
2098
|
+
/**
|
|
2099
|
+
* @generated from rpc agentfactory.agent.v1.AgentCapabilityService.UpsertSkill
|
|
2100
|
+
*/
|
|
2101
|
+
upsertSkill: {
|
|
2102
|
+
methodKind: "unary";
|
|
2103
|
+
input: typeof UpsertSkillRequestSchema;
|
|
2104
|
+
output: typeof SkillSummarySchema;
|
|
2105
|
+
};
|
|
2106
|
+
/**
|
|
2107
|
+
* @generated from rpc agentfactory.agent.v1.AgentCapabilityService.DeleteSkill
|
|
2108
|
+
*/
|
|
2109
|
+
deleteSkill: {
|
|
2110
|
+
methodKind: "unary";
|
|
2111
|
+
input: typeof DeleteSkillRequestSchema;
|
|
2112
|
+
output: typeof EmptySchema;
|
|
2113
|
+
};
|
|
2114
|
+
/**
|
|
2115
|
+
* @generated from rpc agentfactory.agent.v1.AgentCapabilityService.InstallSkill
|
|
2116
|
+
*/
|
|
2117
|
+
installSkill: {
|
|
2118
|
+
methodKind: "unary";
|
|
2119
|
+
input: typeof InstallSkillRequestSchema;
|
|
2120
|
+
output: typeof CapabilityInstallSchema;
|
|
2121
|
+
};
|
|
2122
|
+
/**
|
|
2123
|
+
* @generated from rpc agentfactory.agent.v1.AgentCapabilityService.UninstallSkill
|
|
2124
|
+
*/
|
|
2125
|
+
uninstallSkill: {
|
|
2126
|
+
methodKind: "unary";
|
|
2127
|
+
input: typeof UninstallSkillRequestSchema;
|
|
2128
|
+
output: typeof EmptySchema;
|
|
2129
|
+
};
|
|
2130
|
+
/**
|
|
2131
|
+
* @generated from rpc agentfactory.agent.v1.AgentCapabilityService.ShareSkill
|
|
2132
|
+
*/
|
|
2133
|
+
shareSkill: {
|
|
2134
|
+
methodKind: "unary";
|
|
2135
|
+
input: typeof ShareSkillRequestSchema;
|
|
2136
|
+
output: typeof EmptySchema;
|
|
2137
|
+
};
|
|
2138
|
+
}>;
|
|
2139
|
+
/**
|
|
2140
|
+
* @generated from service agentfactory.agent.v1.AgentMemoryService
|
|
2141
|
+
*/
|
|
2142
|
+
export declare const AgentMemoryService: GenService<{
|
|
2143
|
+
/**
|
|
2144
|
+
* @generated from rpc agentfactory.agent.v1.AgentMemoryService.GetMemorySettings
|
|
2145
|
+
*/
|
|
2146
|
+
getMemorySettings: {
|
|
2147
|
+
methodKind: "unary";
|
|
2148
|
+
input: typeof GetMemorySettingsRequestSchema;
|
|
2149
|
+
output: typeof MemorySettingsSchema;
|
|
2150
|
+
};
|
|
2151
|
+
/**
|
|
2152
|
+
* @generated from rpc agentfactory.agent.v1.AgentMemoryService.UpdateMemorySettings
|
|
2153
|
+
*/
|
|
2154
|
+
updateMemorySettings: {
|
|
2155
|
+
methodKind: "unary";
|
|
2156
|
+
input: typeof UpdateMemorySettingsRequestSchema;
|
|
2157
|
+
output: typeof MemorySettingsSchema;
|
|
2158
|
+
};
|
|
2159
|
+
/**
|
|
2160
|
+
* @generated from rpc agentfactory.agent.v1.AgentMemoryService.ListMemories
|
|
2161
|
+
*/
|
|
2162
|
+
listMemories: {
|
|
2163
|
+
methodKind: "unary";
|
|
2164
|
+
input: typeof ListMemoriesRequestSchema;
|
|
2165
|
+
output: typeof ListMemoriesResponseSchema;
|
|
2166
|
+
};
|
|
2167
|
+
/**
|
|
2168
|
+
* @generated from rpc agentfactory.agent.v1.AgentMemoryService.ConfirmMemory
|
|
2169
|
+
*/
|
|
2170
|
+
confirmMemory: {
|
|
2171
|
+
methodKind: "unary";
|
|
2172
|
+
input: typeof ConfirmMemoryRequestSchema;
|
|
2173
|
+
output: typeof MemorySchema;
|
|
2174
|
+
};
|
|
2175
|
+
/**
|
|
2176
|
+
* @generated from rpc agentfactory.agent.v1.AgentMemoryService.DeleteMemory
|
|
2177
|
+
*/
|
|
2178
|
+
deleteMemory: {
|
|
2179
|
+
methodKind: "unary";
|
|
2180
|
+
input: typeof DeleteMemoryRequestSchema;
|
|
2181
|
+
output: typeof EmptySchema;
|
|
2182
|
+
};
|
|
2183
|
+
}>;
|
|
2184
|
+
/**
|
|
2185
|
+
* @generated from service agentfactory.agent.v1.AgentInteractionService
|
|
2186
|
+
*/
|
|
2187
|
+
export declare const AgentInteractionService: GenService<{
|
|
2188
|
+
/**
|
|
2189
|
+
* @generated from rpc agentfactory.agent.v1.AgentInteractionService.GetInteraction
|
|
2190
|
+
*/
|
|
2191
|
+
getInteraction: {
|
|
2192
|
+
methodKind: "unary";
|
|
2193
|
+
input: typeof GetInteractionRequestSchema;
|
|
2194
|
+
output: typeof InteractionSchema;
|
|
2195
|
+
};
|
|
2196
|
+
/**
|
|
2197
|
+
* @generated from rpc agentfactory.agent.v1.AgentInteractionService.ListInteractions
|
|
2198
|
+
*/
|
|
2199
|
+
listInteractions: {
|
|
2200
|
+
methodKind: "unary";
|
|
2201
|
+
input: typeof ListInteractionsRequestSchema;
|
|
2202
|
+
output: typeof ListInteractionsResponseSchema;
|
|
2203
|
+
};
|
|
2204
|
+
/**
|
|
2205
|
+
* @generated from rpc agentfactory.agent.v1.AgentInteractionService.ResolveInteraction
|
|
2206
|
+
*/
|
|
2207
|
+
resolveInteraction: {
|
|
2208
|
+
methodKind: "unary";
|
|
2209
|
+
input: typeof ResolveInteractionRequestSchema;
|
|
2210
|
+
output: typeof InteractionSchema;
|
|
2211
|
+
};
|
|
2212
|
+
}>;
|
|
2213
|
+
/**
|
|
2214
|
+
* @generated from service agentfactory.agent.v1.AgentCollaborationService
|
|
2215
|
+
*/
|
|
2216
|
+
export declare const AgentCollaborationService: GenService<{
|
|
2217
|
+
/**
|
|
2218
|
+
* @generated from rpc agentfactory.agent.v1.AgentCollaborationService.GetCollaboration
|
|
2219
|
+
*/
|
|
2220
|
+
getCollaboration: {
|
|
2221
|
+
methodKind: "unary";
|
|
2222
|
+
input: typeof GetCollaborationRequestSchema;
|
|
2223
|
+
output: typeof CollaborationSchema;
|
|
2224
|
+
};
|
|
2225
|
+
/**
|
|
2226
|
+
* @generated from rpc agentfactory.agent.v1.AgentCollaborationService.ListCollaborationTasks
|
|
2227
|
+
*/
|
|
2228
|
+
listCollaborationTasks: {
|
|
2229
|
+
methodKind: "unary";
|
|
2230
|
+
input: typeof ListCollaborationTasksRequestSchema;
|
|
2231
|
+
output: typeof ListCollaborationTasksResponseSchema;
|
|
2232
|
+
};
|
|
2233
|
+
/**
|
|
2234
|
+
* @generated from rpc agentfactory.agent.v1.AgentCollaborationService.CancelCollaboration
|
|
2235
|
+
*/
|
|
2236
|
+
cancelCollaboration: {
|
|
2237
|
+
methodKind: "unary";
|
|
2238
|
+
input: typeof CancelCollaborationRequestSchema;
|
|
2239
|
+
output: typeof CollaborationSchema;
|
|
2240
|
+
};
|
|
2241
|
+
}>;
|
|
2242
|
+
//# sourceMappingURL=agent_pb.d.ts.map
|